.shop-v3-premium-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.shop-v3-premium-art {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 128px;
    aspect-ratio: auto;
    padding: 12px 10px 10px 16px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: #236fe5;
}

.shop-v3-premium-art.is-green {
    background: #168a47;
}

.shop-v3-premium-art.is-purple {
    background: #8b3ec2;
}

.shop-v3-premium-art.is-orange {
    background: #c66a16;
}

.shop-v3-premium-art.is-gold {
    background: #a77a0b;
}

.shop-v3-premium-duration {
    position: relative;
    z-index: 2;
    max-width: 48%;
    color: #fff;
    font-size: clamp(1.2rem, 1.65vw, 1.75rem);
    font-weight: 950;
    line-height: 0.95;
    text-wrap: balance;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.28);
}

.shop-v3-premium-art img {
    position: relative;
    z-index: 1;
    width: 53%;
    height: 128px;
    max-height: none;
    margin: 0;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 8px 8px rgba(0, 0, 0, 0.28));
}

.shop-v3-premium-card:hover .shop-v3-premium-art img {
    transform: none;
}

.shop-v3-premium-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 4px;
    padding: 11px 12px 10px;
}

.shop-v3-premium-body h3 {
    width: 100%;
    font-size: .95rem;
}

.shop-v3-premium-price {
    width: 100%;
    min-height: 24px;
    justify-items: start;
    padding-bottom: 5px;
    white-space: nowrap;
}

.shop-v3-premium-price strong {
    color: #ffe45c;
    font-size: 1.02rem;
    line-height: 1.2;
    text-shadow: 0 0 12px rgba(255, 228, 92, .16);
}

.shop-v3-premium-body .space-button {
    grid-column: 1;
    width: 100%;
    min-height: 34px;
    padding: 6px 10px;
}

@media (max-width: 980px) {
    .shop-v3-premium-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .shop-v3-premium {
        width: 100%;
        max-width: calc(100vw - 24px);
        min-width: 0;
    }

    .shop-v3-premium-grid {
        grid-template-columns: 1fr;
        width: 100%;
        min-width: 0;
    }

    .shop-v3-premium-card,
    .shop-v3-premium-card form {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .shop-v3-premium-card form {
        display: flex;
        flex-direction: column;
    }

    .shop-v3-premium-art {
        height: 92px;
        padding: 10px 8px 10px 12px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .shop-v3-premium-art img {
        width: 48%;
        height: 92px;
        margin: 0;
    }

    .shop-v3-premium-duration {
        max-width: 46%;
        font-size: 1rem;
    }

    .shop-v3-premium-body {
        grid-template-columns: minmax(0, 1fr);
        align-items: start;
        gap: 4px;
        min-width: 0;
        overflow: hidden;
    }

    .shop-v3-premium-price {
        justify-items: start;
        white-space: nowrap;
    }

    .shop-v3-premium-price strong {
        font-size: .95rem;
    }

    .shop-v3-premium-body .space-button {
        width: 100%;
    }
}
