.card-shadow {
    border-radius: .6rem;
    border: none;
    box-shadow: 0 1px 10px rgba(0, 16, 61, 0.07);
}

[data-bs-theme=dark] {
    .card-shadow {
        border: 1px solid #2e2e2e;
    }
}

.popup-cover {
    border-radius: .7rem .7rem 0 0;
    padding: 2rem;
    width: 100%;
    height: 15rem;
    background:
        /* белые лучи */
            repeating-conic-gradient(
                    rgba(255,255,255,0.2) 0deg 10deg,
                    transparent 10deg 20deg
            ),
                /* плавный градиент неба */
            radial-gradient(circle at 50% 150px, #badff9 0%, #79c5f7 80%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.item-card {
    width: 200px;
    margin: auto;
    background-color: #fff;
    box-shadow: 0 1px 10px rgba(0, 16, 61, 0.07);
    border-radius: .6rem
}

.item-card .item-thumb {
    width: 100%;
    height: 10rem
}

.item-card .item-info {
    padding: .7rem 1rem;
}

.item-card .item-info .icon-circle {
    position: absolute;
    right: -1rem;
    bottom: 3rem;
    box-shadow: 0 1px 10px rgba(0, 16, 61, 0.07);
}
.item-card .item-thumb img {
    color: transparent;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: middle;
    border-radius: .6rem .6rem 0 0;
}