body.pa12-theme .gsp-curated {
    overflow: hidden;
    background: #e6e2da;
}

body.pa12-theme .gsp-curated-marquee {
    width: 100vw;
    margin-top: 48px;
    overflow: hidden;
}

body.pa12-theme .gsp-curated-track {
    display: flex;
    width: max-content;
    animation: gsp-curated-scroll 38s linear infinite;
    will-change: transform;
}

body.pa12-theme .gsp-curated-track__group {
    display: flex;
    flex: 0 0 auto;
    gap: 14px;
    padding-right: 14px;
}

body.pa12-theme .gsp-curated-marquee:hover .gsp-curated-track,
body.pa12-theme .gsp-curated-marquee:focus-within .gsp-curated-track {
    animation-play-state: paused;
}

body.pa12-theme .gsp-curated-card {
    flex: 0 0 clamp(220px, 25vw, 360px);
    min-width: 0;
}

body.pa12-theme .gsp-curated-card__media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 4.9;
    overflow: hidden;
    background: #c9c4bb;
}

body.pa12-theme .gsp-curated-card__media::after {
    position: absolute;
    inset: 48% 0 0;
    background: linear-gradient(transparent, rgba(10, 9, 7, .68));
    content: "";
    pointer-events: none;
}

body.pa12-theme .gsp-curated-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.86) contrast(1.04);
    transition: transform 550ms cubic-bezier(.2, .7, .2, 1), filter 260ms ease;
}

body.pa12-theme .gsp-curated-card:hover .gsp-curated-card__media img,
body.pa12-theme .gsp-curated-card:focus-within .gsp-curated-card__media img {
    transform: scale(1.06);
    filter: saturate(1) contrast(1.06);
}

body.pa12-theme .gsp-curated-card__overlay {
    position: absolute;
    z-index: 1;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    color: #fff;
}

body.pa12-theme .gsp-curated-card__badge {
    display: inline-block;
    padding: 6px 9px;
    border: 1px solid rgba(241, 196, 91, .7);
    background: rgba(17, 14, 10, .76);
    color: #f1c45b;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

body.pa12-theme .gsp-curated-card__overlay strong {
    display: block;
    width: 100%;
    overflow: hidden;
    color: #fff;
    font-size: clamp(14px, 1.55vw, 22px);
    font-weight: 800;
    line-height: 1;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

body.pa12-theme .gsp-curated-modal .pa12-winner-modal__category {
    color: #6f685d;
}

@keyframes gsp-curated-scroll {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 760px) {
    body.pa12-theme .gsp-curated-marquee {
        margin-top: 32px;
    }

    body.pa12-theme .gsp-curated-card {
        flex-basis: min(72vw, 290px);
    }
}

@media (prefers-reduced-motion: reduce) {
    body.pa12-theme .gsp-curated-track {
        animation: none;
    }
}
