/* Remove top status strip and refine jury typography layout */
.pa12-top-status {
    display: none;
}

/* Keep selected editorial headings stacked, left-aligned, and directly under each other on desktop too. */
.pa12-featured-awards .pa12-section-head,
.pa12-categories-awards .pa12-section-head,
.pa12-jury-awards .pa12-section-head,
.pa12-jury-page .pa12-inner-hero__grid,
.pa12-page-head,
.pa12-winners-heading {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 8px !important;
    align-items: start !important;
    justify-items: start !important;
    text-align: left !important;
}

.pa12-featured-awards .pa12-section-head > *,
.pa12-categories-awards .pa12-section-head > *,
.pa12-jury-awards .pa12-section-head > *,
.pa12-jury-page .pa12-inner-hero__grid > *,
.pa12-page-head > *,
.pa12-winners-heading > * {
    width: 100% !important;
    margin: 0 !important;
    text-align: left !important;
}

.pa12-featured-awards .pa12-section-head p,
.pa12-categories-awards .pa12-section-head p,
.pa12-jury-awards .pa12-section-head p,
.pa12-jury-page .pa12-inner-hero__grid > p,
.pa12-page-head p,
.pa12-winners-heading > p {
    max-width: 760px;
    margin: 2px 0 0 !important;
}

.pa12-featured-awards .pa12-section-head,
.pa12-categories-awards .pa12-section-head,
.pa12-jury-awards .pa12-section-head,
.pa12-jury-page .pa12-inner-hero__grid,
.pa12-page-head,
.pa12-winners-heading {
    margin-bottom: 28px;
}

/* Jury page block alignment and compact titles */
.pa12-jury-page .pa12-inner-hero {
    padding-top: 80px;
    padding-bottom: 52px;
}

.pa12-jury-page .pa12-inner-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    justify-items: start;
    text-align: left;
}

.pa12-jury-page .pa12-inner-hero__grid > * {
    width: 100%;
    margin: 0;
    text-align: left;
}

.pa12-jury-page .pa12-jury-page__title {
    text-transform: uppercase;
    font-size: clamp(42px, 6vw, 84px);
    line-height: 0.96;
    letter-spacing: 0;
}

.pa12-jury-page .pa12-jury-page__description,
.pa12-jury-awards .pa12-section-head p {
    max-width: 640px;
    margin-top: 4px !important;
    color: var(--pa12-muted);
    font-size: 16px;
    line-height: 1.7;
}

.pa12-jury-page .pa12-inner-hero__grid .pa12-kicker {
    margin-bottom: 6px;
}

.pa12-jury-awards .pa12-section-head h2 {
    font-size: clamp(34px, 4.8vw, 66px);
}

/* Professional Jury cards with motion */
.pa12-jury-grid,
.pa12-jury-page__gallery .pa12-jury-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.pa12-jury-card {
    position: relative;
    overflow: hidden;
    min-width: 0;
    border-radius: 8px;
    border: 1px solid rgba(223, 148, 0, 0.18);
    background: #fff;
    box-shadow: 0 14px 34px rgba(23, 18, 11, 0.1);
    padding: 0;
    transform: translateY(18px);
    opacity: 0;
    animation: pa12-jury-reveal 680ms cubic-bezier(.22, 1, .36, 1) both;
    animation-delay: var(--pa12-jury-delay, 0s);
    transition:
        transform 320ms cubic-bezier(.22, 1, .36, 1),
        border-color 320ms ease,
        box-shadow 320ms ease;
}

.pa12-jury-card:nth-child(1) { --pa12-jury-delay: .03s; }
.pa12-jury-card:nth-child(2) { --pa12-jury-delay: .09s; }
.pa12-jury-card:nth-child(3) { --pa12-jury-delay: .15s; }
.pa12-jury-card:nth-child(4) { --pa12-jury-delay: .21s; }
.pa12-jury-card:nth-child(5) { --pa12-jury-delay: .27s; }
.pa12-jury-card:nth-child(6) { --pa12-jury-delay: .33s; }
.pa12-jury-card:nth-child(7) { --pa12-jury-delay: .39s; }
.pa12-jury-card:nth-child(8) { --pa12-jury-delay: .45s; }
.pa12-jury-card:nth-child(9) { --pa12-jury-delay: .51s; }

.pa12-jury-card:hover,
.pa12-jury-card:focus-within {
    transform: translateY(-6px);
    border-color: rgba(223, 148, 0, 0.52);
    box-shadow: 0 22px 46px rgba(223, 148, 0, 0.18);
}

.pa12-jury-card::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 4px;
    z-index: 2;
    pointer-events: none;
    background: var(--pa12-accent);
}

.pa12-jury-card__media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #f8f6f1;
    overflow: hidden;
}

.pa12-jury-card__media::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 38%;
    height: 5px;
    background: #111111;
    pointer-events: none;
}

.pa12-jury-card__media img {
    width: 100%;
    height: 100%;
    margin: 0 !important;
    object-fit: cover;
    filter: saturate(.92) contrast(1.02);
    transition:
        transform 700ms cubic-bezier(.22, 1, .36, 1),
        filter 420ms ease;
}

.pa12-jury-card:hover .pa12-jury-card__media img,
.pa12-jury-card:focus-within .pa12-jury-card__media img {
    transform: scale(1.055);
    filter: saturate(1.04) contrast(1.04);
}

.pa12-jury-card__mark {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    color: #fff;
    background: rgba(223, 148, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.62);
    padding: 6px 9px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .06em;
    text-transform: uppercase;
    box-shadow: 0 6px 18px rgba(23, 18, 11, .18);
    backdrop-filter: blur(8px);
}

.pa12-jury-card__body {
    display: grid;
    gap: 5px;
    min-height: 126px;
    padding: 15px 16px 18px;
    align-content: start;
    background: #fff;
}

.pa12-jury-card__body > * {
    width: 100%;
    text-align: left !important;
}

.pa12-jury-card h3 {
    margin: 0;
    color: #111111;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.12;
}

.pa12-jury-card p {
    margin: 0;
    color: #6f6250;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    text-transform: uppercase;
}

.pa12-jury-card span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 4px;
    color: var(--pa12-accent);
    font-size: 12px;
    font-weight: 800;
}

.pa12-jury-card span::before {
    content: "";
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border: 1px solid currentColor;
    background: #fff;
    transform: rotate(45deg);
}

@keyframes pa12-jury-reveal {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1080px) {
    .pa12-jury-grid,
    .pa12-jury-page__gallery .pa12-jury-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .pa12-jury-grid,
    .pa12-jury-page__gallery .pa12-jury-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .pa12-theme {
        overflow-x: hidden;
    }

    .pa12-theme .pa12-button,
    .pa12-theme .pa12-text-link,
    .pa12-theme .pa12-header-cta,
    .pa12-theme .pa12-menu-toggle,
    .pa12-theme .countdown-register-btn,
    .pa12-theme .pa12-footer-cta__button,
    .pa12-theme .pa12-winner-filter,
    .pa12-theme input[type="submit"] {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .pa12-theme .pa12-footer-cta__button {
        position: relative;
    }

    .pa12-theme .pa12-footer-cta__button > span:last-child {
        position: absolute;
        right: 20px;
    }

    .pa12-theme .pa12-section-head,
    .pa12-theme .pa12-split__inner,
    .pa12-theme .pa12-inner-hero__grid,
    .pa12-theme .pa12-winners-heading,
    .pa12-theme .pa12-page-head {
        display: grid;
        width: 100%;
        grid-template-columns: minmax(0, 1fr);
        align-items: start;
        justify-items: start;
        gap: 8px;
        text-align: left;
    }

    .pa12-theme .pa12-section-head > *,
    .pa12-theme .pa12-split__inner > *,
    .pa12-theme .pa12-inner-hero__grid > *,
    .pa12-theme .pa12-winners-heading > *,
    .pa12-theme .pa12-page-head > * {
        width: 100%;
        margin-inline: 0;
        text-align: left;
    }

    .pa12-theme .pa12-section-head {
        margin-bottom: 28px;
    }

    .pa12-theme .pa12-section-head h2,
    .pa12-theme .pa12-split__inner h2,
    .pa12-theme .pa12-inner-hero__grid h1,
    .pa12-theme .pa12-winners-heading :is(h1, h2),
    .pa12-theme .pa12-page-head h1 {
        width: 100%;
        margin: 0;
        color: #111111;
        font-size: 32px;
        font-weight: 700;
        line-height: 1.03;
        text-align: left;
    }

    .pa12-theme .pa12-section-head p,
    .pa12-theme .pa12-split__inner > div:last-child > p,
    .pa12-theme .pa12-inner-hero__grid > p,
    .pa12-theme .pa12-winners-heading > p,
    .pa12-theme .pa12-page-head > p {
        width: 100%;
        max-width: 34rem;
        margin: 2px 0 0;
        color: #6c665d;
        font-size: 14px;
        line-height: 1.65;
        text-align: left;
    }

    .pa12-theme .pa12-split__inner > div:last-child {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .pa12-theme .pa12-section {
        padding-block: 68px;
    }

    .pa12-theme .pa12-kicker,
    .pa12-theme .pa12-section-head .pa12-kicker {
        width: 100%;
        margin-inline: 0;
        text-align: left;
    }

    .pa12-theme .pa12-countdown-copy,
    .pa12-theme .pa12-entry-fee__copy,
    .pa12-theme .pa12-hero-copy,
    .pa12-theme .pa12-winners-hero__content,
    .pa12-theme .pa12-footer-cta__inner > div {
        align-items: flex-start;
        text-align: left;
    }

    .pa12-theme .pa12-countdown-copy h2,
    .pa12-theme .pa12-entry-fee__copy h2,
    .pa12-theme .pa12-hero-copy h1,
    .pa12-theme .pa12-winners-hero__content h1,
    .pa12-theme .pa12-footer-cta__inner h2,
    .pa12-theme .pa12-countdown-copy > p,
    .pa12-theme .pa12-entry-fee__copy > p,
    .pa12-theme .pa12-winners-hero__content > p {
        margin-inline: 0;
        text-align: left;
    }

    .pa12-theme .pa12-feature-card,
    .pa12-theme .pa12-home-category-card,
    .pa12-theme .pa12-jury-card,
    .pa12-theme .pa12-prize-grid article {
        border: 1px solid rgba(223, 148, 0, .11);
        border-radius: 8px;
        box-shadow: 0 14px 34px rgba(23, 18, 11, .09);
    }

    .pa12-theme .pa12-featured-grid,
    .pa12-theme .pa12-home-category-grid,
    .pa12-theme .pa12-jury-grid,
    .pa12-theme .pa12-prize-grid {
        gap: 16px;
    }

    .pa12-theme .pa12-home-category-card img,
    .pa12-theme .pa12-feature-card img,
    .pa12-theme .pa12-jury-card img {
        border-radius: 7px 7px 0 0;
    }

    .pa12-theme .pa12-feature-card h3,
    .pa12-theme .pa12-home-category-card h3,
    .pa12-theme .pa12-jury-card h3 {
        text-align: left;
    }

    .pa12-theme .pa12-feature-card > div,
    .pa12-theme .pa12-home-category-card > div {
        padding-inline: 18px;
    }

    .pa12-theme .pa12-jury-page .pa12-inner-hero {
        padding-top: 68px;
        padding-bottom: 42px;
    }

    .pa12-theme .pa12-jury-page .pa12-jury-page__title {
        font-size: clamp(36px, 12vw, 56px);
    }

    .pa12-theme .pa12-jury-page .pa12-jury-page__description,
    .pa12-theme .pa12-jury-awards .pa12-section-head p {
        max-width: 100%;
        font-size: 15px;
    }

    .pa12-theme .pa12-top-awards .pa12-section-head {
        width: 100%;
        margin-inline: 0;
        padding-inline: 0;
    }

    .pa12-theme .pa12-top-awards .pa12-section-head h2,
    .pa12-theme .pa12-top-awards .pa12-section-head p {
        width: 100%;
        text-align: left;
    }

    .pa12-theme .pa12-media-awards h2,
    .pa12-theme .pa12-prizes-awards .pa12-section-head h2 {
        font-size: 32px;
        line-height: 1.03;
        text-align: left;
    }
}

/* Golden Shot homepage v2: image-led editorial art direction. */
body.pa12-theme .gsp-home { --gsp-black:#0b0b0a; --gsp-paper:#f4f1eb; --gsp-gold:#d79a19; --gsp-ink:#151515; background:var(--gsp-paper); color:var(--gsp-ink); }
body.pa12-theme .gsp-wrap { width:min(100% - 96px, 1420px); margin:0 auto; }
body.pa12-theme .gsp-ticker { min-height:34px; display:flex; align-items:center; justify-content:space-around; gap:20px; padding:0 24px; background:var(--gsp-gold); color:#151515; font-size:10px; font-weight:800; letter-spacing:.14em; text-transform:uppercase; overflow:hidden; }
body.pa12-theme .gsp-ticker span { white-space:nowrap; }
body.pa12-theme .gsp-hero { position:relative; min-height:min(780px, calc(100vh - 124px)); overflow:hidden; background:#131313; color:#fff; }
body.pa12-theme .gsp-hero__media, body.pa12-theme .gsp-hero__slide, body.pa12-theme .gsp-hero__shade { position:absolute; inset:0; }
body.pa12-theme .gsp-hero__slide { background-position:center; background-size:cover; opacity:0; transform:scale(1.04); transition:opacity 900ms ease, transform 7s ease; }
body.pa12-theme .gsp-hero__slide.is-active { opacity:1; transform:scale(1); }
body.pa12-theme .gsp-hero__shade { background:linear-gradient(90deg,rgba(0,0,0,.82) 0%,rgba(0,0,0,.38) 54%,rgba(0,0,0,.18) 100%); }
body.pa12-theme .gsp-hero__content { position:relative; z-index:2; width:min(100% - 96px,1420px); min-height:inherit; margin:0 auto; padding:clamp(110px,15vh,190px) 0 100px; display:flex; flex-direction:column; align-items:flex-start; justify-content:center; }
body.pa12-theme .gsp-eyebrow { margin:0 0 18px; color:var(--gsp-gold); font-size:11px; font-weight:800; letter-spacing:.18em; line-height:1.3; text-transform:uppercase; }
body.pa12-theme .gsp-hero h1 { margin:0; max-width:900px; color:#fff; font-size:clamp(88px,12.5vw,190px); font-weight:900; letter-spacing:-.055em; line-height:.78; text-transform:uppercase; }
body.pa12-theme .gsp-hero h1 i { color:var(--gsp-gold); font-style:normal; }
body.pa12-theme .gsp-hero__lead { max-width:420px; margin:34px 0 28px; color:rgba(255,255,255,.78); font-size:17px; line-height:1.55; }
body.pa12-theme .gsp-hero__actions { display:flex; gap:10px; }
body.pa12-theme .gsp-button { min-width:168px; display:inline-flex; align-items:center; justify-content:space-between; gap:20px; padding:16px 18px; border:1px solid transparent; font-size:10px; font-weight:800; letter-spacing:.13em; text-transform:uppercase; transition:transform 180ms ease,background 180ms ease,color 180ms ease; }
body.pa12-theme .gsp-button:hover { transform:translateY(-3px); }
body.pa12-theme .gsp-button span { font-size:18px; line-height:0; }
body.pa12-theme .gsp-button--gold { background:var(--gsp-gold); color:#111; }
body.pa12-theme .gsp-button--line { border-color:rgba(255,255,255,.45); color:#fff; }
body.pa12-theme .gsp-button--line:hover { background:#fff; color:#111; }
body.pa12-theme .gsp-hero__edition, body.pa12-theme .gsp-hero__footer { position:absolute; z-index:2; color:rgba(255,255,255,.72); font-size:10px; font-weight:800; letter-spacing:.14em; text-transform:uppercase; }
body.pa12-theme .gsp-hero__edition { top:36px; right:48px; }
body.pa12-theme .gsp-hero__footer { right:48px; bottom:26px; left:48px; display:flex; justify-content:space-between; border-top:1px solid rgba(255,255,255,.28); padding-top:12px; }
body.pa12-theme .gsp-hero__footer b { margin-left:8px; color:var(--gsp-gold); font-size:20px; }
body.pa12-theme .gsp-slider-dots { position:absolute; z-index:3; right:48px; bottom:30px; display:flex; gap:8px; transform:translateY(-2px); }
body.pa12-theme .gsp-slider-dots button { width:28px; height:3px; padding:0; border:0; background:rgba(255,255,255,.35); }
body.pa12-theme .gsp-slider-dots button.is-active { background:var(--gsp-gold); }
body.pa12-theme .gsp-season, body.pa12-theme .gsp-featured, body.pa12-theme .gsp-about, body.pa12-theme .gsp-curated, body.pa12-theme .gsp-jury, body.pa12-theme .gsp-categories, body.pa12-theme .gsp-timeline { padding:clamp(90px,10vw,160px) 0; }
body.pa12-theme .gsp-season { background:#ebe7df; }
body.pa12-theme .gsp-section-intro { display:grid; grid-template-columns:1.15fr .85fr; gap:60px; align-items:end; margin-bottom:58px; }
body.pa12-theme .gsp-section-intro h2, body.pa12-theme .gsp-section-bar h2, body.pa12-theme .gsp-about h2, body.pa12-theme .gsp-timeline h2 { margin:0; color:var(--gsp-ink); font-size:clamp(48px,7vw,108px); font-weight:900; letter-spacing:-.055em; line-height:.84; text-transform:uppercase; }
body.pa12-theme .gsp-section-intro h2 em { color:#8d8a84; font-style:normal; }
body.pa12-theme .gsp-section-intro > p:last-child { max-width:330px; margin:0; color:#64615b; line-height:1.65; }
body.pa12-theme .gsp-season-grid { display:grid; grid-template-columns:1.25fr 1fr 1fr; border:1px solid #cbc6bd; }
body.pa12-theme .gsp-season-card { min-height:360px; position:relative; display:flex; flex-direction:column; justify-content:flex-end; padding:30px; border-right:1px solid #cbc6bd; overflow:hidden; }
body.pa12-theme .gsp-season-card:last-child { border-right:0; }
body.pa12-theme .gsp-season-card--image { background:linear-gradient(180deg,transparent 30%,rgba(0,0,0,.86)),var(--card-image) center/cover; color:#fff; }
body.pa12-theme .gsp-season-card:not(.gsp-season-card--image) { background:#f6f3ee; }
body.pa12-theme .gsp-season-card > span { position:absolute; top:26px; left:30px; color:var(--gsp-gold); font-size:12px; font-weight:800; letter-spacing:.15em; }
body.pa12-theme .gsp-season-card h3 { margin:0 0 10px; color:inherit; font-size:clamp(42px,5vw,86px); font-weight:900; letter-spacing:-.05em; line-height:.82; }
body.pa12-theme .gsp-season-card p { max-width:250px; margin:0; color:inherit; opacity:.72; font-size:13px; line-height:1.5; }
body.pa12-theme .gsp-featured { background:#f8f6f2; }
body.pa12-theme .gsp-section-bar { display:flex; align-items:flex-end; justify-content:space-between; gap:30px; margin-bottom:46px; }
body.pa12-theme .gsp-section-bar > a, body.pa12-theme .gsp-arrow-link { color:var(--gsp-ink); font-size:11px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
body.pa12-theme .gsp-section-bar > a span, body.pa12-theme .gsp-arrow-link span { color:var(--gsp-gold); font-size:18px; }
body.pa12-theme .gsp-featured-grid { display:grid; grid-template-columns:1.3fr .7fr; grid-template-rows:repeat(2,250px); gap:12px; }
body.pa12-theme .gsp-work { position:relative; min-height:0; overflow:hidden; background:#111; }
body.pa12-theme .gsp-work--large { grid-row:1 / span 2; }
body.pa12-theme .gsp-work img { width:100%; height:100%; object-fit:cover; transition:transform 700ms cubic-bezier(.2,.8,.2,1); }
body.pa12-theme .gsp-work:hover img { transform:scale(1.05); }
body.pa12-theme .gsp-work::after { content:""; position:absolute; inset:35% 0 0; background:linear-gradient(transparent,rgba(0,0,0,.84)); }
body.pa12-theme .gsp-work__caption { position:absolute; z-index:1; right:24px; bottom:20px; left:24px; color:#fff; }
body.pa12-theme .gsp-work__caption span { color:var(--gsp-gold); font-size:10px; font-weight:800; letter-spacing:.14em; text-transform:uppercase; }
body.pa12-theme .gsp-work__caption h3 { margin:7px 0 4px; color:#fff; font-size:clamp(24px,3vw,52px); font-weight:800; letter-spacing:-.04em; line-height:.9; }
body.pa12-theme .gsp-work__caption p { margin:0; color:rgba(255,255,255,.7); font-size:12px; }
body.pa12-theme .gsp-about { background:var(--gsp-black); color:#fff; }
body.pa12-theme .gsp-about__grid { display:grid; grid-template-columns:.75fr 1.25fr; gap:100px; align-items:center; }
body.pa12-theme .gsp-about__mark { min-height:400px; display:grid; place-items:center; border:1px solid rgba(255,255,255,.18); }
body.pa12-theme .gsp-about__mark img { width:min(60%,300px); filter:brightness(0) invert(1); opacity:.9; }
body.pa12-theme .gsp-about h2 { max-width:720px; color:#fff; }
body.pa12-theme .gsp-about p:not(.gsp-eyebrow) { max-width:650px; margin:30px 0; color:rgba(255,255,255,.7); line-height:1.75; }
body.pa12-theme .gsp-about .gsp-arrow-link { color:#fff; }
body.pa12-theme .gsp-countdown { padding:45px 0; background:var(--gsp-gold); }
body.pa12-theme .gsp-countdown__grid { display:grid; grid-template-columns:.7fr 1.3fr; gap:50px; align-items:center; }
body.pa12-theme .gsp-countdown .gsp-eyebrow { color:#111; margin-bottom:8px; }
body.pa12-theme .gsp-countdown h2 { margin:0; color:#111; font-size:clamp(40px,5vw,74px); letter-spacing:-.05em; line-height:.85; text-transform:uppercase; }
body.pa12-theme .gsp-countdown p { max-width:360px; margin:12px 0 0; color:rgba(0,0,0,.7); font-size:12px; line-height:1.5; }
body.pa12-theme .gsp-countdown__numbers { display:grid; grid-template-columns:repeat(4,1fr); border-left:1px solid rgba(0,0,0,.25); }
body.pa12-theme .gsp-countdown__numbers div { padding:0 22px; border-right:1px solid rgba(0,0,0,.25); }
body.pa12-theme .gsp-countdown__numbers strong { display:block; color:#111; font-size:clamp(42px,6vw,94px); font-weight:900; letter-spacing:-.08em; line-height:.8; }
body.pa12-theme .gsp-countdown__numbers span { display:block; margin-top:15px; color:rgba(0,0,0,.65); font-size:10px; font-weight:800; letter-spacing:.14em; text-transform:uppercase; }
body.pa12-theme .gsp-curated { background:#e6e2da; }
body.pa12-theme .gsp-section-count { color:#77736d; font-size:11px; font-weight:800; letter-spacing:.13em; }
body.pa12-theme .gsp-curated-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px 12px; }
body.pa12-theme .gsp-curated-card__image { aspect-ratio:1/1.18; overflow:hidden; background:#d2cec5; }
body.pa12-theme .gsp-curated-card img { width:100%; height:100%; object-fit:cover; transition:transform 500ms ease; }
body.pa12-theme .gsp-curated-card:hover img { transform:scale(1.06); }
body.pa12-theme .gsp-curated-card > span { display:block; margin-top:10px; color:var(--gsp-gold); font-size:10px; font-weight:800; }
body.pa12-theme .gsp-curated-card h3 { margin:5px 0 0; font-size:17px; font-weight:800; letter-spacing:-.02em; text-transform:uppercase; }
body.pa12-theme .gsp-prizes { padding:clamp(90px,10vw,150px) 0; background:var(--gsp-black); color:#fff; }
body.pa12-theme .gsp-prizes .gsp-section-bar h2, body.pa12-theme .gsp-prizes .gsp-section-bar > a { color:#fff; }
body.pa12-theme .gsp-prizes-grid { display:grid; grid-template-columns:repeat(3,1fr); border:1px solid rgba(255,255,255,.2); }
body.pa12-theme .gsp-prizes-grid article { min-height:410px; padding:28px; border-right:1px solid rgba(255,255,255,.2); }
body.pa12-theme .gsp-prizes-grid article:last-child { border-right:0; }
body.pa12-theme .gsp-prize-number { color:var(--gsp-gold); font-size:11px; font-weight:800; letter-spacing:.15em; }
body.pa12-theme .gsp-prizes-grid h3 { margin:90px 0 30px; color:#fff; font-size:clamp(34px,4vw,66px); font-weight:900; letter-spacing:-.06em; line-height:.84; text-transform:uppercase; }
body.pa12-theme .gsp-prizes-grid ul { margin:0; padding:0; list-style:none; }
body.pa12-theme .gsp-prizes-grid li { padding:10px 0; border-top:1px solid rgba(255,255,255,.16); color:rgba(255,255,255,.67); font-size:12px; }
body.pa12-theme .gsp-jury { background:#f8f6f2; }
body.pa12-theme .gsp-jury .pa12-jury-grid { margin-top:0; }
body.pa12-theme .gsp-categories { background:#d8d4cb; }
body.pa12-theme .gsp-category-list { display:grid; grid-template-columns:repeat(2,1fr); border-top:1px solid #aaa59b; }
body.pa12-theme .gsp-category-list a { display:grid; grid-template-columns:45px 1fr 22px; align-items:center; gap:10px; padding:19px 4px; border-bottom:1px solid #aaa59b; color:#151515; }
body.pa12-theme .gsp-category-list a:nth-child(odd) { border-right:1px solid #aaa59b; padding-right:28px; }
body.pa12-theme .gsp-category-list a:nth-child(even) { padding-left:28px; }
body.pa12-theme .gsp-category-list span { color:#8f8a81; font-size:10px; font-weight:800; }
body.pa12-theme .gsp-category-list strong { font-size:17px; font-weight:800; text-transform:uppercase; }
body.pa12-theme .gsp-category-list i { color:var(--gsp-gold); font-size:18px; font-style:normal; text-align:right; }
body.pa12-theme .gsp-timeline { background:#f8f6f2; }
body.pa12-theme .gsp-timeline h2 { margin-bottom:48px; }
body.pa12-theme .gsp-timeline-list { border-top:1px solid #bcb7ae; }
body.pa12-theme .gsp-timeline-list > div { display:grid; grid-template-columns:70px 1fr 180px; gap:20px; align-items:center; padding:20px 0; border-bottom:1px solid #bcb7ae; }
body.pa12-theme .gsp-timeline-list span { color:var(--gsp-gold); font-size:11px; font-weight:800; }
body.pa12-theme .gsp-timeline-list strong { font-size:20px; text-transform:uppercase; }
body.pa12-theme .gsp-timeline-list time { color:#77736d; font-size:12px; text-align:right; }
@media (max-width:760px) {
    body.pa12-theme .gsp-wrap, body.pa12-theme .gsp-hero__content { width:min(100% - 32px,1420px); }
    body.pa12-theme .gsp-ticker { justify-content:flex-start; overflow:auto; }
    body.pa12-theme .gsp-hero { min-height:calc(100vh - 120px); }
    body.pa12-theme .gsp-hero h1 { font-size:clamp(72px,22vw,132px); }
    body.pa12-theme .gsp-hero__lead { font-size:14px; }
    body.pa12-theme .gsp-hero__edition { top:18px; right:16px; }
    body.pa12-theme .gsp-hero__footer { right:16px; bottom:17px; left:16px; font-size:8px; }
    body.pa12-theme .gsp-slider-dots { right:16px; bottom:20px; }
    body.pa12-theme .gsp-section-intro, body.pa12-theme .gsp-about__grid, body.pa12-theme .gsp-countdown__grid { grid-template-columns:1fr; gap:30px; }
    body.pa12-theme .gsp-season-grid, body.pa12-theme .gsp-prizes-grid { grid-template-columns:1fr; }
    body.pa12-theme .gsp-season-card { min-height:270px; border-right:0; border-bottom:1px solid #cbc6bd; }
    body.pa12-theme .gsp-season-card:last-child, body.pa12-theme .gsp-prizes-grid article:last-child { border-bottom:0; }
    body.pa12-theme .gsp-featured-grid { grid-template-columns:1fr; grid-template-rows:repeat(3,280px); }
    body.pa12-theme .gsp-work--large { grid-row:auto; }
    body.pa12-theme .gsp-about__mark { min-height:250px; }
    body.pa12-theme .gsp-countdown__numbers { border-left:0; }
    body.pa12-theme .gsp-countdown__numbers div { padding:0 8px; }
    body.pa12-theme .gsp-countdown__numbers strong { font-size:38px; }
    body.pa12-theme .gsp-countdown__numbers span { font-size:8px; letter-spacing:.08em; }
    body.pa12-theme .gsp-curated-grid { grid-template-columns:repeat(2,1fr); gap:20px 8px; }
    body.pa12-theme .gsp-category-list { grid-template-columns:1fr; }
    body.pa12-theme .gsp-category-list a:nth-child(odd) { border-right:0; padding-right:4px; }
    body.pa12-theme .gsp-category-list a:nth-child(even) { padding-left:4px; }
    body.pa12-theme .gsp-timeline-list > div { grid-template-columns:38px 1fr; gap:8px; }
    body.pa12-theme .gsp-timeline-list time { grid-column:2; text-align:left; }
}

/* Final Golden Shot control palette: black, paper, and gold only. */
body.pa12-theme .pa12-button,
body.pa12-theme .pa12-header-cta,
body.pa12-theme .countdown-register-btn,
body.pa12-theme .pa12-page-cta .pa12-button,
body.pa12-theme .pa12-fee-page .pa12-button,
body.pa12-theme .pa12-form-actions .pa12-button {
    border:1px solid var(--gsp-gold) !important;
    border-radius:0 !important;
    background:var(--gsp-gold) !important;
    color:#17120b !important;
    box-shadow:none !important;
    transition:background 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease !important;
}
body.pa12-theme .pa12-button:hover,
body.pa12-theme .pa12-button:focus-visible,
body.pa12-theme .pa12-header-cta:hover,
body.pa12-theme .pa12-header-cta:focus-visible,
body.pa12-theme .countdown-register-btn:hover,
body.pa12-theme .countdown-register-btn:focus-visible {
    border-color:#f1c45b !important;
    background:#f1c45b !important;
    color:#17120b !important;
    transform:translateY(-2px);
}
body.pa12-theme .pa12-button--ghost,
body.pa12-theme .pa12-hero-actions .pa12-button--ghost,
body.pa12-theme .pa12-button--light {
    border:1px solid rgba(255,255,255,.58) !important;
    background:transparent !important;
    color:#fff !important;
}
body.pa12-theme .pa12-button--ghost:hover,
body.pa12-theme .pa12-button--ghost:focus-visible,
body.pa12-theme .pa12-button--light:hover,
body.pa12-theme .pa12-button--light:focus-visible {
    border-color:var(--gsp-gold) !important;
    background:var(--gsp-gold) !important;
    color:#17120b !important;
}
body.pa12-theme .pa12-winner-filters button {
    border-color:#d6cfc3 !important;
    background:#f8f6f1 !important;
    color:#171717 !important;
}
body.pa12-theme .pa12-winner-filters button:hover,
body.pa12-theme .pa12-winner-filters button:focus-visible,
body.pa12-theme .pa12-winner-filters button.is-active {
    border-color:var(--gsp-gold) !important;
    background:var(--gsp-gold) !important;
    color:#17120b !important;
}

/* Legacy header override retained for reference; final rule follows below. */
@media (min-width:861px) {
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:hover > a,
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:focus-within > a {
        border:0 !important;
        background:rgba(255,255,255,.157) !important;
        color:#fff !important;
        transform:translateY(-1px) !important;
    }
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:hover > a::after,
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:focus-within > a::after {
        display:none !important;
        content:none !important;
    }
}

/* Legacy auth control override retained for reference. */
body.pa12-theme.pa12-theme .pa12-header-cta,
body.pa12-theme.pa12-theme .pa12-auth .photo-award-auth-trigger,
body.pa12-theme.pa12-theme .pa12-header .photo-award-login-register .photo-award-auth-trigger {
    min-height:42px !important;
    height:42px !important;
    padding:0 17px !important;
    border:1px solid var(--gsp-gold) !important;
    border-radius:0 !important;
    background:var(--gsp-gold) !important;
    color:#17120b !important;
    box-shadow:none !important;
    transform:none !important;
}
body.pa12-theme.pa12-theme .pa12-header-cta:hover,
body.pa12-theme.pa12-theme .pa12-header-cta:focus-visible,
body.pa12-theme.pa12-theme .pa12-auth .photo-award-auth-trigger:hover,
body.pa12-theme.pa12-theme .pa12-auth .photo-award-auth-trigger:focus-visible,
body.pa12-theme.pa12-theme .pa12-header .photo-award-login-register .photo-award-auth-trigger:hover,
body.pa12-theme.pa12-theme .pa12-header .photo-award-login-register .photo-award-auth-trigger:focus-visible {
    border-color:#f1c45b !important;
    background:#f1c45b !important;
    color:#17120b !important;
    box-shadow:none !important;
    transform:translateY(-1px) !important;
}

/* Absolute final menu parity: only the shared link hover and one detached chevron remain. */
@media (min-width:861px) {
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children > a,
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:hover > a,
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:focus-within > a {
        display:inline !important;
        padding:10px 12px !important;
        border:0 !important;
        border-radius:9px !important;
        background:transparent !important;
        color:#fff !important;
        transform:none !important;
    }
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:hover > a,
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:focus-within > a {
        background:rgba(255,255,255,.16) !important;
        color:#fff !important;
        transform:translateY(-1px) !important;
    }
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children > a::before {
        display:block !important;
        content:"" !important;
        position:absolute !important;
        top:50% !important;
        right:4px !important;
        width:5px !important;
        height:5px !important;
        margin-top:-4px !important;
        border:0 !important;
        border-right:1px solid #fff !important;
        border-bottom:1px solid #fff !important;
        background:transparent !important;
        transform:rotate(45deg) !important;
    }
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children > a::after {
        display:none !important;
        content:none !important;
    }
}

/* Exact geometry parity: parent links use the same box as every regular link. */
@media (min-width:861px) {
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children > a {
        display:inline-flex !important;
        align-items:center !important;
        gap:8px !important;
        min-height:0 !important;
        height:auto !important;
        padding:10px 12px !important;
        border:0 !important;
        border-radius:9px !important;
    }
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children > a::after {
        right:4px !important;
    }
}

/* Last word on the header: flat black and ordinary-link hover for parent items. */
body.pa12-theme.pa12-theme .pa12-header { background:#11100e !important; background-image:none !important; }
@media (min-width:861px) {
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:hover > a,
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:focus-within > a {
        transform:none !important;
        border:0 !important;
        background:transparent !important;
        color:var(--gsp-gold) !important;
    }
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:hover > a::after,
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:focus-within > a::after {
        display:block !important;
        width:5px !important;
        height:5px !important;
        right:8px !important;
        left:auto !important;
        bottom:auto !important;
        border-right:1px solid #fff !important;
        border-bottom:1px solid #fff !important;
        background:transparent !important;
        transform:rotate(45deg) !important;
    }
}

/* Absolute final header override. */
body.pa12-theme.pa12-theme .pa12-header { background:#11100e !important; background-image:none !important; }
@media (min-width:861px) {
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:hover > a,
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:focus-within > a { transform:none !important; border:0 !important; background:transparent !important; color:var(--gsp-gold) !important; }
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:hover > a::after,
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:focus-within > a::after { display:block !important; width:5px !important; height:5px !important; right:8px !important; left:auto !important; bottom:auto !important; border-right:1px solid #fff !important; border-bottom:1px solid #fff !important; background:transparent !important; transform:rotate(45deg) !important; }
}

/* Final header alignment: flat black header and ordinary-link hover for parent items. */
body.pa12-theme.pa12-theme .pa12-header {
    background:#11100e !important;
    background-image:none !important;
}
@media (min-width:861px) {
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children > a,
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:hover > a,
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:focus-within > a {
        transform:none !important;
        border:0 !important;
        background:transparent !important;
        color:#fff !important;
    }
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:hover > a,
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:focus-within > a {
        color:var(--gsp-gold) !important;
    }
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:hover > a::after,
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:focus-within > a::after {
        display:none !important;
        content:none !important;
    }
}

/* New header hover language: a compact gold tab replaces the old underline-only effect. */
@media (min-width:861px) {
    body.pa12-theme .pa12-menu > li { position:relative; }
    body.pa12-theme .pa12-menu > li > a { z-index:1; overflow:hidden; padding:12px 13px !important; color:#fff !important; transition:color 180ms ease !important; }
    body.pa12-theme .pa12-menu > li > a::before { content:""; position:absolute; z-index:-1; inset:0; background:var(--gsp-gold); transform:scaleY(0); transform-origin:bottom; transition:transform 220ms cubic-bezier(.2,.8,.2,1); }
    body.pa12-theme .pa12-menu > li > a::after { right:12px !important; bottom:5px !important; left:12px !important; height:1px !important; background:#17120b !important; transform:scaleX(0) !important; transition:transform 220ms ease !important; }
    body.pa12-theme .pa12-menu > li:hover > a,
    body.pa12-theme .pa12-menu > li:focus-within > a { color:#17120b !important; }
    body.pa12-theme .pa12-menu > li:hover > a::before,
    body.pa12-theme .pa12-menu > li:focus-within > a::before { transform:scaleY(1); }
    body.pa12-theme .pa12-menu > li:hover > a::after,
    body.pa12-theme .pa12-menu > li:focus-within > a::after { transform:scaleX(0) !important; }
    body.pa12-theme .pa12-menu > li.menu-item-has-children > a::before { transform:scaleY(0); }
    body.pa12-theme .pa12-menu > li.menu-item-has-children:hover > a::before,
    body.pa12-theme .pa12-menu > li.menu-item-has-children:focus-within > a::before { transform:scaleY(1); }
    body.pa12-theme .pa12-menu .pa12-menu-caret { display:none !important; }
    body.pa12-theme .pa12-menu > li.menu-item-has-children > .sub-menu { top:calc(100% + 9px) !important; min-width:224px !important; padding:10px !important; border:1px solid var(--gsp-gold) !important; border-radius:0 !important; background:#11100e !important; box-shadow:8px 8px 0 rgba(215,154,25,.22) !important; }
    body.pa12-theme .pa12-menu > li.menu-item-has-children > .sub-menu::before { content:""; display:block; height:3px; margin:-10px -10px 8px; background:var(--gsp-gold); }
    body.pa12-theme .pa12-menu > li.menu-item-has-children > .sub-menu a { position:relative; padding:12px 14px !important; border-left:0 !important; color:#fff !important; }
    body.pa12-theme .pa12-menu > li.menu-item-has-children > .sub-menu a::before { content:""; position:absolute; inset:0; background:rgba(215,154,25,.13); transform:scaleX(0); transform-origin:left; transition:transform 180ms ease; }
    body.pa12-theme .pa12-menu > li.menu-item-has-children > .sub-menu a:hover::before,
    body.pa12-theme .pa12-menu > li.menu-item-has-children > .sub-menu a:focus-visible::before { transform:scaleX(1); }
    body.pa12-theme .pa12-menu > li.menu-item-has-children > .sub-menu a:hover,
    body.pa12-theme .pa12-menu > li.menu-item-has-children > .sub-menu a:focus-visible { padding-left:14px !important; color:var(--gsp-gold) !important; }
}

/* Requested clean parent-menu hover: no underline and no parent arrow. */
@media (min-width:861px) {
    body.pa12-theme .pa12-menu > li > a::after,
    body.pa12-theme .pa12-menu > li:hover > a::after,
    body.pa12-theme .pa12-menu > li:focus-within > a::after { display:none !important; content:none !important; transform:none !important; }
    body.pa12-theme .pa12-menu > li.menu-item-has-children > a::after {
        content:"" !important;
        display:block !important;
        position:absolute;
        top:50%;
        right:5px;
        width:5px;
        height:5px;
        margin-top:-4px;
        border-right:1px solid currentColor;
        border-bottom:1px solid currentColor;
        background:transparent !important;
        transform:rotate(45deg) !important;
        transform-origin:center;
        transition:transform 180ms ease,color 180ms ease !important;
    }
    body.pa12-theme .pa12-menu > li.menu-item-has-children > a:hover::after,
    body.pa12-theme .pa12-menu > li.menu-item-has-children > a:focus-visible::after {
        display:block !important;
        transform:rotate(225deg) !important;
    }
    body.pa12-theme .pa12-menu > li.menu-item-has-children > a { padding-right:24px !important; }
    body.pa12-theme.pa12-theme .pa12-menu > li:not(.menu-item-has-children) > a::after,
    body.pa12-theme.pa12-theme .pa12-menu > li:not(.menu-item-has-children):hover > a::after,
    body.pa12-theme.pa12-theme .pa12-menu > li:not(.menu-item-has-children):focus-within > a::after { display:none !important; content:none !important; }
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children > a::after {
        content:"" !important;
        display:block !important;
        position:absolute;
        top:50%;
        right:5px;
        width:5px !important;
        height:5px !important;
        margin-top:-4px;
        border-right:1px solid #fff !important;
        border-bottom:1px solid #fff !important;
        background:transparent !important;
        color:#fff !important;
        transform:rotate(45deg) !important;
    }
}
@media (max-width:860px) {
    body.pa12-theme .pa12-menu > li > a { border-left:2px solid transparent; transition:background 180ms ease,border-color 180ms ease,color 180ms ease !important; }
    body.pa12-theme .pa12-menu > li > a:hover,
    body.pa12-theme .pa12-menu > li > a:focus-visible { border-left-color:var(--gsp-gold); background:rgba(215,154,25,.14) !important; color:var(--gsp-gold) !important; }
}

/* Parent menu cleanup: one clear control, no stray diamond or detached decoration. */
@media (min-width:861px) {
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children > a {
        position:relative !important;
        display:inline-flex !important;
        align-items:center;
        gap:8px;
        min-height:38px;
        padding:9px 24px 9px 12px !important;
        border:1px solid rgba(255,255,255,.18);
        background:transparent !important;
        color:#fff !important;
    }
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children > a::before {
        content:"" !important;
        position:absolute !important;
        z-index:-1 !important;
        inset:0 !important;
        display:block !important;
        width:auto !important;
        height:auto !important;
        margin:0 !important;
        border:0 !important;
        background:var(--gsp-gold) !important;
        transform:scaleY(0) !important;
        transform-origin:bottom !important;
        transition:transform 180ms ease !important;
    }
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children > a::after {
        content:"" !important;
        display:block !important;
        position:absolute !important;
        top:50% !important;
        right:10px !important;
        left:auto !important;
        bottom:auto !important;
        width:5px !important;
        height:5px !important;
        margin-top:-4px !important;
        border:0 !important;
        border-right:1px solid #fff !important;
        border-bottom:1px solid #fff !important;
        background:transparent !important;
        transform:rotate(45deg) !important;
    }
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:hover > a,
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:focus-within > a { border-color:var(--gsp-gold); color:#17120b !important; }
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:hover > a::before,
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:focus-within > a::before { transform:scaleY(1) !important; }
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:hover > a::after,
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:focus-within > a::after { border-color:#17120b !important; transform:rotate(225deg) !important; }
}

/* Parent links match the rest of the header; only the simple white chevron remains. */
@media (min-width:861px) {
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children > a {
        display:inline !important;
        min-height:0 !important;
        padding:10px 12px !important;
        border:0 !important;
        background:transparent !important;
        color:#fff !important;
    }
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children > a::before {
        display:block !important;
        content:"" !important;
        position:absolute !important;
        top:50% !important;
        right:4px !important;
        width:5px !important;
        height:5px !important;
        margin-top:-4px !important;
        border-right:1px solid #fff !important;
        border-bottom:1px solid #fff !important;
        background:transparent !important;
        transform:rotate(45deg) !important;
    }
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:hover > a,
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:focus-within > a {
        border:0 !important;
        background:rgba(255,255,255,.16) !important;
        color:#fff !important;
        transform:translateY(-1px) !important;
    }
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children > a::after {
        display:none !important;
        content:none !important;
    }
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:hover > a::after,
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:focus-within > a::after {
        display:none !important;
        content:none !important;
    }
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children > a {
        transition:color 180ms ease,transform 180ms ease !important;
    }
}

/* Category cards: image-first editorial tiles with a clear index and title lockup. */
body.pa12-theme .pa12-category-card-grid { display:grid !important; grid-template-columns:repeat(4,minmax(0,1fr)) !important; gap:14px !important; }
body.pa12-theme .pa12-category-card { position:relative; display:flex !important; flex-direction:column !important; min-width:0; min-height:0 !important; padding:0 !important; overflow:hidden; border:1px solid #d8d1c7 !important; border-radius:0 !important; background:#f8f6f1 !important; box-shadow:none !important; transition:transform 220ms ease,border-color 220ms ease,box-shadow 220ms ease !important; }
body.pa12-theme .pa12-category-card:hover,
body.pa12-theme .pa12-category-card:focus-within { border-color:var(--gsp-gold) !important; box-shadow:0 16px 30px rgba(20,16,10,.1) !important; transform:translateY(-5px); }
body.pa12-theme .pa12-category-card__media { position:relative; aspect-ratio:4 / 4.8; overflow:hidden; background:#222; }
body.pa12-theme .pa12-category-card__media::after { content:""; position:absolute; inset:55% 0 0; background:linear-gradient(transparent,rgba(10,9,7,.7)); pointer-events:none; }
body.pa12-theme .pa12-category-card__media img { width:100%; height:100%; object-fit:cover; filter:saturate(.72) contrast(1.04); transition:transform 600ms ease,filter 300ms ease; }
body.pa12-theme .pa12-category-card:hover .pa12-category-card__media img { transform:scale(1.06); filter:saturate(1) contrast(1.05); }
body.pa12-theme .pa12-category-card__number { position:absolute; z-index:1; top:16px; left:16px; display:grid; place-items:center; width:32px; height:32px; border:1px solid rgba(255,255,255,.55); color:#fff; font-size:10px; font-weight:800; letter-spacing:.1em; }
body.pa12-theme .pa12-category-card__arrow { position:absolute; z-index:1; right:17px; bottom:15px; color:var(--gsp-gold); font-size:21px; }
body.pa12-theme .pa12-category-card__body { display:flex; flex-direction:column; flex:1; min-height:132px; padding:18px 18px 20px !important; }
body.pa12-theme .pa12-category-card__label { margin-bottom:10px; color:var(--gsp-gold); font-size:9px; font-weight:800; letter-spacing:.13em; line-height:1.2; text-transform:uppercase; }
body.pa12-theme .pa12-category-card h2 { margin:0; color:#171717; font-size:clamp(18px,1.8vw,26px) !important; font-weight:900; letter-spacing:-.02em; line-height:1 !important; text-transform:uppercase; }
body.pa12-theme .pa12-category-card p { margin:10px 0 0; color:#716b62; font-size:11px; line-height:1.55; }
@media (max-width:1050px) { body.pa12-theme .pa12-category-card-grid { grid-template-columns:repeat(3,minmax(0,1fr)) !important; } }
@media (max-width:760px) { body.pa12-theme .pa12-category-card-grid { grid-template-columns:repeat(2,minmax(0,1fr)) !important; gap:10px !important; } body.pa12-theme .pa12-category-card__body { min-height:118px; padding:14px 13px 16px !important; } }
@media (max-width:480px) { body.pa12-theme .pa12-category-card-grid { grid-template-columns:1fr !important; } }

/* Header hover: gold ink line and a quiet paper-to-black dropdown state. */
@media (min-width:861px) {
    body.pa12-theme .pa12-menu > li > a { position:relative; transition:color 180ms ease !important; }
    body.pa12-theme .pa12-menu > li > a::after { content:"" !important; position:absolute; right:0; bottom:-8px; left:0; display:block !important; width:auto !important; height:2px !important; background:var(--gsp-gold) !important; transform:scaleX(0); transform-origin:right center; transition:transform 220ms ease !important; }
    body.pa12-theme .pa12-menu > li:hover > a,
    body.pa12-theme .pa12-menu > li:focus-within > a { color:var(--gsp-gold) !important; }
    body.pa12-theme .pa12-menu > li:hover > a::after,
    body.pa12-theme .pa12-menu > li:focus-within > a::after { transform:scaleX(1); transform-origin:left center; }
    body.pa12-theme .pa12-menu > li.menu-item-has-children > .sub-menu { top:calc(100% + 16px); border:1px solid rgba(215,154,25,.45); border-radius:0; background:#17120b; box-shadow:0 18px 34px rgba(0,0,0,.34); }
    body.pa12-theme .pa12-menu > li.menu-item-has-children > .sub-menu a { border-left:2px solid transparent; transition:background 180ms ease,border-color 180ms ease,padding 180ms ease !important; }
    body.pa12-theme .pa12-menu > li.menu-item-has-children > .sub-menu a:hover,
    body.pa12-theme .pa12-menu > li.menu-item-has-children > .sub-menu a:focus-visible { border-left-color:var(--gsp-gold); background:rgba(215,154,25,.14) !important; padding-left:16px; }
}

/* Final navigation and jury data alignment with the live Golden Shot site. */
@media (min-width:861px) {
    body.pa12-theme .pa12-menu > li.menu-item-has-children { position:relative; }
    body.pa12-theme .pa12-menu > li.menu-item-has-children > a { display:inline-flex; align-items:center; gap:8px; }
    body.pa12-theme .pa12-menu > li.menu-item-has-children > a::before { content:""; width:6px; height:6px; border-right:1px solid currentColor; border-bottom:1px solid currentColor; transform:rotate(45deg) translateY(-2px); }
    body.pa12-theme .pa12-menu > li.menu-item-has-children > .sub-menu { position:absolute; top:calc(100% + 12px); left:0; z-index:30; display:block; min-width:190px; margin:0; padding:8px; list-style:none; border:1px solid rgba(255,255,255,.22); border-radius:8px; background:#17120b; box-shadow:0 18px 34px rgba(0,0,0,.28); opacity:0; pointer-events:none; transform:translateY(-5px); visibility:hidden; transition:opacity .18s ease, transform .18s ease, visibility .18s ease; }
    body.pa12-theme .pa12-menu > li.menu-item-has-children:hover > .sub-menu,
    body.pa12-theme .pa12-menu > li.menu-item-has-children:focus-within > .sub-menu { opacity:1; pointer-events:auto; transform:translateY(0); visibility:visible; }
    body.pa12-theme .pa12-menu > li.menu-item-has-children > .sub-menu a { display:block; padding:10px 12px; color:#fff !important; white-space:nowrap; }
    body.pa12-theme .pa12-menu > li.menu-item-has-children > .sub-menu a::after { display:none !important; }
    body.pa12-theme .pa12-menu > li.menu-item-has-children > .sub-menu a:hover,
    body.pa12-theme .pa12-menu > li.menu-item-has-children > .sub-menu a:focus-visible { background:rgba(223,148,0,.18) !important; color:#fff !important; }
}

/* Every juror uses the same card geometry; the live site lists 16 jurors. */
body.pa12-theme .gsp-jury-roster { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:14px; align-items:stretch; }
body.pa12-theme .gsp-juror-card,
body.pa12-theme .gsp-juror-card.is-lead,
body.pa12-theme .gsp-juror-card:not(.is-lead) { grid-column:auto; grid-row:auto; display:flex; flex-direction:column; min-height:0; height:100%; border:1px solid #cfc9c0; background:#f8f6f1; color:#171717; transform:none; }
body.pa12-theme .gsp-juror-card:hover,
body.pa12-theme .gsp-juror-card:focus-visible { border-color:var(--gsp-gold); transform:translateY(-4px); }
body.pa12-theme .gsp-juror-card__media,
body.pa12-theme .gsp-juror-card.is-lead .gsp-juror-card__media,
body.pa12-theme .gsp-juror-card:not(.is-lead) .gsp-juror-card__media { flex:0 0 auto; width:100%; height:auto; aspect-ratio:4 / 4.6; }
body.pa12-theme .gsp-juror-card__body,
body.pa12-theme .gsp-juror-card.is-lead .gsp-juror-card__body { position:relative; right:auto; bottom:auto; left:auto; display:grid; grid-template-columns:30px 1fr; align-content:start; flex:1; min-height:142px; padding:18px 17px 22px; background:#f8f6f1; }
body.pa12-theme .gsp-juror-card h3,
body.pa12-theme .gsp-juror-card.is-lead h3 { color:#171717 !important; font-size:clamp(18px,1.65vw,25px); line-height:.95; }
body.pa12-theme .gsp-juror-card p,
body.pa12-theme .gsp-juror-card.is-lead p { color:#706c64 !important; }
body.pa12-theme .gsp-juror-card__country { margin-top:auto; }
body.pa12-theme .gsp-juror-card__arrow { bottom:16px; }
@media (max-width:1050px) {
    body.pa12-theme .gsp-jury-roster { grid-template-columns:repeat(3,minmax(0,1fr)); }
}
@media (max-width:760px) {
    body.pa12-theme .gsp-jury-roster { grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; }
    body.pa12-theme .gsp-juror-card__media,
    body.pa12-theme .gsp-juror-card.is-lead .gsp-juror-card__media,
    body.pa12-theme .gsp-juror-card:not(.is-lead) .gsp-juror-card__media { aspect-ratio:1 / 1.08; }
    body.pa12-theme .gsp-juror-card__body,
    body.pa12-theme .gsp-juror-card.is-lead .gsp-juror-card__body { min-height:124px; padding:14px 13px 18px; }
    body.pa12-theme .gsp-juror-card h3,
    body.pa12-theme .gsp-juror-card.is-lead h3 { font-size:19px; }
}
@media (max-width:480px) {
    body.pa12-theme .gsp-jury-roster { grid-template-columns:1fr; }
}

/* Jury and editorial newsroom pass. */
body.pa12-theme .gsp-jury { background:#eeeae3; }
body.pa12-theme .gsp-jury .pa12-jury-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:12px; }
body.pa12-theme .gsp-jury .pa12-jury-card { min-width:0; display:flex; flex-direction:column; border:1px solid #d0cbc2; border-radius:0; background:#f8f6f1; box-shadow:none; overflow:hidden; transition:transform 220ms ease, border-color 220ms ease; }
body.pa12-theme .gsp-jury .pa12-jury-card:hover, body.pa12-theme .gsp-jury .pa12-jury-card:focus-within { border-color:var(--gsp-gold); transform:translateY(-5px); }
body.pa12-theme .gsp-jury .pa12-jury-card.is-lead { grid-column:span 2; grid-row:span 2; }
body.pa12-theme .gsp-jury .pa12-jury-card__media { position:relative; aspect-ratio:1 / 1.08; overflow:hidden; background:#252525; }
body.pa12-theme .gsp-jury .pa12-jury-card.is-lead .pa12-jury-card__media { aspect-ratio:1 / 1.05; }
body.pa12-theme .gsp-jury .pa12-jury-card__media img { width:100%; height:100%; object-fit:cover; filter:grayscale(1) contrast(1.05); transition:filter 300ms ease, transform 600ms ease; }
body.pa12-theme .gsp-jury .pa12-jury-card:hover .pa12-jury-card__media img, body.pa12-theme .gsp-jury .pa12-jury-card:focus-within .pa12-jury-card__media img { filter:grayscale(0) contrast(1); transform:scale(1.04); }
body.pa12-theme .gsp-jury .pa12-jury-card__media::after { content:""; position:absolute; inset:45% 0 0; background:linear-gradient(transparent,rgba(0,0,0,.72)); pointer-events:none; }
body.pa12-theme .gsp-jury .pa12-jury-card__mark { position:absolute; z-index:1; top:14px; left:14px; padding:7px 9px; background:var(--gsp-gold); color:#111; font-size:9px; font-weight:800; letter-spacing:.11em; text-transform:uppercase; }
body.pa12-theme .gsp-jury .pa12-jury-card__body { flex:1; display:grid; grid-template-columns:32px 1fr; gap:0 10px; padding:17px 16px 19px; }
body.pa12-theme .gsp-jury .pa12-jury-card__index { grid-row:span 3; color:var(--gsp-gold); font-size:10px; font-weight:800; }
body.pa12-theme .gsp-jury .pa12-jury-card h3 { margin:0; color:#171717; font-size:clamp(18px,2vw,28px); font-weight:900; letter-spacing:-.045em; line-height:.9; text-transform:uppercase; }
body.pa12-theme .gsp-jury .pa12-jury-card p { margin:8px 0 0; color:#706c64; font-size:11px; font-weight:700; letter-spacing:.08em; line-height:1.3; text-transform:uppercase; }
body.pa12-theme .gsp-jury .pa12-jury-card__country { grid-column:2; margin-top:13px; color:#99938b; font-size:10px; text-transform:uppercase; }
body.pa12-theme .gsp-jury .pa12-jury-card.is-lead h3 { font-size:clamp(28px,3vw,48px); }
body.pa12-theme .gsp-news { padding:clamp(90px,10vw,150px) 0; background:#f8f6f1; }
body.pa12-theme .gsp-news-grid { display:grid; grid-template-columns:1.5fr 1fr 1fr; gap:12px; }
body.pa12-theme .gsp-news-card { min-width:0; border-top:1px solid #bdb8af; }
body.pa12-theme .gsp-news-card__media { position:relative; display:block; aspect-ratio:1 / .78; overflow:hidden; background:#d6d1c8; }
body.pa12-theme .gsp-news-card--lead .gsp-news-card__media { aspect-ratio:1 / .73; }
body.pa12-theme .gsp-news-card__media img { width:100%; height:100%; object-fit:cover; transition:transform 600ms ease; }
body.pa12-theme .gsp-news-card:hover .gsp-news-card__media img { transform:scale(1.05); }
body.pa12-theme .gsp-news-card__media::after { content:""; position:absolute; inset:55% 0 0; background:linear-gradient(transparent,rgba(0,0,0,.65)); }
body.pa12-theme .gsp-news-card__media > span { position:absolute; z-index:1; bottom:14px; left:16px; color:#fff; font-size:10px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
body.pa12-theme .gsp-news-card__body { position:relative; padding:18px 4px 0 42px; }
body.pa12-theme .gsp-news-card__number { position:absolute; top:20px; left:4px; color:var(--gsp-gold); font-size:10px; font-weight:800; }
body.pa12-theme .gsp-news-card h3 { margin:0; color:#181818; font-size:clamp(20px,2.5vw,38px); font-weight:900; letter-spacing:-.045em; line-height:.9; text-transform:uppercase; }
body.pa12-theme .gsp-news-card h3 a { color:inherit; }
body.pa12-theme .gsp-news-card p { margin:15px 0 20px; color:#706c64; font-size:12px; line-height:1.6; }
body.pa12-theme .gsp-news-card .gsp-arrow-link { font-size:10px; }
@media (max-width:900px) {
    body.pa12-theme .gsp-jury .pa12-jury-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
    body.pa12-theme .gsp-jury .pa12-jury-card.is-lead { grid-column:span 2; }
    body.pa12-theme .gsp-news-grid { grid-template-columns:1.2fr 1fr; }
    body.pa12-theme .gsp-news-card--lead { grid-row:span 2; }
}
@media (max-width:760px) {
    body.pa12-theme .gsp-jury .pa12-jury-grid { grid-template-columns:repeat(2,minmax(0,1fr)); gap:8px; }
    body.pa12-theme .gsp-jury .pa12-jury-card.is-lead { grid-column:span 2; grid-row:auto; }
    body.pa12-theme .gsp-jury .pa12-jury-card__media, body.pa12-theme .gsp-jury .pa12-jury-card.is-lead .pa12-jury-card__media { aspect-ratio:1 / 1.08; }
    body.pa12-theme .gsp-jury .pa12-jury-card h3, body.pa12-theme .gsp-jury .pa12-jury-card.is-lead h3 { font-size:20px; }
    body.pa12-theme .gsp-news-grid { grid-template-columns:1fr; gap:30px; }
    body.pa12-theme .gsp-news-card--lead { grid-row:auto; }
}

@media (max-width: 520px) {
    .pa12-jury-grid,
    .pa12-jury-page__gallery .pa12-jury-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .pa12-jury-card__body {
        min-height: 0;
    }
}

@media (max-width: 640px) {
    .pa12-theme .pa12-awards-hero .pa12-hero__inner,
    .pa12-theme .pa12-section-head,
    .pa12-theme .pa12-split__inner,
    .pa12-theme .pa12-inner-hero__grid,
    .pa12-theme .pa12-winners-heading,
    .pa12-theme .pa12-page-head {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
        text-align: left;
    }

    .pa12-theme .pa12-awards-hero .pa12-hero__inner {
        width: calc(100% - 24px);
        padding-top: 44px;
        padding-bottom: 30px;
        gap: 18px;
    }

    .pa12-theme .pa12-hero-copy {
        width: 100%;
        padding-bottom: 30px;
    }

    .pa12-theme .pa12-awards-hero .pa12-kicker {
        min-height: 28px;
        margin-bottom: 12px;
        font-size: 12px;
        line-height: 1.35;
    }

    .pa12-theme .pa12-awards-hero h1 {
        font-size: clamp(40px, 11vw, 58px);
        line-height: .95;
        max-width: 12ch;
    }

    .pa12-theme .pa12-hero-actions {
        width: 100%;
        margin-top: 18px;
    }

    .pa12-theme .pa12-hero-actions .pa12-button {
        width: min(100%, 320px);
        min-height: 50px;
    }

    .pa12-theme .pa12-section-head > *,
    .pa12-theme .pa12-split__inner > *,
    .pa12-theme .pa12-inner-hero__grid > *,
    .pa12-theme .pa12-winners-heading > *,
    .pa12-theme .pa12-page-head > * {
        width: 100%;
        margin-inline: 0;
        text-align: left;
    }

    .pa12-theme .pa12-section-head h2,
    .pa12-theme .pa12-split__inner h2,
    .pa12-theme .pa12-inner-hero__grid h1,
    .pa12-theme .pa12-winners-heading :is(h1, h2),
    .pa12-theme .pa12-page-head h1 {
        font-size: 28px;
        line-height: 1.04;
        letter-spacing: 0;
    }

    .pa12-theme .pa12-section-head p,
    .pa12-theme .pa12-split__inner > div:last-child > p,
    .pa12-theme .pa12-inner-hero__grid > p,
    .pa12-theme .pa12-winners-heading > p,
    .pa12-theme .pa12-page-head > p {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.6;
    }

    .pa12-theme .pa12-nominees-band .pa12-text-link {
        width: min(100%, 260px);
        min-height: 50px;
        padding-inline: 20px;
    }

    .pa12-theme .pa12-nominees-band .pa12-split__inner {
        width: calc(100% - 32px);
        margin-inline: auto;
    }

    .pa12-theme .pa12-nominees-band .pa12-split__inner > div {
        width: 100%;
    }

    .pa12-theme .pa12-winner-filters {
        gap: 6px;
        margin-bottom: 24px;
        padding-bottom: 8px;
    }

    .pa12-theme .pa12-winner-filters button {
        min-height: 36px;
        padding: 0 12px;
        font-size: 11px;
    }

    .pa12-theme .pa12-winner-card {
        border-radius: 10px;
        box-shadow: 0 12px 30px rgba(23, 18, 11, .08);
    }

    .pa12-theme .pa12-winner-card__image {
        aspect-ratio: 6 / 5;
    }

    .pa12-theme .pa12-winner-card__image > span {
        top: 10px;
        left: 10px;
        padding: 5px 7px;
        font-size: 9px;
    }

    .pa12-theme .pa12-winner-card__body {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        min-height: 0;
        padding: 14px 14px 16px;
        text-align: left;
    }

    .pa12-theme .pa12-winner-card__body small,
    .pa12-theme .pa12-winner-card__body strong,
    .pa12-theme .pa12-winner-card__body span {
        display: block;
        width: 100%;
        text-align: left;
    }

    .pa12-theme .pa12-winner-card__body small {
        margin-bottom: 0;
        font-size: 9px;
        line-height: 1.25;
    }

    .pa12-theme .pa12-winner-card__body strong {
        font-size: 17px;
        line-height: 1.1;
    }

    .pa12-theme .pa12-winner-card__body > span {
        font-size: 11px;
        line-height: 1.5;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pa12-jury-card {
        opacity: 1;
        transform: none;
        animation: none;
        transition: none;
    }

    .pa12-jury-card__media img {
        transition: none;
    }
}

/* Minimal jury cards: quiet surfaces, clear portraits, and restrained motion. */
body.pa12-theme .pa12-jury-grid {
    gap: 16px;
}

body.pa12-theme .pa12-jury-card {
    min-width: 0;
    padding: 0 0 14px;
    border: 1px solid rgba(23, 18, 11, .12);
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(23, 18, 11, .055);
    transform: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

body.pa12-theme .pa12-jury-card::before,
body.pa12-theme .pa12-jury-card::after {
    display: none;
    content: none;
}

body.pa12-theme .pa12-jury-card:hover,
body.pa12-theme .pa12-jury-card:focus-visible,
body.pa12-theme .pa12-jury-card:focus-within {
    border-color: rgba(223, 148, 0, .34);
    box-shadow: 0 14px 28px rgba(23, 18, 11, .11);
    transform: translateY(-3px);
}

body.pa12-theme .pa12-jury-card.is-lead {
    border-color: rgba(223, 148, 0, .3);
}

body.pa12-theme .pa12-jury-card__media {
    aspect-ratio: 1 / 1;
    margin: 0;
    border-radius: 5px 5px 0 0;
    background: #fff2cf;
}

body.pa12-theme .pa12-jury-card__media::before,
body.pa12-theme .pa12-jury-card__media::after {
    display: none;
    content: none;
}

body.pa12-theme .pa12-jury-card__media img {
    aspect-ratio: 1 / 1;
    filter: grayscale(.08) saturate(.92);
    transition: transform 360ms cubic-bezier(.22, 1, .36, 1), filter 180ms ease;
}

body.pa12-theme .pa12-jury-card:hover .pa12-jury-card__media img,
body.pa12-theme .pa12-jury-card:focus-visible .pa12-jury-card__media img,
body.pa12-theme .pa12-jury-card:focus-within .pa12-jury-card__media img {
    filter: grayscale(0) saturate(1);
    transform: scale(1.025);
}

body.pa12-theme .pa12-jury-card__mark {
    top: 10px;
    right: 10px;
    margin: 0;
    padding: 4px 6px;
    border: 0;
    border-radius: 3px;
    background: rgba(255, 255, 255, .88);
    color: #17120b;
    font-size: 8px;
    letter-spacing: .05em;
    box-shadow: 0 4px 12px rgba(23, 18, 11, .1);
}

body.pa12-theme .pa12-jury-card__body {
    min-height: 0;
    padding: 13px 12px 0;
    gap: 4px;
}

body.pa12-theme .pa12-jury-card__index {
    display: block;
    width: auto;
    margin: 0 0 6px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #df9400;
    font-size: 8px;
    letter-spacing: .08em;
}

body.pa12-theme .pa12-jury-card h3 {
    color: #17120b;
    font-size: clamp(12px, .95vw, 15px);
    line-height: 1.2;
}

body.pa12-theme .pa12-jury-card p {
    color: #6f6250;
    font-size: 9px;
    line-height: 1.35;
}

body.pa12-theme .pa12-jury-card__country,
body.pa12-theme .pa12-jury-card > span {
    display: block;
    width: auto;
    max-width: none;
    margin-top: 3px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #df9400;
    font-size: 8px;
    line-height: 1.2;
    letter-spacing: .04em;
}

body.pa12-theme .pa12-interviews-page__content {
    /* Legacy placement retained for compatibility with the earlier page pass. */
    padding: clamp(62px, 8vw, 104px) 0;
    background: var(--pa12-surface-color, #fffaf0);
}

body.pa12-theme .pa12-interviews-page .pa12-interviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.pa12-theme .pa12-interviews-page .pa12-interview-card__body h2 {
    margin: 0;
    color: #17120b;
    font-size: clamp(20px, 2.1vw, 32px);
    line-height: 1.08;
}

body.pa12-theme .pa12-interviews-page .pa12-interview-card__body h2 a {
    color: inherit;
    text-decoration: none;
}

body.pa12-theme .pa12-interviews-page .pa12-interview-card__body .pa12-text-link {
    margin-top: 2px;
}

@media (max-width: 900px) {
    body.pa12-theme .pa12-interviews-page .pa12-interviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    body.pa12-theme .pa12-interviews-page .pa12-interviews-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    body.pa12-theme .pa12-jury-card__media,
    body.pa12-theme .pa12-jury-card__media img {
        aspect-ratio: 16 / 10;
    }
}

/* Full-width sticky navigation and centered entry fee cards. */
body.pa12-theme.pa12-theme .pa12-header {
    position: sticky !important;
    top: 0 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    border-radius: 0 !important;
}

body.pa12-theme.pa12-theme .pa12-fee-page__grid {
    width: min(1120px, calc(100% - 32px)) !important;
    margin-inline: auto !important;
    justify-content: center !important;
}

@media (max-width: 760px) {
    body.pa12-theme.pa12-theme .pa12-fee-page__grid {
        width: calc(100% - 32px) !important;
        margin-inline: auto !important;
    }
}

/* End of the earlier compatibility block. */

/* End of the earlier compatibility block. */

/* End of the earlier compatibility block. */

/* End of the earlier compatibility block. */

/* Final entry fee and winners gallery pass. */
/* User-requested static gallery cards and aligned fee layout. */
/* Floating #e3a11c navigation and a more expressive entry fee page. */
body.pa12-theme.pa12-theme .pa12-fee-page {
    background-color: #f8f6f1 !important;
    background-image:
        linear-gradient(135deg, rgba(248, 246, 241, .98) 0%, rgba(255, 255, 255, .94) 48%, rgba(248, 246, 241, .98) 100%),
        linear-gradient(rgba(223, 148, 0, .05) 1px, transparent 1px) !important;
    background-size: auto, 100% 52px !important;
}

body.pa12-theme.pa12-theme .pa12-header {
    position: sticky !important;
    top: 12px !important;
    z-index: 1000 !important;
    width: min(1180px, calc(100% - 32px)) !important;
    min-height: 0 !important;
    margin: 12px auto 0 !important;
    border: 1px solid rgba(255, 255, 255, .28) !important;
    border-radius: 16px !important;
    background: linear-gradient(135deg, #df9400 0%, #8a5b04 100%) !important;
    box-shadow: 0 16px 36px rgba(23, 18, 11, .24) !important;
    backdrop-filter: blur(14px) !important;
}

body.pa12-theme.pa12-theme .pa12-header__inner {
    width: 100% !important;
    min-height: 70px !important;
    padding: 0 18px !important;
}

body.pa12-theme.pa12-theme .pa12-brand img {
    max-height: 54px !important;
    filter: brightness(0) invert(1) !important;
    mix-blend-mode: normal !important;
}

body.pa12-theme.pa12-theme .pa12-menu a,
body.pa12-theme.pa12-theme .pa12-menu a:hover,
body.pa12-theme.pa12-theme .pa12-menu a:focus-visible {
    color: #fff !important;
}

body.pa12-theme.pa12-theme .pa12-menu a::after {
    background: #fff !important;
}

body.pa12-theme.pa12-theme .pa12-header-cta,
body.pa12-theme.pa12-theme .pa12-auth .photo-award-auth-trigger,
body.pa12-theme.pa12-theme .pa12-header .photo-award-login-register .photo-award-auth-trigger {
    border-color: #fff !important;
    background: #fff !important;
    color: #8a5b04 !important;
    box-shadow: 0 8px 18px rgba(23, 18, 11, .18) !important;
}

body.pa12-theme.pa12-theme .pa12-menu-toggle {
    border-color: rgba(255, 255, 255, .58) !important;
    background: rgba(223, 148, 0, .36) !important;
    color: #fff !important;
}

body.pa12-theme.pa12-theme .pa12-info-page > .pa12-inner-hero {
    background:
        linear-gradient(135deg, rgba(248, 246, 241, .98), rgba(255, 255, 255, .98) 54%, rgba(248, 246, 241, .96)),
        #f8f6f1 !important;
    border-bottom-color: rgba(223, 148, 0, .18) !important;
}

body.pa12-theme.pa12-theme .pa12-fee-page {
    background-color: #f8f6f1 !important;
    background-image:
        linear-gradient(135deg, rgba(248, 246, 241, .98) 0%, rgba(255,255,255,.94) 48%, rgba(248, 246, 241, .98) 100%),
        linear-gradient(rgba(223, 148, 0, .05) 1px, transparent 1px) !important;
    background-size: auto, 100% 52px !important;
}

body.pa12-theme.pa12-theme .pa12-fee-page__grid article {
    border-color: rgba(223, 148, 0, .18) !important;
    background: linear-gradient(160deg, #fff 0%, #fff8e8 100%) !important;
    box-shadow: 0 18px 38px rgba(223, 148, 0, .11) !important;
}

body.pa12-theme.pa12-theme .pa12-fee-page__grid article:nth-child(2) {
    border-color: rgba(223, 148, 0, .32) !important;
    background: linear-gradient(160deg, #fff 0%, #f8f6f1 100%) !important;
}

body.pa12-theme.pa12-theme .pa12-fee-page__grid article:nth-child(3) {
    border-color: rgba(223, 148, 0, .26) !important;
    background: linear-gradient(160deg, #fff 0%, #f8f6f1 100%) !important;
}

body.pa12-theme.pa12-theme .pa12-fee-page__grid article > span {
    color: #df9400 !important;
    background: rgba(223, 148, 0, .08) !important;
}

body.pa12-theme.pa12-theme .pa12-fee-page__grid article strong {
    color: #df9400 !important;
}

body.pa12-theme.pa12-theme .pa12-fee-page .pa12-page-cta {
    border-color: rgba(255, 255, 255, .26) !important;
    background: linear-gradient(135deg, #df9400 0%, #8a5b04 100%) !important;
    box-shadow: 0 18px 34px rgba(223, 148, 0, .2) !important;
}

body.pa12-theme.pa12-theme .pa12-fee-page .pa12-page-cta p {
    color: #fff4da !important;
}

body.pa12-theme.pa12-theme .pa12-fee-collection {
    border-top-color: rgba(223, 148, 0, .2) !important;
}

body.pa12-theme.pa12-theme .pa12-fee-collection__card {
    border-color: rgba(223, 148, 0, .16) !important;
    background: #fff !important;
    box-shadow: 0 18px 34px rgba(223, 148, 0, .1) !important;
}

@media (max-width: 860px) {
    body.pa12-theme.pa12-theme .pa12-header__inner {
        min-height: 64px !important;
    }

    body.pa12-theme.pa12-theme .pa12-nav {
        top: 70px !important;
        right: 0 !important;
        left: 0 !important;
        padding: 18px !important;
        border: 1px solid rgba(255, 255, 255, .24) !important;
        border-radius: 14px !important;
        background: #8a5b04 !important;
        box-shadow: 0 18px 34px rgba(23, 18, 11, .24) !important;
    }

    body.pa12-theme.pa12-theme .pa12-nav.is-open {
        display: block !important;
    }

    body.pa12-theme.pa12-theme .pa12-menu {
        gap: 4px !important;
        margin-bottom: 16px !important;
    }

    body.pa12-theme.pa12-theme .pa12-menu a {
        display: block !important;
        padding: 10px 8px !important;
        color: #fff !important;
    }

    body.pa12-theme.pa12-theme .pa12-menu a::after {
        display: none !important;
    }
}
body.pa12-theme.pa12-theme .pa12-winner-card__image::before,
body.pa12-theme.pa12-theme .pa12-winner-card__image::after {
    display: none !important;
    content: none !important;
}

body.pa12-theme.pa12-theme .pa12-winner-card__image img {
    filter: saturate(.94) contrast(1.03) !important;
    transform: none !important;
    transition: none !important;
}

body.pa12-theme.pa12-theme .pa12-winner-card:hover,
body.pa12-theme.pa12-theme .pa12-winner-card:focus-visible,
body.pa12-theme.pa12-theme .pa12-winner-card:focus-within {
    transform: none !important;
    border-color: rgba(223, 148, 0, .13) !important;
    box-shadow: 0 12px 28px rgba(23, 18, 11, .08) !important;
}

body.pa12-theme.pa12-theme .pa12-winner-card:hover .pa12-winner-card__image img,
body.pa12-theme.pa12-theme .pa12-winner-card:focus-visible .pa12-winner-card__image img,
body.pa12-theme.pa12-theme .pa12-winner-card:focus-within .pa12-winner-card__image img {
    filter: saturate(.94) contrast(1.03) !important;
    transform: none !important;
}

body.pa12-theme .pa12-fee-page {
    padding: 64px 0 96px !important;
}

body.pa12-theme .pa12-fee-page__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    align-items: stretch !important;
    gap: 18px !important;
}

body.pa12-theme .pa12-fee-page__grid article {
    min-height: 238px !important;
    height: 100% !important;
    padding: 28px 26px 30px !important;
    border-radius: 8px !important;
}

body.pa12-theme .pa12-fee-page__grid article h2 {
    max-width: 12ch !important;
    font-size: 28px !important;
}

body.pa12-theme .pa12-fee-page .pa12-page-cta {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 24px !important;
    margin-top: 32px !important;
    padding: 20px 22px !important;
    border: 1px solid rgba(223, 148, 0, .14) !important;
    border-radius: 8px !important;
    background: #fff !important;
}

body.pa12-theme .pa12-fee-collection {
    margin-top: 72px !important;
    padding-top: 6px !important;
}

body.pa12-theme .pa12-winner-card:hover,
body.pa12-theme .pa12-winner-card:focus-visible,
body.pa12-theme .pa12-winner-card:focus-within {
    transform: none !important;
    border-color: rgba(223, 148, 0, .13) !important;
    box-shadow: 0 12px 28px rgba(23, 18, 11, .08) !important;
}

body.pa12-theme .pa12-winner-card__image::before,
body.pa12-theme .pa12-winner-card__image::after {
    display: none !important;
    content: none !important;
}

body.pa12-theme .pa12-winner-card__image img {
    filter: saturate(.94) contrast(1.03) !important;
    transform: none !important;
    transition: none !important;
}

body.pa12-theme .pa12-winner-card__open {
    display: none !important;
}

body.pa12-theme .pa12-winner-card__body > .pa12-winner-card__badge {
    position: static !important;
    display: inline-flex !important;
    width: max-content !important;
    max-width: 100% !important;
    min-height: 24px !important;
    align-items: center !important;
    margin: 0 0 5px !important;
    padding: 6px 9px !important;
    border: 1px solid rgba(223, 148, 0, .14) !important;
    border-radius: 4px !important;
    background: var(--pa12-rank-color) !important;
    color: #fff !important;
    font-size: 9px !important;
    font-weight: 800 !important;
    letter-spacing: .08em !important;
    line-height: 1 !important;
    box-shadow: none !important;
    transform: none !important;
}

body.pa12-theme .pa12-winner-card--gold .pa12-winner-card__body > .pa12-winner-card__badge {
    color: #241700 !important;
}

body.pa12-theme .pa12-winner-card--silver .pa12-winner-card__body > .pa12-winner-card__badge {
    color: #17120b !important;
}

body.pa12-theme .pa12-winner-card--bronze .pa12-winner-card__body > .pa12-winner-card__badge {
    color: #2b1305 !important;
}

@media (max-width: 760px) {
    body.pa12-theme .pa12-fee-page__grid {
        grid-template-columns: minmax(0, 1fr) !important;
        width: calc(100% - 32px) !important;
        margin-inline: auto !important;
    }

    body.pa12-theme .pa12-fee-page .pa12-page-cta {
        display: grid !important;
        align-items: stretch !important;
        gap: 16px !important;
        width: calc(100% - 32px) !important;
        margin-inline: auto !important;
    }
}
body.pa12-theme .pa12-fee-page__grid article {
    min-height: 236px !important;
    height: 100% !important;
    padding: 28px 26px 30px !important;
    border-radius: 8px !important;
    box-shadow: 0 16px 32px rgba(23, 18, 11, .08) !important;
}

body.pa12-theme .pa12-fee-page__grid article h2 {
    max-width: 12ch !important;
    font-size: 28px !important;
}

body.pa12-theme .pa12-fee-page .pa12-page-cta {
    margin-top: 34px !important;
    padding: 20px 22px !important;
    border: 1px solid rgba(223, 148, 0, .14) !important;
    border-radius: 8px !important;
    background: #fff !important;
    box-shadow: 0 10px 24px rgba(23, 18, 11, .05) !important;
}

body.pa12-theme .pa12-fee-collection {
    margin-top: 76px !important;
    padding-top: 6px !important;
}

body.pa12-theme .pa12-winner-card__image::after {
    inset: 0 !important;
    height: 100% !important;
    background: linear-gradient(180deg, rgba(23, 18, 11, .03) 25%, rgba(23, 18, 11, .68) 100%) !important;
}

body.pa12-theme .pa12-winner-card__image img {
    filter: saturate(.92) contrast(1.03) !important;
    transition: transform 700ms cubic-bezier(.22, 1, .36, 1), filter 260ms ease !important;
}

body.pa12-theme .pa12-winner-card:hover .pa12-winner-card__image img,
body.pa12-theme .pa12-winner-card:focus-visible .pa12-winner-card__image img,
body.pa12-theme .pa12-winner-card:focus-within .pa12-winner-card__image img {
    filter: saturate(1.08) contrast(1.06) !important;
    transform: scale(1.075) !important;
}
body.pa12-theme .pa12-fee-page__grid {
    align-items: stretch;
    grid-auto-rows: 1fr;
}

body.pa12-theme .pa12-fee-page__grid article {
    min-height: 236px;
    height: 100%;
    padding: 28px 26px 30px;
    border-radius: 8px;
    box-shadow: 0 16px 32px rgba(23, 18, 11, .08);
}

body.pa12-theme .pa12-fee-page__grid article::before {
    height: 3px;
}

body.pa12-theme .pa12-fee-page__grid article h2 {
    max-width: 12ch;
    font-size: 28px;
}

body.pa12-theme .pa12-fee-page .pa12-page-cta {
    margin-top: 34px;
    padding: 20px 22px;
    border: 1px solid rgba(223, 148, 0, .14);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(23, 18, 11, .05);
}

body.pa12-theme .pa12-fee-collection {
    margin-top: 76px;
    padding-top: 6px;
}

body.pa12-theme .pa12-winner-sections {
    display: grid;
    gap: 70px;
}

body.pa12-theme .pa12-winner-section {
    padding-top: 34px;
    border-top: 1px solid rgba(223, 148, 0, .16);
}

body.pa12-theme .pa12-winner-section:first-child {
    padding-top: 0;
    border-top: 0;
}

body.pa12-theme .pa12-winner-section[hidden] {
    display: none !important;
}

body.pa12-theme .pa12-winner-section__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, .72fr);
    align-items: end;
    gap: 42px;
    margin-bottom: 24px;
}

body.pa12-theme .pa12-winner-section__head .pa12-kicker {
    margin: 0 0 8px;
    color: #df9400;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

body.pa12-theme .pa12-winner-section__head h3 {
    margin: 0;
    color: #17120b;
    font-size: 42px;
    line-height: 1;
    text-align: left;
}

body.pa12-theme .pa12-winner-section__head > p {
    max-width: 28rem;
    margin: 0 0 2px;
    color: #6c665d;
    font-size: 14px;
    line-height: 1.65;
    text-align: left;
}

body.pa12-theme .pa12-winner-card__image {
    isolation: isolate;
}

body.pa12-theme .pa12-winner-card__image::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, .72);
    opacity: 0;
    transform: scale(.96);
    transition: opacity 260ms ease, transform 520ms cubic-bezier(.22, 1, .36, 1);
    pointer-events: none;
}

body.pa12-theme .pa12-winner-card__image::after {
    inset: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(23, 18, 11, .03) 25%, rgba(23, 18, 11, .68) 100%);
    opacity: 0;
    transition: opacity 260ms ease;
}

body.pa12-theme .pa12-winner-card__image img {
    position: relative;
    z-index: 0;
    filter: saturate(.92) contrast(1.03);
    transition: transform 700ms cubic-bezier(.22, 1, .36, 1), filter 260ms ease;
}

body.pa12-theme .pa12-winner-card:hover .pa12-winner-card__image::before,
body.pa12-theme .pa12-winner-card:focus-visible .pa12-winner-card__image::before,
body.pa12-theme .pa12-winner-card:focus-within .pa12-winner-card__image::before {
    opacity: 1;
    transform: scale(1);
}

body.pa12-theme .pa12-winner-card:hover .pa12-winner-card__image::after,
body.pa12-theme .pa12-winner-card:focus-visible .pa12-winner-card__image::after,
body.pa12-theme .pa12-winner-card:focus-within .pa12-winner-card__image::after {
    opacity: 1;
}

body.pa12-theme .pa12-winner-card:hover .pa12-winner-card__image img,
body.pa12-theme .pa12-winner-card:focus-visible .pa12-winner-card__image img,
body.pa12-theme .pa12-winner-card:focus-within .pa12-winner-card__image img {
    filter: saturate(1.08) contrast(1.06);
    transform: scale(1.075);
}

body.pa12-theme .pa12-winner-card__badge {
    transition: transform 220ms ease, box-shadow 220ms ease;
}

body.pa12-theme .pa12-winner-card:hover .pa12-winner-card__badge,
body.pa12-theme .pa12-winner-card:focus-visible .pa12-winner-card__badge,
body.pa12-theme .pa12-winner-card:focus-within .pa12-winner-card__badge {
    box-shadow: 0 10px 22px rgba(23, 18, 11, .26);
    transform: translateY(-2px);
}

@media (max-width: 760px) {
    body.pa12-theme .pa12-winner-section__head {
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
    }

    body.pa12-theme .pa12-winner-section__head h3 {
        font-size: 32px;
    }

    body.pa12-theme .pa12-fee-page .pa12-page-cta {
        align-items: stretch;
        flex-direction: column;
    }
}

/* Last pass: keep the entry fee and winner section polish above legacy rules. */
body.pa12-theme .pa12-fee-page__grid {
    align-items: stretch;
    grid-auto-rows: 1fr;
}

body.pa12-theme .pa12-fee-page__grid article {
    min-height: 236px;
    height: 100%;
    padding: 28px 26px 30px;
    border-radius: 8px;
    box-shadow: 0 16px 32px rgba(23, 18, 11, .08);
}

body.pa12-theme .pa12-fee-page__grid article::before {
    height: 3px;
}

body.pa12-theme .pa12-fee-page__grid article h2 {
    max-width: 12ch;
    font-size: 28px;
}

body.pa12-theme .pa12-fee-page .pa12-page-cta {
    margin-top: 34px;
    padding: 20px 22px;
    border: 1px solid rgba(223, 148, 0, .14);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(23, 18, 11, .05);
}

body.pa12-theme .pa12-fee-collection {
    margin-top: 76px;
    padding-top: 6px;
}

body.pa12-theme .pa12-winner-sections {
    display: grid;
    gap: 70px;
}

body.pa12-theme .pa12-winner-section {
    padding-top: 34px;
    border-top: 1px solid rgba(223, 148, 0, .16);
}

body.pa12-theme .pa12-winner-section:first-child {
    padding-top: 0;
    border-top: 0;
}

body.pa12-theme .pa12-winner-section[hidden] {
    display: none !important;
}

body.pa12-theme .pa12-winner-section__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, .72fr);
    align-items: end;
    gap: 42px;
    margin-bottom: 24px;
}

body.pa12-theme .pa12-winner-section__head .pa12-kicker {
    margin: 0 0 8px;
    color: #df9400;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

body.pa12-theme .pa12-winner-section__head h3 {
    margin: 0;
    color: #17120b;
    font-size: 42px;
    line-height: 1;
    text-align: left;
}

body.pa12-theme .pa12-winner-section__head > p {
    max-width: 28rem;
    margin: 0 0 2px;
    color: #6c665d;
    font-size: 14px;
    line-height: 1.65;
    text-align: left;
}

body.pa12-theme .pa12-winner-card__image {
    isolation: isolate;
}

body.pa12-theme .pa12-winner-card__image::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, .72);
    opacity: 0;
    transform: scale(.96);
    transition: opacity 260ms ease, transform 520ms cubic-bezier(.22, 1, .36, 1);
    pointer-events: none;
}

body.pa12-theme .pa12-winner-card__image::after {
    inset: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(23, 18, 11, .03) 25%, rgba(23, 18, 11, .68) 100%);
    opacity: 0;
    transition: opacity 260ms ease;
}

body.pa12-theme .pa12-winner-card__image img {
    position: relative;
    z-index: 0;
    filter: saturate(.92) contrast(1.03);
    transition: transform 700ms cubic-bezier(.22, 1, .36, 1), filter 260ms ease;
}

body.pa12-theme .pa12-winner-card:hover .pa12-winner-card__image::before,
body.pa12-theme .pa12-winner-card:focus-visible .pa12-winner-card__image::before,
body.pa12-theme .pa12-winner-card:focus-within .pa12-winner-card__image::before {
    opacity: 1;
    transform: scale(1);
}

body.pa12-theme .pa12-winner-card:hover .pa12-winner-card__image::after,
body.pa12-theme .pa12-winner-card:focus-visible .pa12-winner-card__image::after,
body.pa12-theme .pa12-winner-card:focus-within .pa12-winner-card__image::after {
    opacity: 1;
}

body.pa12-theme .pa12-winner-card:hover .pa12-winner-card__image img,
body.pa12-theme .pa12-winner-card:focus-visible .pa12-winner-card__image img,
body.pa12-theme .pa12-winner-card:focus-within .pa12-winner-card__image img {
    filter: saturate(1.08) contrast(1.06);
    transform: scale(1.075);
}

body.pa12-theme .pa12-winner-card__badge {
    transition: transform 220ms ease, box-shadow 220ms ease;
}

body.pa12-theme .pa12-winner-card:hover .pa12-winner-card__badge,
body.pa12-theme .pa12-winner-card:focus-visible .pa12-winner-card__badge,
body.pa12-theme .pa12-winner-card:focus-within .pa12-winner-card__badge {
    box-shadow: 0 10px 22px rgba(23, 18, 11, .26);
    transform: translateY(-2px);
}

@media (max-width: 760px) {
    body.pa12-theme .pa12-winner-section__head {
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
    }

    body.pa12-theme .pa12-winner-section__head h3 {
        font-size: 32px;
    }

    body.pa12-theme .pa12-fee-page .pa12-page-cta {
        align-items: stretch;
        flex-direction: column;
    }
}

/* Final entry fee and winners gallery polish. */
body.pa12-theme .pa12-fee-page__grid {
    align-items: stretch;
    grid-auto-rows: 1fr;
}

body.pa12-theme .pa12-fee-page__grid article {
    min-height: 236px;
    height: 100%;
    padding: 28px 26px 30px;
    border-radius: 8px;
    box-shadow: 0 16px 32px rgba(23, 18, 11, .08);
}

body.pa12-theme .pa12-fee-page__grid article::before {
    height: 3px;
}

body.pa12-theme .pa12-fee-page__grid article h2 {
    max-width: 12ch;
    font-size: 28px;
}

body.pa12-theme .pa12-fee-page .pa12-page-cta {
    margin-top: 34px;
    padding: 20px 22px;
    border: 1px solid rgba(223, 148, 0, .14);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(23, 18, 11, .05);
}

body.pa12-theme .pa12-fee-collection {
    margin-top: 76px;
    padding-top: 6px;
}

body.pa12-theme .pa12-winner-sections {
    display: grid;
    gap: 70px;
}

body.pa12-theme .pa12-winner-section {
    padding-top: 34px;
    border-top: 1px solid rgba(223, 148, 0, .16);
}

body.pa12-theme .pa12-winner-section:first-child {
    padding-top: 0;
    border-top: 0;
}

body.pa12-theme .pa12-winner-section[hidden] {
    display: none !important;
}

body.pa12-theme .pa12-winner-section__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, .72fr);
    align-items: end;
    gap: 42px;
    margin-bottom: 24px;
}

body.pa12-theme .pa12-winner-section__head .pa12-kicker {
    margin: 0 0 8px;
    color: #df9400;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

body.pa12-theme .pa12-winner-section__head h3 {
    margin: 0;
    color: #17120b;
    font-size: 42px;
    line-height: 1;
    text-align: left;
}

body.pa12-theme .pa12-winner-section__head > p {
    max-width: 28rem;
    margin: 0 0 2px;
    color: #6c665d;
    font-size: 14px;
    line-height: 1.65;
    text-align: left;
}

body.pa12-theme .pa12-winner-card__image {
    isolation: isolate;
}

body.pa12-theme .pa12-winner-card__image::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, .72);
    opacity: 0;
    transform: scale(.96);
    transition: opacity 260ms ease, transform 520ms cubic-bezier(.22, 1, .36, 1);
    pointer-events: none;
}

body.pa12-theme .pa12-winner-card__image::after {
    inset: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(23, 18, 11, .03) 25%, rgba(23, 18, 11, .68) 100%);
    opacity: 0;
    transition: opacity 260ms ease;
}

body.pa12-theme .pa12-winner-card__image img {
    position: relative;
    z-index: 0;
    filter: saturate(.92) contrast(1.03);
    transition: transform 700ms cubic-bezier(.22, 1, .36, 1), filter 260ms ease;
}

body.pa12-theme .pa12-winner-card:hover .pa12-winner-card__image::before,
body.pa12-theme .pa12-winner-card:focus-visible .pa12-winner-card__image::before,
body.pa12-theme .pa12-winner-card:focus-within .pa12-winner-card__image::before {
    opacity: 1;
    transform: scale(1);
}

body.pa12-theme .pa12-winner-card:hover .pa12-winner-card__image::after,
body.pa12-theme .pa12-winner-card:focus-visible .pa12-winner-card__image::after,
body.pa12-theme .pa12-winner-card:focus-within .pa12-winner-card__image::after {
    opacity: 1;
}

body.pa12-theme .pa12-winner-card:hover .pa12-winner-card__image img,
body.pa12-theme .pa12-winner-card:focus-visible .pa12-winner-card__image img,
body.pa12-theme .pa12-winner-card:focus-within .pa12-winner-card__image img {
    filter: saturate(1.08) contrast(1.06);
    transform: scale(1.075);
}

body.pa12-theme .pa12-winner-card__badge {
    transition: transform 220ms ease, box-shadow 220ms ease;
}

body.pa12-theme .pa12-winner-card:hover .pa12-winner-card__badge,
body.pa12-theme .pa12-winner-card:focus-visible .pa12-winner-card__badge,
body.pa12-theme .pa12-winner-card:focus-within .pa12-winner-card__badge {
    box-shadow: 0 10px 22px rgba(23, 18, 11, .26);
    transform: translateY(-2px);
}

@media (max-width: 760px) {
    body.pa12-theme .pa12-winner-section__head {
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
    }

    body.pa12-theme .pa12-winner-section__head h3 {
        font-size: 32px;
    }

    body.pa12-theme .pa12-fee-page .pa12-page-cta {
        align-items: stretch;
        flex-direction: column;
    }
}

/* Interview page hierarchy and equal-height editorial cards. */
body.pa12-theme .pa12-interviews-page .pa12-inner-hero__grid {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    justify-items: start;
    gap: 10px;
    text-align: left;
}

body.pa12-theme .pa12-interviews-page .pa12-inner-hero__grid > * {
    width: 100%;
    max-width: 820px;
    margin: 0;
    text-align: left;
}

body.pa12-theme .pa12-interviews-page .pa12-inner-hero__grid h1 {
    margin: 0;
}

body.pa12-theme .pa12-interviews-grid {
    align-items: stretch;
    grid-auto-rows: 1fr;
}

body.pa12-theme .pa12-interview-card {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    height: 100%;
}

body.pa12-theme .pa12-interview-card__body {
    min-height: 190px;
    grid-template-rows: auto 1fr auto;
}

body.pa12-theme .pa12-interview-card__body .pa12-text-link {
    align-self: end;
}

body.pa12-theme .pa12-interview-card__body time {
    display: none !important;
}

/* Keep jury cards free of decorative badges and country markers. */
body.pa12-theme .pa12-jury-card__mark {
    display: none !important;
}

body.pa12-theme .pa12-jury-card__country::before,
body.pa12-theme .pa12-jury-card > span::before {
    display: none !important;
    content: none !important;
}

/* Entry fee page cleanup. */
body.pa12-theme .pa12-fee-page__grid {
    align-items: stretch;
    grid-auto-rows: 1fr;
}

body.pa12-theme .pa12-fee-page__grid article {
    min-height: 236px;
    height: 100%;
    padding: 28px 26px 30px;
    border-radius: 8px;
    box-shadow: 0 16px 32px rgba(23, 18, 11, .08);
}

body.pa12-theme .pa12-fee-page__grid article::before {
    height: 3px;
}

body.pa12-theme .pa12-fee-page__grid article h2 {
    max-width: 12ch;
    font-size: 28px;
}

body.pa12-theme .pa12-fee-page .pa12-page-cta {
    margin-top: 34px;
    padding: 20px 22px;
    border: 1px solid rgba(223, 148, 0, .14);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(23, 18, 11, .05);
}

body.pa12-theme .pa12-fee-collection {
    margin-top: 76px;
    padding-top: 6px;
}

/* Gallery category sections and image hover treatment. */
body.pa12-theme .pa12-winner-sections {
    display: grid;
    gap: 70px;
}

body.pa12-theme .pa12-winner-section {
    padding-top: 34px;
    border-top: 1px solid rgba(223, 148, 0, .16);
}

body.pa12-theme .pa12-winner-section:first-child {
    padding-top: 0;
    border-top: 0;
}

body.pa12-theme .pa12-winner-section[hidden] {
    display: none !important;
}

body.pa12-theme .pa12-winner-section__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, .72fr);
    align-items: end;
    gap: 42px;
    margin-bottom: 24px;
}

body.pa12-theme .pa12-winner-section__head .pa12-kicker {
    margin: 0 0 8px;
    color: #df9400;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

body.pa12-theme .pa12-winner-section__head h3 {
    margin: 0;
    color: #17120b;
    font-size: 42px;
    line-height: 1;
    text-align: left;
}

body.pa12-theme .pa12-winner-section__head > p {
    max-width: 28rem;
    margin: 0 0 2px;
    color: #6c665d;
    font-size: 14px;
    line-height: 1.65;
    text-align: left;
}

body.pa12-theme .pa12-winner-card__image {
    isolation: isolate;
}

body.pa12-theme .pa12-winner-card__image::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, .72);
    opacity: 0;
    transform: scale(.96);
    transition: opacity 260ms ease, transform 520ms cubic-bezier(.22, 1, .36, 1);
    pointer-events: none;
}

body.pa12-theme .pa12-winner-card__image::after {
    inset: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(23, 18, 11, .03) 25%, rgba(23, 18, 11, .68) 100%);
    opacity: 0;
    transition: opacity 260ms ease;
}

body.pa12-theme .pa12-winner-card__image img {
    position: relative;
    z-index: 0;
    filter: saturate(.92) contrast(1.03);
    transition: transform 700ms cubic-bezier(.22, 1, .36, 1), filter 260ms ease;
}

body.pa12-theme .pa12-winner-card:hover .pa12-winner-card__image::before,
body.pa12-theme .pa12-winner-card:focus-visible .pa12-winner-card__image::before,
body.pa12-theme .pa12-winner-card:focus-within .pa12-winner-card__image::before {
    opacity: 1;
    transform: scale(1);
}

body.pa12-theme .pa12-winner-card:hover .pa12-winner-card__image::after,
body.pa12-theme .pa12-winner-card:focus-visible .pa12-winner-card__image::after,
body.pa12-theme .pa12-winner-card:focus-within .pa12-winner-card__image::after {
    opacity: 1;
}

body.pa12-theme .pa12-winner-card:hover .pa12-winner-card__image img,
body.pa12-theme .pa12-winner-card:focus-visible .pa12-winner-card__image img,
body.pa12-theme .pa12-winner-card:focus-within .pa12-winner-card__image img {
    filter: saturate(1.08) contrast(1.06);
    transform: scale(1.075);
}

body.pa12-theme .pa12-winner-card:hover .pa12-winner-card__badge,
body.pa12-theme .pa12-winner-card:focus-visible .pa12-winner-card__badge,
body.pa12-theme .pa12-winner-card:focus-within .pa12-winner-card__badge {
    box-shadow: 0 10px 22px rgba(23, 18, 11, .26);
    transform: translateY(-2px);
}

body.pa12-theme .pa12-winner-card__badge {
    transition: transform 220ms ease, box-shadow 220ms ease;
}

@media (max-width: 760px) {
    body.pa12-theme .pa12-winner-section__head {
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
    }

    body.pa12-theme .pa12-winner-section__head h3 {
        font-size: 32px;
    }

    body.pa12-theme .pa12-fee-page .pa12-page-cta {
        align-items: stretch;
        flex-direction: column;
    }
}

/* Final scale: compact editorial type, a stronger brand mark, and denser jury cards. */
.pa12-theme .pa12-brand img {
    width: 188px;
    max-height: 64px;
}

.pa12-theme .pa12-awards-hero h1 {
    max-width: 14ch;
    font-size: clamp(42px, 5.2vw, 76px);
}

.pa12-theme .pa12-section-head h2 {
    font-size: clamp(30px, 4vw, 56px);
}

.pa12-theme .pa12-split__inner h2,
.pa12-theme .pa12-page-head h1,
.pa12-theme .pa12-inner-hero__grid h1,
.pa12-theme .pa12-winners-heading :is(h1, h2) {
    font-size: clamp(32px, 4.4vw, 68px);
}

.pa12-theme .pa12-jury-grid,
.pa12-theme .pa12-jury-page__gallery .pa12-jury-grid {
    width: min(1120px, 100%);
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.pa12-theme .pa12-jury-card__body {
    min-height: 110px;
    padding: 13px 14px 16px;
}

.pa12-theme .pa12-jury-card h3 {
    font-size: clamp(14px, 1.2vw, 18px);
}

.pa12-theme .pa12-jury-card p,
.pa12-theme .pa12-jury-card span {
    font-size: 11px;
}

@media (max-width: 1180px) {
    .pa12-theme .pa12-jury-grid,
    .pa12-theme .pa12-jury-page__gallery .pa12-jury-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .pa12-theme .pa12-jury-grid,
    .pa12-theme .pa12-jury-page__gallery .pa12-jury-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .pa12-theme .pa12-brand img {
        width: 156px;
        max-height: 58px;
    }

    .pa12-theme .pa12-header,
    .pa12-theme .pa12-header__inner {
        min-height: 82px;
    }

    .pa12-theme .pa12-section .pa12-shell {
        width: calc(100% - 32px);
        margin-inline: auto;
    }

    .pa12-theme .pa12-awards-hero h1 {
        max-width: 13ch;
        font-size: clamp(34px, 9.6vw, 48px);
        line-height: .98;
    }

    .pa12-theme .pa12-section-head h2,
    .pa12-theme .pa12-split__inner h2,
    .pa12-theme .pa12-inner-hero__grid h1,
    .pa12-theme .pa12-winners-heading :is(h1, h2),
    .pa12-theme .pa12-page-head h1 {
        font-size: 27px;
        line-height: 1.08;
    }

    .pa12-theme .pa12-jury-grid,
    .pa12-theme .pa12-jury-page__gallery .pa12-jury-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
}

@media (max-width: 520px) {
    .pa12-theme .pa12-jury-grid,
    .pa12-theme .pa12-jury-page__gallery .pa12-jury-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Compact the remaining large type and keep featured metadata in one left-aligned column. */
.pa12-theme .pa12-countdown-band h2 {
    font-size: clamp(30px, 3.6vw, 48px);
}

.pa12-theme .pa12-prizes-awards .pa12-prize-grid article h3 {
    font-size: clamp(26px, 2.4vw, 38px);
    line-height: 1.04;
}

.pa12-theme .pa12-footer .pa12-footer-cta h2 {
    font-size: clamp(30px, 3.7vw, 52px);
}

@media (max-width: 760px) {
    .pa12-theme .pa12-countdown-band h2 {
        font-size: 28px;
        line-height: 1.08;
    }

    .pa12-theme .pa12-prizes-awards .pa12-prize-grid article h3 {
        font-size: 23px;
        line-height: 1.08;
    }

    .pa12-theme .pa12-footer .pa12-footer-cta h2 {
        font-size: 28px;
        line-height: 1.1;
    }

    .pa12-theme .pa12-featured-awards .pa12-section-head,
    .pa12-theme .pa12-featured-awards .pa12-section-head > *,
    .pa12-theme .pa12-feature-card > div,
    .pa12-theme .pa12-feature-card > div > span,
    .pa12-theme .pa12-feature-card > div > h3,
    .pa12-theme .pa12-feature-card > div > p {
        width: 100%;
        margin-inline: 0;
        text-align: left !important;
    }

    .pa12-theme .pa12-feature-card > div {
        padding: 20px 18px 22px;
    }

    .pa12-theme .pa12-feature-card > div > span,
    .pa12-theme .pa12-feature-card > div > h3,
    .pa12-theme .pa12-feature-card > div > p {
        display: block;
    }

    .pa12-theme .pa12-feature-card h3 {
        margin: 10px 0 8px;
        font-size: 24px;
        line-height: 1.1;
    }

    .pa12-theme .pa12-feature-card p {
        font-size: 13px;
    }
}

/* Configurable section surfaces: each homepage band has its own quiet visual rhythm. */
.pa12-theme .pa12-section-background {
    --pa12-surface-color: #fff;
    --pa12-surface-image: none;
    --pa12-surface-image-overlay: rgba(255, 255, 255, 0);
    --pa12-surface-pattern: none;
    --pa12-surface-pattern-size: auto;
    position: relative;
    background-color: var(--pa12-surface-color) !important;
    background-image:
        linear-gradient(var(--pa12-surface-image-overlay), var(--pa12-surface-image-overlay)),
        var(--pa12-surface-image),
        var(--pa12-surface-pattern) !important;
    background-position: center, center, center;
    background-repeat: no-repeat, no-repeat, repeat;
    background-size: cover, cover, var(--pa12-surface-pattern-size);
}

.pa12-theme .pa12-section-background--countdown {
    --pa12-surface-pattern: repeating-linear-gradient(90deg, transparent 0, transparent 71px, rgba(223, 148, 0, .06) 72px, rgba(223, 148, 0, .06) 73px);
    --pa12-surface-pattern-size: 72px 72px;
}

.pa12-theme .pa12-section-background--entry-fee {
    --pa12-surface-pattern: repeating-linear-gradient(135deg, transparent 0, transparent 24px, rgba(223, 148, 0, .13) 25px, transparent 26px);
    --pa12-surface-pattern-size: 34px 34px;
}

.pa12-theme .pa12-section-background--about {
    --pa12-surface-pattern: repeating-linear-gradient(0deg, transparent 0, transparent 39px, rgba(23, 18, 11, .045) 40px, transparent 41px);
    --pa12-surface-pattern-size: 100% 41px;
}

.pa12-theme .pa12-section-background--nominees {
    --pa12-surface-pattern: repeating-linear-gradient(90deg, transparent 0, transparent 99px, rgba(223, 148, 0, .085) 100px, transparent 101px);
    --pa12-surface-pattern-size: 101px 101px;
}

.pa12-theme .pa12-section-background--featured {
    --pa12-surface-pattern: repeating-linear-gradient(0deg, transparent 0, transparent 27px, rgba(198, 157, 91, .11) 28px, transparent 29px);
    --pa12-surface-pattern-size: 100% 29px;
}

.pa12-theme .pa12-section-background--categories {
    --pa12-surface-pattern: repeating-linear-gradient(135deg, transparent 0, transparent 18px, rgba(223, 148, 0, .045) 19px, transparent 20px);
    --pa12-surface-pattern-size: 28px 28px;
}

.pa12-theme .pa12-section-background--prizes {
    --pa12-surface-pattern: repeating-linear-gradient(90deg, transparent 0, transparent 47px, rgba(223, 148, 0, .07) 48px, transparent 49px);
    --pa12-surface-pattern-size: 49px 49px;
}

.pa12-theme .pa12-section-background--jury {
    --pa12-surface-pattern: repeating-linear-gradient(135deg, transparent 0, transparent 31px, rgba(23, 18, 11, .035) 32px, transparent 33px);
    --pa12-surface-pattern-size: 46px 46px;
}

.pa12-theme .pa12-section-background--top {
    --pa12-surface-pattern: repeating-linear-gradient(90deg, transparent 0, transparent 79px, rgba(223, 148, 0, .1) 80px, transparent 81px);
    --pa12-surface-pattern-size: 81px 81px;
}

.pa12-theme .pa12-section-background--top .pa12-section-head h2,
.pa12-theme .pa12-section-background--top .pa12-section-head p {
    color: #fff !important;
}

.pa12-theme .pa12-section-background--media {
    --pa12-surface-pattern: repeating-linear-gradient(0deg, transparent 0, transparent 55px, rgba(223, 148, 0, .045) 56px, transparent 57px);
    --pa12-surface-pattern-size: 100% 57px;
}

/* Refined deadline counter and the image-led collection on the Entry Fee page. */
.pa12-theme .pa12-countdown-band {
    overflow: hidden;
}

.pa12-theme .pa12-countdown-copy {
    position: relative;
    padding-left: 22px;
}

.pa12-theme .pa12-countdown-copy::before {
    content: "";
    position: absolute;
    top: 2px;
    bottom: 2px;
    left: 0;
    width: 3px;
    border-radius: 3px;
    background: linear-gradient(180deg, #df9400, #ffcb00);
}

.pa12-theme .pa12-static-countdown {
    gap: 14px;
}

.pa12-theme .pa12-countdown-unit {
    min-height: 158px;
    align-content: space-between;
    gap: 10px;
    padding: 18px 18px 16px;
    border: 1px solid rgba(223, 148, 0, .18);
    border-radius: 14px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 18px 38px rgba(23, 18, 11, .08);
    backdrop-filter: blur(8px);
    transform: translateZ(0);
}

.pa12-theme .pa12-countdown-unit::before {
    height: 3px;
    background: linear-gradient(90deg, #df9400, #ffcb00);
}

.pa12-theme .pa12-countdown-unit__label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: #6c665d;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    line-height: 1;
    text-transform: uppercase;
}

.pa12-theme .pa12-countdown-unit__label em {
    color: #df9400;
    font-size: 10px;
    font-style: normal;
    letter-spacing: .06em;
}

.pa12-theme .pa12-countdown-unit strong {
    color: #111111;
    font-size: clamp(42px, 4.2vw, 62px);
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: .9;
}

.pa12-theme .pa12-countdown-unit__rule {
    position: static;
    display: block;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    width: 100%;
    height: 1px;
    background: rgba(223, 148, 0, .14);
    box-shadow: none;
    overflow: visible;
}

.pa12-theme .pa12-countdown-unit__rule::before {
    content: none;
}

.pa12-theme .pa12-countdown-unit.is-changing strong {
    animation: pa12-countdown-tick 360ms cubic-bezier(.2, .8, .2, 1);
}

@keyframes pa12-countdown-tick {
    0% { opacity: .45; transform: translateY(5px) scale(.96); }
    60% { opacity: 1; transform: translateY(-2px) scale(1.015); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.pa12-theme .pa12-fee-collection {
    padding: 78px 0 88px;
    background-color: #fff8e8;
}

.pa12-theme .pa12-fee-collection__head {
    display: grid;
    grid-template-columns: minmax(240px, .8fr) minmax(280px, 1.2fr);
    align-items: end;
    gap: 64px;
    margin-bottom: 30px;
}

.pa12-theme .pa12-fee-collection__head h2 {
    max-width: 520px;
    margin: 0;
    color: var(--pa12-ink);
    font-size: clamp(30px, 3.8vw, 52px);
    line-height: 1;
}

.pa12-theme .pa12-fee-collection__head > p {
    max-width: 530px;
    margin: 0 0 3px;
    color: var(--pa12-muted);
    font-size: 15px;
    line-height: 1.7;
}

.pa12-theme .pa12-fee-collection__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.pa12-theme .pa12-fee-collection__card {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(23, 18, 11, .1);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(23, 18, 11, .08);
}

.pa12-theme .pa12-fee-collection__card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.pa12-theme .pa12-fee-collection__card figcaption {
    display: grid;
    gap: 7px;
    min-height: 100px;
    padding: 17px 18px 18px;
}

.pa12-theme .pa12-fee-collection__card strong {
    color: var(--pa12-ink);
    font-size: 20px;
    line-height: 1.1;
}

.pa12-theme .pa12-fee-collection__card span {
    color: var(--pa12-accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pa12-theme .pa12-fee-page__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (prefers-reduced-motion: reduce) {
    .pa12-theme .pa12-countdown-unit.is-changing strong {
        animation: none;
    }
}

@media (max-width: 760px) {
    .pa12-theme .pa12-countdown-copy {
        padding-left: 16px;
    }

    .pa12-theme .pa12-countdown-unit {
        min-height: 120px;
        padding: 15px 14px 13px;
    }

    .pa12-theme .pa12-countdown-unit strong {
        font-size: 38px;
    }

    .pa12-theme .pa12-countdown-unit__label,
    .pa12-theme .pa12-countdown-unit__label em {
        font-size: 9px;
    }

    .pa12-theme .pa12-fee-collection {
        padding: 56px 0 64px;
    }

    .pa12-theme .pa12-fee-collection__head {
        display: block;
        margin-bottom: 24px;
    }

    .pa12-theme .pa12-fee-collection__head h2 {
        font-size: 30px;
        line-height: 1.08;
    }

    .pa12-theme .pa12-fee-collection__head > p {
        margin-top: 14px;
        font-size: 14px;
    }

    .pa12-theme .pa12-fee-collection__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
    }

    .pa12-theme .pa12-fee-collection__card img {
        aspect-ratio: 16 / 10;
    }

    .pa12-theme .pa12-fee-collection__card figcaption {
        min-height: 88px;
    }
}

@media (max-width: 980px) {
    .pa12-theme .pa12-fee-page__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .pa12-theme .pa12-fee-page__grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Refined hero countdown, fee block, winner gallery, and jury cards for the final layout. */
.pa12-theme .pa12-countdown-band {
    padding: 66px 0;
    border-top: 1px solid rgba(223, 148, 0, 0.12);
    border-bottom: 1px solid rgba(223, 148, 0, 0.12);
    background:
        radial-gradient(circle at 5% 10%, rgba(223, 148, 0, 0.12), transparent 35%),
        radial-gradient(circle at 95% 30%, rgba(223, 148, 0, 0.1), transparent 38%),
        #fff;
}

.pa12-theme .pa12-countdown-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(250px, .82fr) minmax(560px, 1.18fr);
    align-items: center;
    gap: 56px;
}

.pa12-theme .pa12-countdown-layout::before {
    content: "";
    position: absolute;
    inset: 0 -18px 0 auto;
    width: 10px;
    border-radius: 999px;
    background: linear-gradient(180deg, transparent 0, var(--pa12-accent) 50%, transparent 100%);
    opacity: .4;
}

.pa12-theme .pa12-countdown-copy p {
    max-width: 470px;
    margin-bottom: 0;
}

.pa12-theme .pa12-countdown-copy .pa12-kicker {
    display: inline-flex;
    padding: 0 10px;
    margin-bottom: 14px;
    background: rgba(223, 148, 0, 0.08);
}

.pa12-theme .pa12-countdown-band h2 {
    max-width: 520px;
    margin: 0 0 12px;
    color: #17120b;
    font-size: clamp(34px, 4.3vw, 58px);
}

.pa12-theme .pa12-static-countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    justify-content: stretch;
}

.pa12-theme .pa12-static-countdown span {
    position: relative;
    display: grid;
    min-height: 148px;
    align-content: center;
    gap: 8px;
    padding: 20px 16px 16px;
    border: 1px solid rgba(223, 148, 0, 0.16);
    border-radius: 12px;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(248, 246, 241, 0.8));
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(23, 18, 11, 0.08);
}

.pa12-theme .pa12-static-countdown span::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(223, 148, 0, 0.85), rgba(223, 148, 0, 0.6));
}

.pa12-theme .pa12-countdown-unit__label,
.pa12-theme .pa12-countdown-unit strong,
.pa12-theme .pa12-countdown-unit__rule {
    position: relative;
    z-index: 1;
}

.pa12-theme .pa12-countdown-unit strong {
    font-size: clamp(42px, 4.4vw, 66px);
    line-height: 1;
    letter-spacing: -0.03em;
    font-weight: 600;
}

.pa12-theme .pa12-countdown-unit__label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #6c665d;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.pa12-theme .pa12-countdown-unit__label em {
    color: var(--pa12-accent);
    font-size: 10px;
    font-style: normal;
}

.pa12-theme .pa12-countdown-unit__rule {
    height: 1px;
    background: rgba(223, 148, 0, 0.16);
}

.pa12-theme .pa12-countdown-unit__rule::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -4px;
    width: 14px;
    height: 14px;
    border: 1px solid rgba(223, 148, 0, 0.16);
    border-bottom: 0;
    border-right: 0;
    transform: translateX(-50%) rotate(45deg);
    background: #fff;
}

.pa12-theme .pa12-countdown-unit.is-changing strong {
    animation: pa12-countdown-tick 380ms cubic-bezier(.2, .8, .2, 1);
}

.pa12-theme .pa12-countdown-copy::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(180deg, transparent 0, var(--pa12-accent) 100%);
}

.pa12-theme .pa12-entry-fee {
    background:
        linear-gradient(125deg, rgba(23, 18, 11, 0.96) 10%, rgba(23, 18, 11, 0.96) 68%, #17120b 100%);
}

.pa12-theme .pa12-entry-fee__inner {
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    align-items: stretch;
}

.pa12-theme .pa12-entry-fee__copy h2 {
    text-transform: none;
    text-align: left;
}

.pa12-theme .pa12-entry-fee__copy > p:not(.pa12-kicker) {
    max-width: 440px;
    margin-bottom: 20px;
    color: #f8f6f1;
}

.pa12-theme .pa12-entry-fee__item {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    padding-block: 24px;
    gap: 4px;
}

.pa12-theme .pa12-entry-fee__item span {
    font-size: clamp(18px, 1.8vw, 30px);
    line-height: 1.18;
}

.pa12-theme .pa12-entry-fee__item span small {
    font-size: 10px;
    color: #ded8cd;
    min-width: 22px;
}

.pa12-theme .pa12-entry-fee__item strong {
    font-size: clamp(28px, 3.2vw, 44px);
    color: #fff;
    letter-spacing: 0;
    font-weight: 400;
}

.pa12-theme .pa12-fee-page {
    padding-top: 18px;
}

.pa12-theme .pa12-fee-page .pa12-shell {
    border-top: 1px solid rgba(223, 148, 0, 0.09);
    padding-top: 38px;
}

.pa12-theme .pa12-fee-page__grid {
    margin: 6px 0 0;
}

.pa12-theme .pa12-fee-page__grid article {
    display: grid;
    gap: 14px;
    min-height: 226px;
    padding: 28px 24px;
    border-radius: 14px;
    border: 1px solid rgba(223, 148, 0, .15);
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(250, 249, 248, 0.82));
    box-shadow: 0 14px 38px rgba(23, 18, 11, 0.11);
}

.pa12-theme .pa12-fee-page__grid article span {
    justify-self: start;
}

.pa12-theme .pa12-fee-page__grid article h2 {
    margin: 0;
    color: #17120b;
    font-size: clamp(24px, 2.4vw, 40px);
    line-height: 1;
}

.pa12-theme .pa12-fee-page__grid article strong {
    color: #df9400;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1;
    letter-spacing: -0.01em;
}

.pa12-theme .pa12-fee-page__grid article + article {
    border-top-color: rgba(223, 148, 0, 0.2);
}

.pa12-theme .pa12-winners-gallery .pa12-shell {
    padding-top: 2px;
}

.pa12-theme .pa12-winner-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 24px;
}

.pa12-theme .pa12-winner-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.pa12-theme .pa12-winner-card {
    min-width: 0;
    border: 1px solid rgba(223, 148, 0, 0.13);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(23, 18, 11, 0.08);
    transition: transform 280ms cubic-bezier(.22, 1, .36, 1), box-shadow 260ms ease, border-color 260ms ease;
    cursor: default;
}

.pa12-theme .pa12-winner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(223, 148, 0, 0.16);
    border-color: rgba(223, 148, 0, 0.35);
}

.pa12-theme .pa12-winner-card__image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.pa12-theme .pa12-winner-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms cubic-bezier(.22, 1, .36, 1);
}

.pa12-theme .pa12-winner-card:hover .pa12-winner-card__image img {
    transform: scale(1.05);
}

.pa12-theme .pa12-winner-card__badge {
    position: absolute;
    inset: 14px 14px auto auto;
    min-height: 22px;
    padding: 6px 9px 6px;
    border-radius: 999px;
    border: 0;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    background: rgba(23, 18, 11, 0.92);
    box-shadow: 0 10px 20px rgba(23, 18, 11, 0.22);
}

.pa12-theme .pa12-winner-card__badge--gold {
    background: linear-gradient(135deg, #ffdf8f, #c89b40);
    color: #271900;
}

.pa12-theme .pa12-winner-card__badge--silver {
    background: linear-gradient(135deg, #f8f6f1, #9d9488);
    color: #17120b;
}

.pa12-theme .pa12-winner-card__badge--bronze {
    background: linear-gradient(135deg, #efc49c, #ad6c35);
    color: #30180a;
}

.pa12-theme .pa12-winner-card__badge--blue {
    background: linear-gradient(135deg, #df9400, #df9400);
    color: #17120b;
}

.pa12-theme .pa12-winner-card__body {
    display: grid;
    align-content: start;
    padding: 18px;
    gap: 10px;
}

.pa12-theme .pa12-winner-card__body small {
    margin-bottom: 4px;
    color: var(--pa12-accent);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.pa12-theme .pa12-winner-card__body strong {
    color: #17120b;
    font-size: clamp(18px, 1.9vw, 25px);
    line-height: 1.14;
}

.pa12-theme .pa12-winner-card__body > span {
    color: var(--pa12-muted);
    font-size: 12px;
}

.pa12-theme .pa12-winner-card__body span,
.pa12-theme .pa12-jury-card__body {
    word-break: break-word;
}

.pa12-theme .pa12-winner-grid[hidden],
.pa12-theme .pa12-winner-card[hidden] {
    display: none;
}

.pa12-theme .pa12-winner-modal,
.pa12-theme .pa12-winner-modal__backdrop,
.pa12-theme .pa12-winner-modal__dialog,
.pa12-theme .pa12-winner-modal__close {
    display: none !important;
}

.pa12-theme .pa12-jury-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.pa12-theme .pa12-jury-card {
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(23, 18, 11, 0.08);
}

.pa12-theme .pa12-jury-card__body {
    min-height: 116px;
    padding: 14px 12px 16px;
}

.pa12-theme .pa12-jury-card h3 {
    font-size: clamp(15px, 1.14vw, 18px);
    line-height: 1.08;
}

.pa12-theme .pa12-jury-card p {
    font-size: 11px;
    line-height: 1.35;
}

.pa12-theme .pa12-jury-card span {
    font-size: 10px;
}

@media (max-width: 1400px) {
    .pa12-theme .pa12-jury-grid,
    .pa12-theme .pa12-winner-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .pa12-theme .pa12-countdown-layout,
    .pa12-theme .pa12-jury-grid,
    .pa12-theme .pa12-winner-grid,
    .pa12-theme .pa12-featured-grid,
    .pa12-theme .pa12-home-category-grid {
        gap: 14px;
    }

    .pa12-theme .pa12-countdown-layout {
        grid-template-columns: minmax(220px, .75fr) minmax(340px, 1.3fr);
    }
}

@media (max-width: 840px) {
    .pa12-theme .pa12-countdown-band {
        padding: 52px 0;
    }

    .pa12-theme .pa12-countdown-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pa12-theme .pa12-countdown-layout::before {
        inset: auto auto 0 14px;
        width: 2px;
        height: 40px;
        top: auto;
        margin: 0;
    }

    .pa12-theme .pa12-static-countdown {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pa12-theme .pa12-winner-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pa12-theme .pa12-jury-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pa12-theme .pa12-entry-fee__items {
        margin-top: 4px;
    }
}

@media (max-width: 560px) {
    .pa12-theme .pa12-static-countdown span {
        min-height: 120px;
        padding: 14px 14px 12px;
    }

    .pa12-theme .pa12-countdown-unit strong {
        font-size: 36px;
    }

    .pa12-theme .pa12-static-countdown {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pa12-theme .pa12-winner-grid,
    .pa12-theme .pa12-jury-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (min-width: 761px) {
    .pa12-theme .pa12-countdown-copy,
    .pa12-theme .pa12-entry-fee__copy,
    .pa12-theme .pa12-awards-hero .pa12-hero-copy,
    .pa12-theme .pa12-winners-hero__content {
        text-align: left;
    }
}

/* Final component pass: clearer hierarchy, tighter mobile rhythm, and rank-led gallery color. */
body.pa12-theme .pa12-info-page .pa12-inner-hero__grid {
    width: min(1180px, calc(100% - 32px));
    margin-right: auto;
    margin-left: auto;
}

body.pa12-theme .pa12-countdown-band {
    position: relative;
    overflow: hidden;
    padding: clamp(58px, 7vw, 86px) 0;
    border-top: 1px solid rgba(223, 148, 0, .12);
    border-bottom: 1px solid rgba(223, 148, 0, .12);
    background-color: #fff8e8;
    background-image:
        linear-gradient(rgba(223, 148, 0, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(223, 148, 0, .045) 1px, transparent 1px);
    background-size: 42px 42px;
}

body.pa12-theme .pa12-countdown-layout {
    grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
    align-items: center;
    gap: clamp(28px, 5vw, 72px);
}

body.pa12-theme .pa12-countdown-copy {
    position: relative;
    min-width: 0;
    padding-left: 22px;
}

body.pa12-theme .pa12-countdown-copy::before {
    left: 0;
    width: 3px;
    border-radius: 4px;
    background: linear-gradient(180deg, #df9400, var(--pa12-accent));
}

body.pa12-theme .pa12-countdown-copy .pa12-kicker {
    margin-bottom: 12px;
    color: var(--pa12-accent);
    background: transparent;
    letter-spacing: .16em;
}

body.pa12-theme .pa12-countdown-band h2 {
    max-width: 12ch;
    margin: 0 0 12px;
    color: #17120b;
    font-size: clamp(32px, 4vw, 54px);
    line-height: .98;
    letter-spacing: -.015em;
}

body.pa12-theme .pa12-countdown-copy > p:last-child {
    max-width: 34rem;
    margin: 0;
    color: #6c665d;
    font-size: 15px;
    line-height: 1.65;
}

body.pa12-theme .pa12-static-countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    min-width: 0;
    padding: 12px;
    border: 1px solid rgba(223, 148, 0, .14);
    border-radius: 18px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 20px 48px rgba(23, 18, 11, .1);
}

body.pa12-theme .pa12-static-countdown > .pa12-countdown-unit {
    position: relative;
    display: grid;
    min-width: 0;
    min-height: 148px;
    align-content: center;
    gap: 10px;
    padding: 18px 15px 15px;
    overflow: hidden;
    border: 1px solid rgba(223, 148, 0, .13);
    border-radius: 12px;
    background: linear-gradient(160deg, #fff 0%, #f8f7f6 100%);
    box-shadow: 0 8px 18px rgba(23, 18, 11, .06);
}

body.pa12-theme .pa12-static-countdown > .pa12-countdown-unit::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #df9400, #df9400);
}

body.pa12-theme .pa12-countdown-unit__label,
body.pa12-theme .pa12-countdown-unit strong,
body.pa12-theme .pa12-countdown-unit__rule {
    position: relative;
    z-index: 1;
}

body.pa12-theme .pa12-static-countdown > .pa12-countdown-unit > .pa12-countdown-unit__label,
body.pa12-theme .pa12-static-countdown > .pa12-countdown-unit > .pa12-countdown-unit__rule {
    min-height: 0;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

body.pa12-theme .pa12-countdown-unit__label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin: 0;
    color: #6c665d;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    line-height: 1;
    text-transform: uppercase;
}

body.pa12-theme .pa12-countdown-unit__label em {
    color: var(--pa12-accent);
    font-size: 10px;
    font-style: normal;
    letter-spacing: .04em;
}

body.pa12-theme .pa12-countdown-unit strong {
    color: #17120b;
    font-size: clamp(42px, 4.5vw, 70px);
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    line-height: .94;
    letter-spacing: -.035em;
}

body.pa12-theme .pa12-countdown-unit__rule {
    height: 1px;
    margin-top: 2px;
    background: rgba(223, 148, 0, .16);
}

body.pa12-theme .pa12-countdown-unit__rule::before,
body.pa12-theme .pa12-countdown-unit__rule::after,
body.pa12-theme .pa12-static-countdown > .pa12-countdown-unit > .pa12-countdown-unit__label::before,
body.pa12-theme .pa12-static-countdown > .pa12-countdown-unit > .pa12-countdown-unit__label::after {
    display: none;
    content: none;
}

body.pa12-theme .pa12-static-countdown.is-expired {
    border-color: rgba(223, 148, 0, .2);
}

body.pa12-theme .pa12-countdown-layout:has(.pa12-static-countdown.is-expired) .pa12-countdown-copy > p:last-child::after {
    content: " Registration is closed.";
    color: var(--pa12-accent);
    font-weight: 700;
}

body.pa12-theme .pa12-entry-fee {
    position: relative;
    overflow: hidden;
    padding: clamp(68px, 8vw, 100px) 0;
    background-color: #17120b;
    background-image:
        linear-gradient(135deg, rgba(223, 148, 0, .2), transparent 42%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 14px);
}

body.pa12-theme .pa12-entry-fee__inner {
    grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
    align-items: center;
    gap: clamp(32px, 6vw, 92px);
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

body.pa12-theme .pa12-entry-fee__copy {
    min-width: 0;
    align-items: flex-start;
}

body.pa12-theme .pa12-entry-fee__copy .pa12-kicker {
    margin-bottom: 14px;
    color: #df9400;
    letter-spacing: .16em;
}

body.pa12-theme .pa12-entry-fee__copy h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(34px, 4.6vw, 62px);
    line-height: .96;
    letter-spacing: -.02em;
}

body.pa12-theme .pa12-entry-fee__copy > p:not(.pa12-kicker) {
    max-width: 31rem;
    margin: 0 0 24px;
    color: #ded8cd;
    font-size: 15px;
    line-height: 1.7;
}

body.pa12-theme .pa12-entry-fee .pa12-button--light {
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 4px;
    background: #fff;
    color: #17120b;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .16);
}

body.pa12-theme .pa12-entry-fee__items {
    display: grid;
    min-width: 0;
    border-top: 1px solid rgba(255, 255, 255, .2);
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

body.pa12-theme .pa12-entry-fee__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    min-width: 0;
    min-height: 96px;
    padding: 18px 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
}

body.pa12-theme .pa12-entry-fee__item:last-child {
    border-bottom: 0;
}

body.pa12-theme .pa12-entry-fee__item span {
    display: flex;
    min-width: 0;
    align-items: baseline;
    gap: 14px;
    color: #faf9f7;
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 500;
    line-height: 1.2;
}

body.pa12-theme .pa12-entry-fee__item span small {
    flex: 0 0 24px;
    color: #df9400;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
}

body.pa12-theme .pa12-entry-fee__item strong {
    color: #fff;
    font-size: clamp(28px, 3.4vw, 50px);
    font-variant-numeric: tabular-nums;
    font-weight: 300;
    line-height: 1;
    white-space: nowrap;
}

body.pa12-theme .pa12-fee-page {
    padding: clamp(56px, 7vw, 96px) 0 110px;
    background: #fffaf0;
    background-image: linear-gradient(rgba(223, 148, 0, .035) 1px, transparent 1px);
    background-size: 100% 48px;
}

body.pa12-theme .pa12-fee-page > .pa12-shell:first-child {
    border: 0;
    padding-top: 0;
}

body.pa12-theme .pa12-fee-page__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
}

body.pa12-theme .pa12-fee-page__grid article {
    position: relative;
    display: grid;
    min-height: 228px;
    align-content: space-between;
    gap: 22px;
    padding: 24px 22px 26px;
    overflow: hidden;
    border: 1px solid rgba(223, 148, 0, .14);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(23, 18, 11, .08);
}

body.pa12-theme .pa12-fee-page__grid article::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #df9400, #ffcb00);
}

body.pa12-theme .pa12-fee-page__grid article > span {
    display: inline-grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid rgba(223, 148, 0, .2);
    border-radius: 50%;
    color: var(--pa12-accent);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .06em;
}

body.pa12-theme .pa12-fee-page__grid article h2 {
    margin: 0;
    color: #17120b;
    font-size: clamp(22px, 2.2vw, 34px);
    line-height: 1.08;
}

body.pa12-theme .pa12-fee-page__grid article strong {
    color: var(--pa12-accent);
    font-size: clamp(34px, 3.6vw, 52px);
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    line-height: .95;
}

body.pa12-theme .pa12-fee-page .pa12-page-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 28px;
    padding: 24px 0 0;
    border-top: 1px solid rgba(223, 148, 0, .14);
}

body.pa12-theme .pa12-fee-page .pa12-page-cta p {
    max-width: 42rem;
    margin: 0;
    color: #6c665d;
    line-height: 1.65;
}

body.pa12-theme .pa12-fee-collection {
    margin-top: 72px;
    border-top: 1px solid rgba(223, 148, 0, .14);
}

body.pa12-theme .pa12-fee-collection__card {
    transition: transform 260ms cubic-bezier(.22, 1, .36, 1), box-shadow 260ms ease;
}

body.pa12-theme .pa12-fee-collection__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 38px rgba(23, 18, 11, .13);
}

body.pa12-theme .pa12-jury-grid,
body.pa12-theme .pa12-jury-page__gallery .pa12-jury-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

body.pa12-theme .pa12-jury-card {
    position: relative;
    border: 1px solid rgba(223, 148, 0, .16);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(23, 18, 11, .08);
}

body.pa12-theme .pa12-jury-card::before {
    height: 3px;
    background: linear-gradient(90deg, #df9400, #ffcb00);
}

body.pa12-theme .pa12-jury-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    width: 0;
    height: 0;
    border-top: 42px solid rgba(223, 148, 0, .82);
    border-left: 42px solid transparent;
    pointer-events: none;
}

body.pa12-theme .pa12-jury-card__media {
    aspect-ratio: 4 / 3;
    background: #f8f6f1;
}

body.pa12-theme .pa12-jury-card__media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(23, 18, 11, .02) 45%, rgba(23, 18, 11, .38) 100%);
    pointer-events: none;
}

body.pa12-theme .pa12-jury-card__media::after {
    right: 12px;
    bottom: 12px;
    z-index: 2;
    width: 28px;
    height: 3px;
    background: #fff;
}

body.pa12-theme .pa12-jury-card__media img {
    position: relative;
    z-index: 0;
    aspect-ratio: 4 / 3;
    filter: saturate(.9) contrast(1.02);
}

body.pa12-theme .pa12-jury-card__mark {
    top: auto;
    right: 12px;
    bottom: 12px;
    left: auto;
    z-index: 3;
    padding: 5px 7px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 3px;
    background: rgba(23, 18, 11, .7);
    font-size: 9px;
    letter-spacing: .08em;
    backdrop-filter: blur(8px);
}

body.pa12-theme .pa12-jury-card__body {
    min-height: 105px;
    gap: 5px;
    padding: 13px 13px 15px;
}

body.pa12-theme .pa12-jury-card h3 {
    color: #17120b;
    font-size: clamp(14px, 1.12vw, 17px);
    line-height: 1.1;
}

body.pa12-theme .pa12-jury-card p {
    color: #6c665d;
    font-size: 10px;
    line-height: 1.35;
}

body.pa12-theme .pa12-jury-card span {
    color: var(--pa12-accent);
    font-size: 10px;
}

body.pa12-theme .pa12-winners-gallery {
    padding: clamp(64px, 8vw, 104px) 0 120px;
    background: #faf9f8;
}

body.pa12-theme .pa12-winners-heading {
    margin-bottom: 30px;
}

body.pa12-theme .pa12-winners-heading :is(h1, h2) {
    max-width: 13ch;
    color: #17120b;
    font-size: clamp(34px, 4.8vw, 62px);
    line-height: .98;
}

body.pa12-theme .pa12-winner-filters {
    gap: 8px;
    margin-bottom: 26px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(223, 148, 0, .14);
}

body.pa12-theme .pa12-winner-filters button {
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(223, 148, 0, .16);
    border-radius: 999px;
    background: #fff;
    color: #6c665d;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .03em;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

body.pa12-theme .pa12-winner-filters button:hover,
body.pa12-theme .pa12-winner-filters button:focus-visible {
    border-color: rgba(223, 148, 0, .42);
    color: var(--pa12-accent);
    transform: translateY(-1px);
}

body.pa12-theme .pa12-winner-filters button.is-active {
    border-color: #df9400;
    background: #df9400;
    color: #fff;
}

body.pa12-theme .pa12-winner-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

body.pa12-theme .pa12-winner-card {
    --pa12-rank-color: #df9400;
    --pa12-rank-soft: #fff4da;
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(223, 148, 0, .13);
    border-top: 3px solid var(--pa12-rank-color);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(23, 18, 11, .08);
    transition: transform 260ms cubic-bezier(.22, 1, .36, 1), box-shadow 260ms ease, border-color 260ms ease;
}

body.pa12-theme .pa12-winner-card--gold { --pa12-rank-color: #c99a2e; --pa12-rank-soft: #fbf2d9; }
body.pa12-theme .pa12-winner-card--silver { --pa12-rank-color: #9d9488; --pa12-rank-soft: #f4f2ee; }
body.pa12-theme .pa12-winner-card--bronze { --pa12-rank-color: #a86132; --pa12-rank-soft: #f6e7dc; }
body.pa12-theme .pa12-winner-card--blue { --pa12-rank-color: #df9400; --pa12-rank-soft: #fff4da; }

body.pa12-theme .pa12-winner-card:hover,
body.pa12-theme .pa12-winner-card:focus-within {
    border-color: var(--pa12-rank-color);
    box-shadow: 0 20px 38px rgba(23, 18, 11, .14);
    transform: translateY(-5px);
}

body.pa12-theme .pa12-winner-card__image {
    display: block;
    aspect-ratio: 4 / 3;
    background: var(--pa12-rank-soft);
}

body.pa12-theme .pa12-winner-card__image::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 32%;
    background: linear-gradient(180deg, transparent, rgba(23, 18, 11, .38));
    pointer-events: none;
}

body.pa12-theme .pa12-winner-card__image img {
    display: block;
    filter: saturate(.94) contrast(1.03);
}

body.pa12-theme .pa12-winner-card__badge {
    top: 12px;
    right: auto;
    left: 12px;
    z-index: 2;
    min-height: 24px;
    padding: 6px 9px;
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 4px;
    background: var(--pa12-rank-color);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    box-shadow: 0 8px 18px rgba(23, 18, 11, .18);
}

body.pa12-theme .pa12-winner-card--gold .pa12-winner-card__badge { color: #241700; }
body.pa12-theme .pa12-winner-card--silver .pa12-winner-card__badge { color: #17120b; }
body.pa12-theme .pa12-winner-card--bronze .pa12-winner-card__badge { color: #2b1305; }

body.pa12-theme .pa12-winner-card__body {
    display: grid;
    align-content: start;
    gap: 7px;
    min-width: 0;
    padding: 15px 16px 17px;
    text-align: left;
}

body.pa12-theme .pa12-winner-card__body small,
body.pa12-theme .pa12-winner-card__body strong,
body.pa12-theme .pa12-winner-card__body > span {
    display: block;
    width: 100%;
    margin: 0;
    text-align: left;
}

body.pa12-theme .pa12-winner-card__body small {
    color: var(--pa12-rank-color);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    line-height: 1.25;
    text-transform: uppercase;
}

body.pa12-theme .pa12-winner-card__body strong {
    color: #17120b;
    font-size: clamp(16px, 1.55vw, 22px);
    line-height: 1.12;
}

body.pa12-theme .pa12-winner-card__body > span {
    color: #6c665d;
    font-size: 11px;
    line-height: 1.45;
}

body.pa12-theme .pa12-winner-modal,
body.pa12-theme .pa12-winner-modal__backdrop,
body.pa12-theme .pa12-winner-modal__dialog,
body.pa12-theme .pa12-winner-modal__close,
body.pa12-theme .pa12-prize-medal,
body.pa12-theme .pa12-prizes .pa12-medal,
body.pa12-theme .pa12-prize-page .pa12-medal {
    display: none !important;
}

@media (max-width: 1100px) {
    body.pa12-theme .pa12-jury-grid,
    body.pa12-theme .pa12-jury-page__gallery .pa12-jury-grid,
    body.pa12-theme .pa12-winner-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    body.pa12-theme .pa12-countdown-layout,
    body.pa12-theme .pa12-entry-fee__inner {
        grid-template-columns: 1fr;
    }

    body.pa12-theme .pa12-countdown-layout {
        gap: 30px;
    }

    body.pa12-theme .pa12-entry-fee__inner {
        gap: 38px;
    }

    body.pa12-theme .pa12-jury-grid,
    body.pa12-theme .pa12-jury-page__gallery .pa12-jury-grid,
    body.pa12-theme .pa12-winner-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    body.pa12-theme .pa12-fee-page__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    body.pa12-theme .pa12-info-page .pa12-inner-hero__grid {
        width: calc(100% - 32px);
    }

    body.pa12-theme .pa12-countdown-band {
        padding: 54px 0 60px;
    }

    body.pa12-theme .pa12-countdown-layout,
    body.pa12-theme .pa12-entry-fee__inner {
        width: calc(100% - 32px);
    }

    body.pa12-theme .pa12-countdown-copy {
        padding-left: 16px;
    }

    body.pa12-theme .pa12-countdown-band h2,
    body.pa12-theme .pa12-entry-fee__copy h2 {
        max-width: 100%;
        font-size: 32px;
        line-height: 1;
    }

    body.pa12-theme .pa12-static-countdown {
        gap: 9px;
        padding: 9px;
        border-radius: 14px;
    }

    body.pa12-theme .pa12-static-countdown > .pa12-countdown-unit {
        min-height: 112px;
        padding: 14px 12px 12px;
        border-radius: 10px;
    }

    body.pa12-theme .pa12-countdown-unit strong {
        font-size: 36px;
    }

    body.pa12-theme .pa12-countdown-unit__label,
    body.pa12-theme .pa12-countdown-unit__label em {
        font-size: 8px;
    }

    body.pa12-theme .pa12-entry-fee {
        padding: 60px 0 68px;
    }

    body.pa12-theme .pa12-entry-fee__item {
        min-height: 82px;
        gap: 10px;
    }

    body.pa12-theme .pa12-entry-fee__item span {
        gap: 9px;
        font-size: 18px;
    }

    body.pa12-theme .pa12-entry-fee__item span small {
        flex-basis: 20px;
        font-size: 9px;
    }

    body.pa12-theme .pa12-entry-fee__item strong {
        font-size: 29px;
    }

    body.pa12-theme .pa12-fee-page__grid,
    body.pa12-theme .pa12-jury-grid,
    body.pa12-theme .pa12-jury-page__gallery .pa12-jury-grid,
    body.pa12-theme .pa12-winner-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    body.pa12-theme .pa12-fee-page__grid article {
        min-height: 190px;
        gap: 15px;
        padding: 20px 16px 21px;
    }

    body.pa12-theme .pa12-fee-page__grid article h2 {
        font-size: 20px;
    }

    body.pa12-theme .pa12-fee-page__grid article strong {
        font-size: 34px;
    }

    body.pa12-theme .pa12-fee-page .pa12-page-cta {
        display: grid;
        gap: 16px;
    }

    body.pa12-theme .pa12-jury-card__body {
        min-height: 96px;
        padding: 11px 11px 13px;
    }

    body.pa12-theme .pa12-jury-card h3 {
        font-size: 14px;
    }

    body.pa12-theme .pa12-jury-card p,
    body.pa12-theme .pa12-jury-card span {
        font-size: 9px;
    }

    body.pa12-theme .pa12-winner-card__body {
        gap: 5px;
        padding: 12px 12px 14px;
    }

    body.pa12-theme .pa12-winner-card__body strong {
        font-size: 15px;
    }

    body.pa12-theme .pa12-winner-card__body > span {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    body.pa12-theme .pa12-fee-page__grid,
    body.pa12-theme .pa12-jury-grid,
    body.pa12-theme .pa12-jury-page__gallery .pa12-jury-grid,
    body.pa12-theme .pa12-winner-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    body.pa12-theme .pa12-jury-card__media,
    body.pa12-theme .pa12-jury-card__media img {
        aspect-ratio: 16 / 10;
    }

    body.pa12-theme .pa12-winner-card__image {
        aspect-ratio: 16 / 10;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.pa12-theme .pa12-jury-card,
    body.pa12-theme .pa12-winner-card,
    body.pa12-theme .pa12-fee-collection__card,
    body.pa12-theme .pa12-winner-filters button {
        animation: none;
        transform: none;
        transition: none;
    }
}

/* Jury, winner lightbox, and blog interviews final pass. */
body.pa12-theme .pa12-jury-grid,
body.pa12-theme .pa12-jury-page__gallery .pa12-jury-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

body.pa12-theme .pa12-jury-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid rgba(223, 148, 0, .14);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(223, 148, 0, .08), transparent 34%),
        linear-gradient(180deg, #fff 0%, #fff8e8 100%);
    box-shadow: 0 14px 34px rgba(23, 18, 11, .09);
    outline: 0;
    transform-origin: center bottom;
}

body.pa12-theme .pa12-jury-card::before {
    inset: 0;
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(223, 148, 0, .18), rgba(223, 148, 0, 0) 58%),
        repeating-linear-gradient(135deg, rgba(223, 148, 0, .055) 0 1px, transparent 1px 8px);
    opacity: .68;
}

body.pa12-theme .pa12-jury-card::after {
    content: "";
    position: absolute;
    inset: auto 12px 12px auto;
    z-index: 2;
    width: 30px;
    height: 30px;
    border-right: 1px solid rgba(223, 148, 0, .34);
    border-bottom: 1px solid rgba(223, 148, 0, .34);
    pointer-events: none;
}

body.pa12-theme .pa12-jury-card:hover,
body.pa12-theme .pa12-jury-card:focus-visible,
body.pa12-theme .pa12-jury-card:focus-within {
    border-color: rgba(223, 148, 0, .46);
    box-shadow: 0 22px 42px rgba(23, 18, 11, .16);
    transform: translateY(-7px);
}

body.pa12-theme .pa12-jury-card.is-lead {
    border-color: rgba(201, 154, 46, .46);
}

body.pa12-theme .pa12-jury-card__media {
    position: relative;
    aspect-ratio: 5 / 4;
    margin: 8px 8px 0;
    overflow: hidden;
    border-radius: 6px;
    background: #fff4da;
}

body.pa12-theme .pa12-jury-card__media::before {
    background: linear-gradient(180deg, transparent 45%, rgba(23, 18, 11, .62) 100%);
}

body.pa12-theme .pa12-jury-card__media::after {
    right: 10px;
    bottom: 10px;
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
}

body.pa12-theme .pa12-jury-card__media img {
    width: 100%;
    height: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    filter: saturate(.88) contrast(1.05);
    transition: transform 520ms cubic-bezier(.22, 1, .36, 1), filter 260ms ease;
}

body.pa12-theme .pa12-jury-card:hover .pa12-jury-card__media img,
body.pa12-theme .pa12-jury-card:focus-visible .pa12-jury-card__media img,
body.pa12-theme .pa12-jury-card:focus-within .pa12-jury-card__media img {
    filter: saturate(1) contrast(1.08);
    transform: scale(1.045);
}

body.pa12-theme .pa12-jury-card__mark {
    top: 10px;
    right: 10px;
    bottom: auto;
    left: auto;
    padding: 5px 8px;
    border: 1px solid rgba(255, 255, 255, .68);
    border-radius: 4px;
    background: rgba(23, 18, 11, .74);
    color: #fff;
    font-size: 8px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .08em;
    text-transform: uppercase;
}

body.pa12-theme .pa12-jury-card__body {
    position: relative;
    z-index: 1;
    min-height: 118px;
    padding: 14px 14px 16px;
    gap: 5px;
    text-align: left;
}

body.pa12-theme .pa12-jury-card__index {
    display: inline-flex;
    width: max-content;
    margin-top: 0;
    margin-bottom: 3px;
    padding: 3px 6px;
    border-radius: 4px;
    background: rgba(223, 148, 0, .09);
    color: #df9400;
    font-size: 9px;
    font-weight: 900;
    line-height: 1;
}

body.pa12-theme .pa12-jury-card__index::before {
    content: none !important;
    display: none !important;
}

body.pa12-theme .pa12-jury-card h3 {
    margin: 0;
    color: #17120b;
    font-size: clamp(13px, 1vw, 16px);
    line-height: 1.15;
}

body.pa12-theme .pa12-jury-card p {
    margin: 0;
    color: #6c665d;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.4;
}

body.pa12-theme .pa12-jury-card__country,
body.pa12-theme .pa12-jury-card > span {
    display: inline-flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
    margin-top: auto;
    padding: 5px 8px;
    border: 1px solid rgba(223, 148, 0, .14);
    border-radius: 999px;
    background: #fff;
    color: #df9400;
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
}

body.pa12-theme .pa12-winner-card {
    cursor: zoom-in;
}

body.pa12-theme .pa12-winner-card__open {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 999px;
    background: rgba(23, 18, 11, .72);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 220ms ease, transform 220ms ease;
    backdrop-filter: blur(10px);
}

body.pa12-theme .pa12-winner-card:hover .pa12-winner-card__open,
body.pa12-theme .pa12-winner-card:focus-visible .pa12-winner-card__open {
    opacity: 1;
    transform: translateY(0);
}

body.pa12-theme .pa12-winner-modal[data-winner-modal] {
    --pa12-modal-rank: #df9400;
    --pa12-modal-soft: #fff4da;
    position: fixed;
    z-index: 99999;
    inset: 0;
    display: grid !important;
    place-items: center;
    padding: 24px;
    animation: pa12-modal-fade 180ms ease both;
}

body.pa12-theme .pa12-winner-modal[data-winner-modal][hidden] {
    display: none !important;
}

body.pa12-theme .pa12-winner-modal[data-winner-modal].is-gold {
    --pa12-modal-rank: #c99a2e;
    --pa12-modal-soft: #fbf2d9;
}

body.pa12-theme .pa12-winner-modal[data-winner-modal].is-silver {
    --pa12-modal-rank: #9d9488;
    --pa12-modal-soft: #f4f2ee;
}

body.pa12-theme .pa12-winner-modal[data-winner-modal].is-bronze {
    --pa12-modal-rank: #a86132;
    --pa12-modal-soft: #f6e7dc;
}

body.pa12-theme .pa12-winner-modal[data-winner-modal].is-blue {
    --pa12-modal-rank: #df9400;
    --pa12-modal-soft: #fff4da;
}

body.pa12-theme .pa12-winner-modal[data-winner-modal] .pa12-winner-modal__backdrop {
    position: absolute;
    inset: 0;
    display: block !important;
    border: 0;
    background:
        linear-gradient(135deg, rgba(23, 18, 11, .92), rgba(23, 18, 11, .82)),
        rgba(23, 18, 11, .86);
    cursor: pointer;
}

body.pa12-theme .pa12-winner-modal[data-winner-modal] .pa12-winner-modal__dialog {
    position: relative;
    z-index: 1;
    display: grid !important;
    grid-template-columns: minmax(320px, 1.08fr) minmax(320px, .92fr);
    width: min(1080px, calc(100vw - 40px));
    max-height: calc(100vh - 48px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .36);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 34px 90px rgba(23, 18, 11, .46);
    outline: 0;
    animation: pa12-modal-rise 260ms cubic-bezier(.22, 1, .36, 1) both;
}

body.pa12-theme .pa12-winner-modal__media {
    position: relative;
    min-height: min(70vh, 620px);
    background: var(--pa12-modal-soft);
}

body.pa12-theme .pa12-winner-modal__media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 34%;
    background: linear-gradient(180deg, transparent, rgba(23, 18, 11, .38));
    pointer-events: none;
}

body.pa12-theme .pa12-winner-modal[data-winner-modal] .pa12-winner-modal__media img,
body.pa12-theme .pa12-winner-modal[data-winner-modal] .pa12-winner-modal__dialog > img {
    display: block !important;
    width: 100%;
    height: 100%;
    min-height: min(70vh, 620px);
    object-fit: cover;
}

body.pa12-theme .pa12-winner-modal[data-winner-modal] .pa12-winner-modal__content {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    min-width: 0;
    overflow: auto;
    padding: clamp(28px, 4vw, 52px);
}

body.pa12-theme .pa12-winner-modal__status {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    margin-bottom: 18px;
    padding: 8px 10px;
    border-radius: 4px;
    background: var(--pa12-modal-rank);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .08em;
    text-transform: uppercase;
}

body.pa12-theme .pa12-winner-modal.is-gold .pa12-winner-modal__status,
body.pa12-theme .pa12-winner-modal.is-silver .pa12-winner-modal__status,
body.pa12-theme .pa12-winner-modal.is-bronze .pa12-winner-modal__status {
    color: #1e1b15;
}

body.pa12-theme .pa12-winner-modal__dialog h2 {
    margin: 0 0 14px;
    color: #17120b;
    font-size: clamp(28px, 4.2vw, 50px);
    line-height: .98;
}

body.pa12-theme .pa12-winner-modal__meta {
    margin: 0 0 8px;
    color: #df9400;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.45;
}

body.pa12-theme .pa12-winner-modal__category {
    margin: 0 0 24px;
    color: #9d9488;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

body.pa12-theme .pa12-winner-modal__description {
    display: grid;
    gap: 14px;
    padding-top: 22px;
    border-top: 1px solid rgba(223, 148, 0, .14);
    color: #6c665d;
    font-size: 14px;
    line-height: 1.72;
}

body.pa12-theme .pa12-winner-modal__description p {
    margin: 0;
}

body.pa12-theme .pa12-winner-modal[data-winner-modal] .pa12-winner-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    display: inline-flex !important;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 999px;
    background: rgba(23, 18, 11, .82);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    transition: background-color 180ms ease, transform 180ms ease;
}

body.pa12-theme .pa12-winner-modal__close:hover,
body.pa12-theme .pa12-winner-modal__close:focus-visible {
    background: #df9400;
    transform: rotate(90deg);
}

body.pa12-theme .pa12-interviews-awards {
    padding: clamp(66px, 8vw, 112px) 0;
    background:
        linear-gradient(135deg, rgba(223, 148, 0, .08), transparent 38%),
        var(--pa12-surface-color, #fffaf0);
}

body.pa12-theme .pa12-interviews-head {
    margin-bottom: 28px;
}

body.pa12-theme .pa12-interviews-head h2 {
    color: #17120b;
    font-size: clamp(34px, 4.6vw, 60px);
    line-height: .98;
}

body.pa12-theme .pa12-interviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

body.pa12-theme .pa12-interview-card {
    overflow: hidden;
    border: 1px solid rgba(223, 148, 0, .13);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(23, 18, 11, .08);
    transition: transform 260ms cubic-bezier(.22, 1, .36, 1), box-shadow 260ms ease, border-color 260ms ease;
}

body.pa12-theme .pa12-interview-card:hover,
body.pa12-theme .pa12-interview-card:focus-within {
    border-color: rgba(223, 148, 0, .4);
    box-shadow: 0 24px 48px rgba(23, 18, 11, .14);
    transform: translateY(-6px);
}

body.pa12-theme .pa12-interview-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #fff4da;
}

body.pa12-theme .pa12-interview-card__media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, transparent, rgba(23, 18, 11, .48));
    pointer-events: none;
}

body.pa12-theme .pa12-interview-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.95) contrast(1.04);
    transition: transform 520ms cubic-bezier(.22, 1, .36, 1);
}

body.pa12-theme .pa12-interview-card:hover img,
body.pa12-theme .pa12-interview-card:focus-within img {
    transform: scale(1.045);
}

body.pa12-theme .pa12-interview-card__media span {
    position: absolute;
    z-index: 1;
    left: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    padding: 7px 9px;
    border-radius: 4px;
    background: #df9400;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .06em;
    text-transform: uppercase;
}

body.pa12-theme .pa12-interview-card__body {
    display: grid;
    gap: 10px;
    padding: 18px;
    text-align: left;
}

body.pa12-theme .pa12-interview-card__body time {
    color: #9d9488;
    font-size: 11px;
    font-weight: 800;
}

body.pa12-theme .pa12-interview-card__body h3 {
    margin: 0;
    color: #17120b;
    font-size: clamp(18px, 1.7vw, 24px);
    line-height: 1.13;
}

body.pa12-theme .pa12-interview-card__body h3 a {
    color: inherit;
    text-decoration: none;
}

body.pa12-theme .pa12-interview-card__body p {
    margin: 0;
    color: #6c665d;
    font-size: 13px;
    line-height: 1.62;
}

body.pa12-theme .pa12-interviews-action {
    margin-top: 24px;
}

@keyframes pa12-modal-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pa12-modal-rise {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 1100px) {
    body.pa12-theme .pa12-jury-grid,
    body.pa12-theme .pa12-jury-page__gallery .pa12-jury-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    body.pa12-theme .pa12-jury-grid,
    body.pa12-theme .pa12-jury-page__gallery .pa12-jury-grid,
    body.pa12-theme .pa12-interviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.pa12-theme .pa12-winner-modal[data-winner-modal] .pa12-winner-modal__dialog {
        grid-template-columns: 1fr;
        overflow: auto;
    }

    body.pa12-theme .pa12-winner-modal__media,
    body.pa12-theme .pa12-winner-modal[data-winner-modal] .pa12-winner-modal__media img {
        min-height: 0;
        max-height: 46vh;
    }
}

@media (max-width: 560px) {
    body.pa12-theme .pa12-jury-grid,
    body.pa12-theme .pa12-jury-page__gallery .pa12-jury-grid,
    body.pa12-theme .pa12-interviews-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    body.pa12-theme .pa12-jury-card__media,
    body.pa12-theme .pa12-jury-card__media img {
        aspect-ratio: 16 / 10;
    }

    body.pa12-theme .pa12-winner-card__open {
        opacity: 1;
        transform: none;
    }

    body.pa12-theme .pa12-winner-modal[data-winner-modal] {
        padding: 12px;
    }

    body.pa12-theme .pa12-winner-modal[data-winner-modal] .pa12-winner-modal__dialog {
        width: calc(100vw - 24px);
        max-height: calc(100vh - 24px);
        border-radius: 10px;
    }

    body.pa12-theme .pa12-winner-modal[data-winner-modal] .pa12-winner-modal__content {
        padding: 24px 18px 26px;
    }

    body.pa12-theme .pa12-winner-modal__dialog h2,
    body.pa12-theme .pa12-interviews-head h2 {
        font-size: 32px;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.pa12-theme .pa12-winner-modal[data-winner-modal],
    body.pa12-theme .pa12-winner-modal[data-winner-modal] .pa12-winner-modal__dialog,
    body.pa12-theme .pa12-interview-card,
    body.pa12-theme .pa12-interview-card__media img,
    body.pa12-theme .pa12-jury-card__media img {
        animation: none;
        transition: none;
        transform: none;
    }
}

/* Final minimal jury pass, kept last so it wins over legacy visual layers. */
body.pa12-theme .pa12-jury-card {
    padding: 0 0 14px;
    border: 1px solid rgba(23, 18, 11, .12);
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(23, 18, 11, .055);
    transform: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

body.pa12-theme .pa12-jury-card::before,
body.pa12-theme .pa12-jury-card::after,
body.pa12-theme .pa12-jury-card__media::before,
body.pa12-theme .pa12-jury-card__media::after {
    display: none;
    content: none;
}

body.pa12-theme .pa12-jury-card:hover,
body.pa12-theme .pa12-jury-card:focus-visible,
body.pa12-theme .pa12-jury-card:focus-within {
    border-color: rgba(223, 148, 0, .34);
    box-shadow: 0 14px 28px rgba(23, 18, 11, .11);
    transform: translateY(-3px);
}

body.pa12-theme .pa12-jury-card__media {
    aspect-ratio: 1 / 1;
    margin: 0;
    border-radius: 5px 5px 0 0;
    background: #fff2cf;
}

body.pa12-theme .pa12-jury-card__media img {
    aspect-ratio: 1 / 1;
    filter: grayscale(.08) saturate(.92);
    transition: transform 360ms cubic-bezier(.22, 1, .36, 1), filter 180ms ease;
}

body.pa12-theme .pa12-jury-card:hover .pa12-jury-card__media img,
body.pa12-theme .pa12-jury-card:focus-visible .pa12-jury-card__media img,
body.pa12-theme .pa12-jury-card:focus-within .pa12-jury-card__media img {
    filter: grayscale(0) saturate(1);
    transform: scale(1.025);
}

body.pa12-theme .pa12-jury-card__mark {
    top: 10px;
    right: 10px;
    margin: 0;
    padding: 4px 6px;
    border: 0;
    border-radius: 3px;
    background: rgba(255, 255, 255, .88);
    color: #17120b;
    font-size: 8px;
    letter-spacing: .05em;
    box-shadow: 0 4px 12px rgba(23, 18, 11, .1);
}

body.pa12-theme .pa12-jury-card__body {
    min-height: 0;
    padding: 13px 12px 0;
    gap: 4px;
}

body.pa12-theme .pa12-jury-card__index {
    display: block;
    width: auto;
    margin: 0 0 6px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #df9400;
    font-size: 8px;
    letter-spacing: .08em;
}

body.pa12-theme .pa12-jury-card h3 {
    color: #17120b;
    font-size: clamp(12px, .95vw, 15px);
    line-height: 1.2;
}

body.pa12-theme .pa12-jury-card p {
    color: #6f6250;
    font-size: 9px;
    line-height: 1.35;
}

body.pa12-theme .pa12-jury-card__country,
body.pa12-theme .pa12-jury-card > span {
    display: block;
    width: auto;
    max-width: none;
    margin-top: 3px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #df9400;
    font-size: 8px;
    line-height: 1.2;
    letter-spacing: .04em;
}

body.pa12-theme .pa12-interviews-page__content {
    padding: clamp(62px, 8vw, 104px) 0;
    background: var(--pa12-surface-color, #fffaf0);
}

body.pa12-theme .pa12-interviews-page .pa12-interviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.pa12-theme .pa12-interviews-page .pa12-interview-card__body h2 {
    margin: 0;
    color: #17120b;
    font-size: clamp(20px, 2.1vw, 32px);
    line-height: 1.08;
}

body.pa12-theme .pa12-interviews-page .pa12-interview-card__body h2 a {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 900px) {
    body.pa12-theme .pa12-interviews-page .pa12-interviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    body.pa12-theme .pa12-interviews-page .pa12-interviews-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    body.pa12-theme .pa12-jury-card__media,
    body.pa12-theme .pa12-jury-card__media img {
        aspect-ratio: 16 / 10;
    }
}

/* Final full-width sticky navigation and centered entry fee cards. */
body.pa12-theme.pa12-theme .pa12-header {
    position: sticky !important;
    top: 0 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    border-radius: 0 !important;
}

body.pa12-theme.pa12-theme .pa12-fee-page__grid {
    width: min(1120px, calc(100% - 32px)) !important;
    margin-inline: auto !important;
    justify-content: center !important;
}

@media (max-width: 760px) {
    body.pa12-theme.pa12-theme .pa12-fee-page__grid {
        width: calc(100% - 32px) !important;
        margin-inline: auto !important;
    }
}

/* Final header refinement: larger brand mark and a fully visible sticky bar. */
body.pa12-theme.pa12-theme .pa12-header {
    top: 0 !important;
    z-index: 9999 !important;
    isolation: isolate !important;
    background: linear-gradient(135deg, #df9400 0%, #8a5b04 100%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, .28) !important;
    box-shadow: 0 12px 30px rgba(23, 18, 11, .26) !important;
}

body.pa12-theme.pa12-theme .pa12-header__inner {
    min-height: 88px !important;
    padding: 0 24px !important;
}

body.pa12-theme.pa12-theme .pa12-brand {
    min-width: 220px !important;
}

body.pa12-theme.pa12-theme .pa12-brand img {
    width: 220px !important;
    max-width: 220px !important;
    max-height: 70px !important;
    object-fit: contain !important;
}

body.pa12-theme.pa12-theme .pa12-nav {
    gap: 10px !important;
}

body.pa12-theme.pa12-theme .pa12-menu {
    gap: 4px !important;
}

body.pa12-theme.pa12-theme .pa12-menu a {
    padding: 10px 12px !important;
    border-radius: 9px !important;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease !important;
}

body.pa12-theme.pa12-theme .pa12-menu a:hover,
body.pa12-theme.pa12-theme .pa12-menu a:focus-visible {
    background: rgba(255, 255, 255, .16) !important;
    color: #fff !important;
    transform: translateY(-1px) !important;
}

@media (max-width: 860px) {
    body.pa12-theme.pa12-theme .pa12-header__inner {
        min-height: 82px !important;
        padding: 0 18px !important;
    }

    body.pa12-theme.pa12-theme .pa12-brand {
        min-width: 0 !important;
    }

    body.pa12-theme.pa12-theme .pa12-brand img {
        width: 182px !important;
        max-width: 182px !important;
        max-height: 62px !important;
    }

    body.pa12-theme.pa12-theme .pa12-nav {
        top: 82px !important;
    }
}

/* Golden Shot editorial system inspired by NIPA, Golden Shot, and 12Awards. */
body.pa12-theme.pa12-theme {
    --gsp-gold: #df9400;
    --gsp-gold-soft: #fff2cf;
    --gsp-ink: #111111;
    --gsp-coal: #1a1712;
    --gsp-paper: #fffaf0;
    --gsp-line: rgba(17, 17, 17, .14);
}

body.pa12-theme.pa12-theme .pa12-header {
    background: #11100e !important;
    background-image: none !important;
    box-shadow: 0 14px 36px rgba(17, 17, 17, .22) !important;
}

body.pa12-theme.pa12-theme .pa12-awards-hero .pa12-hero__overlay {
    background:
        linear-gradient(90deg, rgba(10, 9, 8, .92) 0%, rgba(22, 18, 12, .7) 46%, rgba(17, 17, 17, .18) 78%),
        linear-gradient(180deg, transparent 60%, rgba(17, 17, 17, .52));
}

body.pa12-theme.pa12-theme .pa12-awards-hero .pa12-kicker {
    border-left-color: var(--gsp-gold);
    background: rgba(17, 17, 17, .52);
    color: #ffe1a1;
}

body.pa12-theme.pa12-theme .pa12-hero-intro {
    max-width: 680px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.72;
}

body.pa12-theme.pa12-theme .pa12-hero-actions .pa12-button--ghost {
    border-color: rgba(255, 255, 255, .42);
    background: rgba(255, 255, 255, .1);
    color: #fff;
    backdrop-filter: blur(10px);
}

body.pa12-theme.pa12-theme .pa12-button,
body.pa12-theme.pa12-theme .pa12-header-cta,
body.pa12-theme.pa12-theme .countdown-register-btn {
    border-color: var(--gsp-gold);
    background: var(--gsp-gold);
    color: #15110b;
    box-shadow: 0 14px 28px rgba(223, 148, 0, .24);
}

body.pa12-theme.pa12-theme .pa12-kicker,
body.pa12-theme.pa12-theme .pa12-text-link,
body.pa12-theme.pa12-theme .pa12-countdown-copy .pa12-kicker,
body.pa12-theme.pa12-theme .pa12-entry-fee__copy .pa12-kicker {
    color: var(--gsp-gold);
}

body.pa12-theme.pa12-theme .pa12-static-countdown span {
    border-color: rgba(223, 148, 0, .25);
    background: linear-gradient(160deg, #fffaf0, #fff2cf);
}

body.pa12-theme.pa12-theme .pa12-static-countdown span::before,
body.pa12-theme.pa12-theme .pa12-static-countdown-unit::before {
    background: var(--gsp-gold);
}

body.pa12-theme.pa12-theme .pa12-static-countdown strong {
    color: var(--gsp-ink);
}

body.pa12-theme.pa12-theme .pa12-entry-fee,
body.pa12-theme.pa12-theme .pa12-top-awards {
    background:
        linear-gradient(135deg, rgba(223, 148, 0, .16), transparent 34%),
        #111111 !important;
}

body.pa12-theme.pa12-theme .pa12-gsp-journey,
body.pa12-theme.pa12-theme .pa12-gsp-recognition {
    position: relative;
    overflow: hidden;
    padding: clamp(70px, 8vw, 112px) 0;
}

body.pa12-theme.pa12-theme .pa12-gsp-journey {
    background:
        linear-gradient(90deg, rgba(17, 17, 17, .06) 1px, transparent 1px) 0 0 / 96px 96px,
        linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
}

body.pa12-theme.pa12-theme .pa12-gsp-journey::before,
body.pa12-theme.pa12-theme .pa12-gsp-recognition::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 8px;
    background: var(--gsp-gold);
}

body.pa12-theme.pa12-theme .pa12-gsp-journey__grid {
    display: grid;
    grid-template-columns: 1.2fr .9fr .9fr;
    gap: 16px;
}

body.pa12-theme.pa12-theme .pa12-gsp-journey__grid article,
body.pa12-theme.pa12-theme .pa12-gsp-benefit-grid article {
    position: relative;
    min-width: 0;
    border: 1px solid var(--gsp-line);
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 20px 52px rgba(17, 17, 17, .08);
    overflow: hidden;
}

body.pa12-theme.pa12-theme .pa12-gsp-journey__grid article {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(24px, 3vw, 38px);
}

body.pa12-theme.pa12-theme .pa12-gsp-journey__grid article:first-child {
    min-height: 320px;
    background:
        linear-gradient(160deg, rgba(223, 148, 0, .24), rgba(17, 17, 17, .88)),
        #151515;
    color: #fff;
}

body.pa12-theme.pa12-theme .pa12-gsp-journey__grid article span,
body.pa12-theme.pa12-theme .pa12-gsp-benefit-grid article span {
    color: var(--gsp-gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
}

body.pa12-theme.pa12-theme .pa12-gsp-journey__grid article h3,
body.pa12-theme.pa12-theme .pa12-gsp-benefit-grid article h3 {
    margin: 14px 0 10px;
    color: inherit;
    font-size: clamp(25px, 3vw, 44px);
    line-height: .98;
    text-transform: uppercase;
}

body.pa12-theme.pa12-theme .pa12-gsp-journey__grid article p,
body.pa12-theme.pa12-theme .pa12-gsp-benefit-grid article p {
    max-width: 32rem;
    margin: 0;
    color: inherit;
    opacity: .72;
    font-size: 14px;
    line-height: 1.65;
}

body.pa12-theme.pa12-theme .pa12-gsp-recognition {
    background: #111111;
    color: #fff;
}

body.pa12-theme.pa12-theme .pa12-gsp-recognition .pa12-section-head h2 {
    color: #fff;
}

body.pa12-theme.pa12-theme .pa12-gsp-benefit-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, .16);
    border-left: 1px solid rgba(255, 255, 255, .16);
}

body.pa12-theme.pa12-theme .pa12-gsp-benefit-grid article {
    min-height: 220px;
    padding: 22px;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, .16);
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .045);
    box-shadow: none;
}

body.pa12-theme.pa12-theme .pa12-gsp-benefit-grid article:hover {
    background: rgba(223, 148, 0, .12);
}

body.pa12-theme.pa12-theme .pa12-gsp-benefit-grid article h3 {
    font-size: clamp(17px, 1.6vw, 25px);
}

body.pa12-theme.pa12-theme .pa12-jury-page .pa12-inner-hero {
    background:
        linear-gradient(135deg, rgba(223, 148, 0, .22), transparent 34%),
        #111111;
}

body.pa12-theme.pa12-theme .pa12-jury-page .pa12-inner-hero h1,
body.pa12-theme.pa12-theme .pa12-jury-page .pa12-inner-hero p {
    color: #fff;
}

body.pa12-theme.pa12-theme .pa12-jury-page .pa12-inner-hero .pa12-kicker {
    color: #ffd98b;
}

body.pa12-theme.pa12-theme .pa12-jury-grid,
body.pa12-theme.pa12-theme .pa12-jury-page__gallery .pa12-jury-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

body.pa12-theme.pa12-theme .pa12-jury-card {
    position: relative;
    min-height: 100%;
    padding: 0 !important;
    border: 1px solid rgba(17, 17, 17, .14) !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
    overflow: hidden;
    transition: transform 240ms cubic-bezier(.22, 1, .36, 1), box-shadow 240ms ease !important;
}

body.pa12-theme.pa12-theme .pa12-jury-card.is-lead {
    grid-column: span 2;
    grid-row: span 2;
    background: #111111 !important;
    color: #fff;
}

body.pa12-theme.pa12-theme .pa12-jury-card:hover,
body.pa12-theme.pa12-theme .pa12-jury-card:focus-within {
    transform: translateY(-6px) !important;
    box-shadow: 0 26px 58px rgba(17, 17, 17, .16) !important;
}

body.pa12-theme.pa12-theme .pa12-jury-card__media,
body.pa12-theme.pa12-theme .pa12-jury-card__media img {
    aspect-ratio: 4 / 5 !important;
    border-radius: 0 !important;
}

body.pa12-theme.pa12-theme .pa12-jury-card.is-lead .pa12-jury-card__media,
body.pa12-theme.pa12-theme .pa12-jury-card.is-lead .pa12-jury-card__media img {
    aspect-ratio: 16 / 12 !important;
}

body.pa12-theme.pa12-theme .pa12-jury-card__media {
    position: relative;
    background: #171717 !important;
}

body.pa12-theme.pa12-theme .pa12-jury-card__media::after {
    content: "" !important;
    display: block !important;
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, transparent, rgba(17, 17, 17, .62));
}

body.pa12-theme.pa12-theme .pa12-jury-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.85) contrast(1.06) !important;
}

body.pa12-theme.pa12-theme .pa12-jury-card:hover .pa12-jury-card__media img,
body.pa12-theme.pa12-theme .pa12-jury-card:focus-within .pa12-jury-card__media img {
    filter: saturate(1.04) contrast(1.08) !important;
    transform: scale(1.045) !important;
}

body.pa12-theme.pa12-theme .pa12-jury-card__mark {
    position: absolute;
    top: 14px !important;
    left: 14px !important;
    right: auto !important;
    z-index: 3;
    display: inline-flex !important;
    padding: 7px 9px !important;
    border: 1px solid rgba(255, 255, 255, .44) !important;
    border-radius: 0 !important;
    background: rgba(17, 17, 17, .6) !important;
    color: #fff !important;
    font-size: 9px !important;
    font-weight: 900 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

body.pa12-theme.pa12-theme .pa12-jury-card__body {
    display: grid;
    gap: 6px;
    min-height: 136px !important;
    padding: 18px !important;
}

body.pa12-theme.pa12-theme .pa12-jury-card.is-lead .pa12-jury-card__body {
    padding: 24px !important;
}

body.pa12-theme.pa12-theme .pa12-jury-card__index {
    display: inline-flex !important;
    width: max-content !important;
    margin: 0 0 6px !important;
    padding: 0 0 7px !important;
    border-bottom: 2px solid var(--gsp-gold) !important;
    background: transparent !important;
    color: var(--gsp-gold) !important;
    font-size: 11px !important;
}

body.pa12-theme.pa12-theme .pa12-jury-card h3 {
    color: inherit !important;
    font-size: clamp(18px, 1.7vw, 30px) !important;
    line-height: 1 !important;
    text-transform: uppercase;
}

body.pa12-theme.pa12-theme .pa12-jury-card:not(.is-lead) h3 {
    color: #111111 !important;
    font-size: clamp(15px, 1.1vw, 19px) !important;
}

body.pa12-theme.pa12-theme .pa12-jury-card p {
    color: inherit !important;
    opacity: .68;
    font-size: 11px !important;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

body.pa12-theme.pa12-theme .pa12-jury-card__country {
    display: inline-flex !important;
    width: max-content !important;
    max-width: 100%;
    margin-top: 6px !important;
    padding: 5px 8px !important;
    border: 1px solid rgba(223, 148, 0, .34) !important;
    border-radius: 0 !important;
    background: var(--gsp-gold-soft) !important;
    color: #6f4700 !important;
    font-size: 10px !important;
    font-weight: 900 !important;
}

@media (max-width: 1100px) {
    body.pa12-theme.pa12-theme .pa12-gsp-benefit-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    body.pa12-theme.pa12-theme .pa12-gsp-journey__grid,
    body.pa12-theme.pa12-theme .pa12-jury-grid,
    body.pa12-theme.pa12-theme .pa12-jury-page__gallery .pa12-jury-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.pa12-theme.pa12-theme .pa12-jury-card.is-lead {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 620px) {
    body.pa12-theme.pa12-theme .pa12-hero-intro {
        font-size: 14px;
    }

    body.pa12-theme.pa12-theme .pa12-gsp-journey__grid,
    body.pa12-theme.pa12-theme .pa12-gsp-benefit-grid,
    body.pa12-theme.pa12-theme .pa12-jury-grid,
    body.pa12-theme.pa12-theme .pa12-jury-page__gallery .pa12-jury-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    body.pa12-theme.pa12-theme .pa12-jury-card.is-lead {
        grid-column: span 1;
    }

    body.pa12-theme.pa12-theme .pa12-jury-card__media,
    body.pa12-theme.pa12-theme .pa12-jury-card__media img,
    body.pa12-theme.pa12-theme .pa12-jury-card.is-lead .pa12-jury-card__media,
    body.pa12-theme.pa12-theme .pa12-jury-card.is-lead .pa12-jury-card__media img {
        aspect-ratio: 16 / 11 !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.pa12-theme.pa12-theme .pa12-jury-card,
    body.pa12-theme.pa12-theme .pa12-jury-card__media img {
        transition: none !important;
        transform: none !important;
    }
}

/* Golden Shot editorial direction: closer to the 12Awards language, with sharper typography and museum-like grids. */
html,
body {
    overflow-x: clip;
}

/* Golden Shot signature move: a museum-label rail anchors the hero to real award facts. */
body.pa12-theme .pa12-awards-hero .pa12-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    grid-template-rows: 1fr auto;
    align-items: end;
    gap: 24px;
}

body.pa12-theme .pa12-awards-hero .pa12-hero-copy {
    grid-column: 1;
    max-width: 920px;
}

body.pa12-theme .pa12-hero-rail {
    grid-column: 2;
    grid-row: 1;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px 0 18px 22px;
    border-left: 1px solid rgba(255,255,255,.28);
    color: #fff;
}

body.pa12-theme .pa12-hero-rail__index,
body.pa12-theme .pa12-hero-rail__scroll,
body.pa12-theme .pa12-hero-rail__facts span {
    color: rgba(255,255,255,.68);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

body.pa12-theme .pa12-hero-rail__facts {
    display: grid;
    gap: 20px;
}

body.pa12-theme .pa12-hero-rail__facts div {
    display: grid;
    gap: 5px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,.2);
}

body.pa12-theme .pa12-hero-rail__facts strong {
    color: #fff;
    font-size: 30px;
    line-height: .95;
}

body.pa12-theme .pa12-hero-rail__scroll span {
    display: block;
    margin-top: 8px;
    color: var(--gsp-gold);
    font-size: 22px;
}

body.pa12-theme .pa12-awards-hero .pa12-slider-dots {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: end;
}
body.pa12-theme {
    --gsp-ink: #0d0c0a;
    --gsp-paper: #f4efe5;
    --gsp-paper-2: #fffaf0;
    --gsp-line: rgba(13, 12, 10, .16);
    --gsp-gold: #df9400;
    --gsp-gold-soft: #f3c15f;
    background: var(--gsp-ink);
}

body.pa12-theme .pa12-home-layout {
    background: var(--gsp-paper);
}

body.pa12-theme .pa12-shell {
    width: min(100% - 48px, 1320px);
}

body.pa12-theme .pa12-section,
body.pa12-theme .pa12-countdown-band,
body.pa12-theme .pa12-entry-fee,
body.pa12-theme .pa12-competition-timeline-band {
    padding-block: clamp(72px, 8vw, 128px);
}

body.pa12-theme .pa12-kicker {
    color: var(--gsp-gold);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

body.pa12-theme .pa12-section-head {
    align-items: end;
    gap: 32px;
    margin-bottom: clamp(30px, 4vw, 58px);
    padding-bottom: 18px;
    border-bottom: 1px solid var(--gsp-line);
}

body.pa12-theme .pa12-section-head h2,
body.pa12-theme .pa12-countdown-copy h2,
body.pa12-theme .pa12-entry-fee__copy h2 {
    max-width: 980px;
    color: var(--gsp-ink);
    font-size: clamp(42px, 7vw, 112px);
    line-height: .86;
    letter-spacing: 0;
    text-transform: uppercase;
}

body.pa12-theme .pa12-section-head p,
body.pa12-theme .pa12-countdown-copy p,
body.pa12-theme .pa12-entry-fee__copy p {
    max-width: 430px;
    color: rgba(13, 12, 10, .64);
    font-size: 15px;
    line-height: 1.65;
}

body.pa12-theme .pa12-awards-hero {
    min-height: min(840px, 92vh);
    border: 0 !important;
    background: #050505;
    overflow: hidden;
}

body.pa12-theme .pa12-awards-hero::before {
    content: "2026 winners announced  /  call for entries  /  final deadline";
    position: absolute;
    top: 112px;
    left: 0;
    right: 0;
    z-index: 4;
    padding: 10px clamp(24px, 4vw, 64px);
    border-block: 1px solid rgba(255, 255, 255, .22);
    color: rgba(255, 255, 255, .78);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-align: center;
    text-transform: uppercase;
}

body.pa12-theme .pa12-awards-hero .pa12-hero__overlay {
    background:
        linear-gradient(90deg, rgba(5, 5, 5, .88), rgba(5, 5, 5, .52) 44%, rgba(5, 5, 5, .18)),
        linear-gradient(0deg, rgba(5, 5, 5, .82), transparent 42%) !important;
}

body.pa12-theme .pa12-awards-hero .pa12-hero-slide {
    opacity: .34;
    filter: grayscale(.3) contrast(1.12) saturate(.78);
    transform: scale(1.04);
}

body.pa12-theme .pa12-awards-hero .pa12-hero__inner {
    min-height: min(840px, 92vh);
    align-items: end;
    padding-top: 180px;
    padding-bottom: clamp(58px, 8vw, 96px);
}

body.pa12-theme .pa12-hero-copy {
    max-width: 1120px;
    margin: 0;
    text-align: left;
}

body.pa12-theme .pa12-hero-copy h1 {
    max-width: 1100px;
    margin: 0;
    color: #fff;
    font-size: clamp(58px, 10vw, 164px);
    line-height: .82;
    letter-spacing: 0;
    text-transform: uppercase;
}

body.pa12-theme .pa12-hero-intro {
    max-width: 620px;
    margin-top: 24px;
    color: rgba(255, 255, 255, .78) !important;
    font-size: clamp(16px, 1.5vw, 22px);
    line-height: 1.5;
}

body.pa12-theme .pa12-hero-actions {
    justify-content: flex-start;
    gap: 12px;
    margin-top: 30px;
}

body.pa12-theme .pa12-button,
body.pa12-theme .photo-award-auth-trigger {
    min-height: 46px;
    border-radius: 0 !important;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

body.pa12-theme .pa12-button--ghost,
body.pa12-theme .pa12-hero-actions .pa12-button--ghost {
    display: inline-flex !important;
    border-color: rgba(255, 255, 255, .48) !important;
    color: #fff !important;
}

body.pa12-theme .pa12-countdown-band {
    background: #fff;
    border-bottom: 1px solid var(--gsp-line);
}

body.pa12-theme .pa12-countdown-layout {
    grid-template-columns: minmax(0, .82fr) minmax(560px, 1.18fr);
    gap: clamp(28px, 5vw, 80px);
}

body.pa12-theme .pa12-static-countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border: 1px solid var(--gsp-line);
    background: #fff;
}

body.pa12-theme .pa12-countdown-unit {
    min-height: 172px;
    padding: 18px;
    border: 0;
    border-right: 1px solid var(--gsp-line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

body.pa12-theme .pa12-countdown-unit:last-child {
    border-right: 0;
}

body.pa12-theme .pa12-countdown-unit strong {
    color: var(--gsp-ink);
    font-size: clamp(44px, 6vw, 88px);
    line-height: .9;
}

body.pa12-theme .pa12-countdown-unit small {
    color: rgba(13, 12, 10, .56);
    letter-spacing: .14em;
    text-transform: uppercase;
}

body.pa12-theme .pa12-entry-fee {
    background: var(--gsp-ink);
    color: #fff;
}

body.pa12-theme .pa12-entry-fee__inner {
    grid-template-columns: minmax(0, .72fr) minmax(560px, 1.28fr);
    gap: clamp(30px, 6vw, 92px);
    align-items: stretch;
}

body.pa12-theme .pa12-entry-fee__copy h2,
body.pa12-theme .pa12-entry-fee__copy p {
    color: #fff;
}

body.pa12-theme .pa12-entry-fee__copy p {
    color: rgba(255, 255, 255, .68);
}

body.pa12-theme .pa12-entry-fee__items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border: 1px solid rgba(255, 255, 255, .18);
}

body.pa12-theme .pa12-entry-fee__item {
    min-height: 260px;
    align-content: space-between;
    padding: 22px;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, .18);
    border-radius: 0;
    background: transparent;
}

body.pa12-theme .pa12-entry-fee__item:last-child {
    border-right: 0;
}

body.pa12-theme .pa12-entry-fee__item span {
    display: grid;
    gap: 12px;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

body.pa12-theme .pa12-entry-fee__item span small {
    color: var(--gsp-gold-soft);
}

body.pa12-theme .pa12-entry-fee__item strong {
    color: #fff;
    font-size: clamp(54px, 6vw, 92px);
    line-height: .85;
}

body.pa12-theme .pa12-gsp-journey {
    background: var(--gsp-paper);
}

body.pa12-theme .pa12-gsp-journey__grid {
    gap: 0;
    border: 1px solid var(--gsp-line);
    background: var(--gsp-paper-2);
}

body.pa12-theme .pa12-gsp-journey__grid article {
    min-height: 430px;
    padding: clamp(24px, 3vw, 42px);
    border: 0;
    border-right: 1px solid var(--gsp-line);
    border-radius: 0;
    background:
        linear-gradient(180deg, rgba(13, 12, 10, 0) 0%, rgba(13, 12, 10, .05) 100%),
        var(--gsp-paper-2);
    box-shadow: none;
}

body.pa12-theme .pa12-gsp-journey__grid article:last-child {
    border-right: 0;
}

body.pa12-theme .pa12-gsp-journey__grid article span {
    color: var(--gsp-gold);
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

body.pa12-theme .pa12-gsp-journey__grid article h3 {
    margin-top: auto;
    color: var(--gsp-ink);
    font-size: clamp(54px, 7vw, 116px);
    line-height: .82;
}

body.pa12-theme .pa12-featured-grid,
body.pa12-theme .pa12-home-category-grid {
    gap: 1px;
    background: var(--gsp-line);
    border: 1px solid var(--gsp-line);
}

body.pa12-theme .pa12-feature-card,
body.pa12-theme .pa12-home-category-card {
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff;
    box-shadow: none !important;
}

body.pa12-theme .pa12-feature-card img,
body.pa12-theme .pa12-home-category-card img {
    border-radius: 0 !important;
    filter: grayscale(.08) contrast(1.05);
}

body.pa12-theme .pa12-home-category-card h3,
body.pa12-theme .pa12-feature-card h3 {
    letter-spacing: 0;
    text-transform: uppercase;
}

body.pa12-theme .pa12-prizes-awards {
    background: #050505;
    color: #fff;
}

body.pa12-theme .pa12-prizes-awards .pa12-section-head {
    border-color: rgba(255, 255, 255, .18);
}

body.pa12-theme .pa12-prizes-awards .pa12-section-head h2 {
    color: #fff;
}

body.pa12-theme .pa12-prize-grid {
    gap: 0;
    border: 1px solid rgba(255, 255, 255, .2);
}

body.pa12-theme .pa12-prize-grid article {
    min-height: 440px;
    padding: clamp(24px, 3vw, 42px);
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, .2);
    border-radius: 0;
    background: transparent;
    color: #fff;
    box-shadow: none;
}

body.pa12-theme .pa12-prize-grid article:last-child {
    border-right: 0;
}

body.pa12-theme .pa12-prize-grid article h3 {
    max-width: 330px;
    color: #fff !important;
    font-size: clamp(42px, 5.4vw, 92px) !important;
    line-height: .86;
    text-transform: uppercase;
}

body.pa12-theme .pa12-prize-grid article li {
    border-color: rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .72);
}

body.pa12-theme .pa12-jury-awards,
body.pa12-theme .pa12-section-background--jury {
    background: #fff !important;
}

body.pa12-theme .pa12-top-awards {
    background: var(--gsp-ink) !important;
    color: #fff;
}

body.pa12-theme .pa12-top-awards .pa12-section-head {
    border-color: rgba(255, 255, 255, .18);
}

body.pa12-theme .pa12-top-awards .pa12-section-head h2,
body.pa12-theme .pa12-top-awards .pa12-section-head p {
    color: #fff !important;
}

body.pa12-theme .pa12-top-awards .pa12-photo-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .18);
}

body.pa12-theme .pa12-top-awards .pa12-photo-card {
    aspect-ratio: 4 / 5;
    border-radius: 0;
    background: #161616;
}

body.pa12-theme .pa12-top-awards .pa12-photo-card img {
    filter: grayscale(.18) contrast(1.08) saturate(.86);
}

body.pa12-theme .pa12-top-awards .pa12-photo-card h3 {
    left: 16px;
    right: 16px;
    bottom: 44px;
    color: #fff;
    font-size: 17px;
    text-transform: uppercase;
}

body.pa12-theme .pa12-top-awards .pa12-photo-card span {
    left: 16px;
    right: 16px;
    bottom: 16px;
    color: rgba(255, 255, 255, .7);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

body.pa12-theme .pa12-media-awards {
    background: #fff;
    border-top: 1px solid var(--gsp-line);
}

body.pa12-theme .pa12-media-awards h2 {
    margin-bottom: 24px;
    color: var(--gsp-ink);
    font-size: clamp(34px, 5vw, 76px);
    line-height: .9;
    text-transform: uppercase;
}

body.pa12-theme .pa12-media-grid {
    gap: 1px;
    background: var(--gsp-line);
    border: 1px solid var(--gsp-line);
}

body.pa12-theme .pa12-media-grid a {
    min-height: 132px;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff;
    box-shadow: none !important;
}

@media (max-width: 1100px) {
    body.pa12-theme .pa12-countdown-layout,
    body.pa12-theme .pa12-entry-fee__inner {
        grid-template-columns: minmax(0, 1fr);
    }

    body.pa12-theme .pa12-top-awards .pa12-photo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    body.pa12-theme .pa12-shell {
        width: min(100% - 28px, 1320px);
    }

    body.pa12-theme .pa12-awards-hero::before {
        top: 84px;
        font-size: 9px;
        line-height: 1.4;
    }

    body.pa12-theme .pa12-awards-hero .pa12-hero__inner {
        min-height: 780px;
        padding-top: 150px;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    body.pa12-theme .pa12-hero-rail {
        grid-column: 1;
        grid-row: 2;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        padding: 16px 0 0;
        border-top: 1px solid rgba(255,255,255,.25);
        border-left: 0;
    }

    body.pa12-theme .pa12-hero-rail__index,
    body.pa12-theme .pa12-hero-rail__scroll {
        display: none;
    }

    body.pa12-theme .pa12-hero-rail__facts {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    body.pa12-theme .pa12-hero-rail__facts div {
        padding-bottom: 10px;
    }

    body.pa12-theme .pa12-hero-rail__facts strong {
        font-size: 22px;
    }

    body.pa12-theme .pa12-awards-hero .pa12-slider-dots {
        grid-column: 1;
        grid-row: 3;
        justify-self: start;
    }

    body.pa12-theme .pa12-hero-copy h1 {
        font-size: clamp(48px, 15vw, 78px);
    }

    body.pa12-theme .pa12-section-head {
        display: grid;
        align-items: start;
    }

    body.pa12-theme .pa12-section-head h2,
    body.pa12-theme .pa12-countdown-copy h2,
    body.pa12-theme .pa12-entry-fee__copy h2 {
        font-size: clamp(38px, 13vw, 64px);
    }

    body.pa12-theme .pa12-static-countdown,
    body.pa12-theme .pa12-entry-fee__items,
    body.pa12-theme .pa12-gsp-journey__grid,
    body.pa12-theme .pa12-prize-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    body.pa12-theme .pa12-countdown-unit,
    body.pa12-theme .pa12-entry-fee__item,
    body.pa12-theme .pa12-gsp-journey__grid article,
    body.pa12-theme .pa12-prize-grid article {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--gsp-line);
    }

    body.pa12-theme .pa12-entry-fee__item,
    body.pa12-theme .pa12-prize-grid article {
        border-bottom-color: rgba(255, 255, 255, .18);
    }

    body.pa12-theme .pa12-top-awards .pa12-photo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Final jury override: keep the lead juror readable above legacy theme rules. */
body.pa12-theme .gsp-jury .pa12-jury-card.is-lead .pa12-jury-card__body { background:#f8f6f1 !important; color:#171717 !important; }
body.pa12-theme .gsp-jury .pa12-jury-card.is-lead h3 { color:#171717 !important; }
body.pa12-theme .gsp-jury .pa12-jury-card.is-lead p { color:#706c64 !important; }
body.pa12-theme .gsp-jury .pa12-jury-card.is-lead .pa12-jury-card__index { color:var(--gsp-gold) !important; }
body.pa12-theme .gsp-jury .pa12-jury-card:not(.is-lead) h3 { color:#171717 !important; }
body.pa12-theme .gsp-jury .pa12-jury-card:not(.is-lead) p { color:#706c64 !important; }

/* Jury roster redesign: a portrait-led editorial index instead of repeated tiles. */
body.pa12-theme .gsp-jury-roster { display:grid; grid-template-columns:minmax(310px,.78fr) minmax(0,1.22fr); gap:12px; align-items:start; }
body.pa12-theme .gsp-juror-card { position:relative; min-width:0; display:grid; grid-template-columns:145px 1fr; min-height:145px; border:1px solid #cfc9c0; background:#f8f6f1; overflow:hidden; transition:background 200ms ease, transform 200ms ease, border-color 200ms ease; }
body.pa12-theme .gsp-juror-card:not(.is-lead) { grid-column:2; }
body.pa12-theme .gsp-juror-card.is-lead { grid-column:1; grid-row:1 / span 8; display:block; min-height:700px; border-color:#1a1a19; background:#191918; color:#fff; }
body.pa12-theme .gsp-juror-card:hover, body.pa12-theme .gsp-juror-card:focus-visible { border-color:var(--gsp-gold); transform:translateX(5px); }
body.pa12-theme .gsp-juror-card.is-lead:hover, body.pa12-theme .gsp-juror-card.is-lead:focus-visible { transform:translateY(-5px); }
body.pa12-theme .gsp-juror-card__media { position:relative; overflow:hidden; background:#242424; }
body.pa12-theme .gsp-juror-card.is-lead .gsp-juror-card__media { height:500px; }
body.pa12-theme .gsp-juror-card:not(.is-lead) .gsp-juror-card__media { height:100%; }
body.pa12-theme .gsp-juror-card__media::after { content:""; position:absolute; inset:45% 0 0; background:linear-gradient(transparent,rgba(0,0,0,.72)); pointer-events:none; }
body.pa12-theme .gsp-juror-card__media img { width:100%; height:100%; object-fit:cover; filter:grayscale(1); transition:filter 450ms ease, transform 650ms ease; }
body.pa12-theme .gsp-juror-card:hover .gsp-juror-card__media img, body.pa12-theme .gsp-juror-card:focus-visible .gsp-juror-card__media img { filter:grayscale(0); transform:scale(1.06); }
body.pa12-theme .gsp-juror-card__role { position:absolute; z-index:1; top:14px; left:14px; padding:6px 8px; background:var(--gsp-gold); color:#111; font-size:9px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
body.pa12-theme .gsp-juror-card__body { position:relative; display:grid; grid-template-columns:36px 1fr; align-content:center; gap:4px 8px; padding:20px; }
body.pa12-theme .gsp-juror-card.is-lead .gsp-juror-card__body { position:absolute; right:0; bottom:0; left:0; padding:26px; background:linear-gradient(transparent,rgba(0,0,0,.95) 22%); }
body.pa12-theme .gsp-juror-card__index { grid-row:span 3; color:var(--gsp-gold); font-size:11px; font-weight:800; letter-spacing:.12em; }
body.pa12-theme .gsp-juror-card h3 { margin:0; color:#171717; font-size:clamp(20px,2.4vw,35px); font-weight:900; letter-spacing:-.055em; line-height:.88; text-transform:uppercase; }
body.pa12-theme .gsp-juror-card.is-lead h3 { color:#fff; font-size:clamp(42px,4vw,74px); }
body.pa12-theme .gsp-juror-card p { margin:7px 0 0; color:#77726a; font-size:10px; font-weight:800; letter-spacing:.11em; text-transform:uppercase; }
body.pa12-theme .gsp-juror-card.is-lead p { color:rgba(255,255,255,.68); }
body.pa12-theme .gsp-juror-card__country { grid-column:2; margin-top:9px; color:#aaa39a; font-size:10px; letter-spacing:.09em; text-transform:uppercase; }
body.pa12-theme .gsp-juror-card__arrow { position:absolute; right:18px; bottom:17px; color:var(--gsp-gold); font-size:21px; transition:transform 200ms ease; }
body.pa12-theme .gsp-juror-card:hover .gsp-juror-card__arrow { transform:translate(3px,-3px); }
@media (max-width:900px) {
    body.pa12-theme .gsp-jury-roster { grid-template-columns:1fr 1fr; }
    body.pa12-theme .gsp-juror-card.is-lead { grid-column:1 / -1; grid-row:auto; min-height:520px; }
    body.pa12-theme .gsp-juror-card.is-lead .gsp-juror-card__media { height:360px; }
    body.pa12-theme .gsp-juror-card:not(.is-lead) { grid-column:auto; }
}
@media (max-width:760px) {
    body.pa12-theme .gsp-jury-roster { display:grid; grid-template-columns:1fr; gap:8px; }
    body.pa12-theme .gsp-juror-card.is-lead, body.pa12-theme .gsp-juror-card:not(.is-lead) { grid-column:1; min-height:0; }
    body.pa12-theme .gsp-juror-card.is-lead { min-height:450px; }
    body.pa12-theme .gsp-juror-card.is-lead .gsp-juror-card__media { height:300px; }
    body.pa12-theme .gsp-juror-card:not(.is-lead) { grid-template-columns:112px 1fr; min-height:112px; }
    body.pa12-theme .gsp-juror-card:not(.is-lead) .gsp-juror-card__body { padding:15px; }
    body.pa12-theme .gsp-juror-card:not(.is-lead) h3 { font-size:23px; }
}

/* Final equal-card override: all 16 jurors share one consistent tile system. */
body.pa12-theme .gsp-jury-roster { grid-template-columns:repeat(4,minmax(0,1fr)) !important; gap:14px !important; align-items:stretch !important; }
body.pa12-theme .gsp-juror-card,
body.pa12-theme .gsp-juror-card.is-lead,
body.pa12-theme .gsp-juror-card:not(.is-lead) { grid-column:auto !important; grid-row:auto !important; display:flex !important; flex-direction:column !important; min-height:0 !important; height:100% !important; border:1px solid #cfc9c0 !important; background:#f8f6f1 !important; color:#171717 !important; transform:none !important; }
body.pa12-theme .gsp-juror-card:hover,
body.pa12-theme .gsp-juror-card:focus-visible { border-color:var(--gsp-gold) !important; transform:translateY(-4px) !important; }
body.pa12-theme .gsp-juror-card__media,
body.pa12-theme .gsp-juror-card.is-lead .gsp-juror-card__media,
body.pa12-theme .gsp-juror-card:not(.is-lead) .gsp-juror-card__media { flex:0 0 auto !important; width:100% !important; height:auto !important; aspect-ratio:4 / 4.6 !important; }
body.pa12-theme .gsp-juror-card__body,
body.pa12-theme .gsp-juror-card.is-lead .gsp-juror-card__body { position:relative !important; right:auto !important; bottom:auto !important; left:auto !important; display:grid !important; grid-template-columns:30px 1fr !important; align-content:start !important; flex:1 !important; min-height:142px !important; padding:18px 17px 22px !important; background:#f8f6f1 !important; }
body.pa12-theme .gsp-juror-card h3,
body.pa12-theme .gsp-juror-card.is-lead h3 { color:#171717 !important; font-size:clamp(18px,1.65vw,25px) !important; line-height:.95 !important; }
body.pa12-theme .gsp-juror-card p,
body.pa12-theme .gsp-juror-card.is-lead p { color:#706c64 !important; }
body.pa12-theme .gsp-juror-card__country { margin-top:auto !important; }
@media (max-width:1050px) {
    body.pa12-theme .gsp-jury-roster { grid-template-columns:repeat(3,minmax(0,1fr)) !important; }
}
@media (max-width:760px) {
    body.pa12-theme .gsp-jury-roster { grid-template-columns:repeat(2,minmax(0,1fr)) !important; gap:10px !important; }
    body.pa12-theme .gsp-juror-card__media,
    body.pa12-theme .gsp-juror-card.is-lead .gsp-juror-card__media,
    body.pa12-theme .gsp-juror-card:not(.is-lead) .gsp-juror-card__media { aspect-ratio:1 / 1.08 !important; }
}
@media (max-width:480px) {
    body.pa12-theme .gsp-jury-roster { grid-template-columns:1fr !important; }
}

/* Jury cards craft pass: restrained editorial framing, clearer metadata, and a precise hover state. */
body.pa12-theme .gsp-juror-card { border-radius:0 !important; box-shadow:0 12px 26px rgba(24,20,14,.06) !important; }
body.pa12-theme .gsp-juror-card__media { border-bottom:3px solid var(--gsp-gold); }
body.pa12-theme .gsp-juror-card__media::before { content:""; position:absolute; inset:12px; z-index:1; border:1px solid rgba(255,255,255,.3); pointer-events:none; opacity:.65; transition:inset .35s ease, opacity .35s ease; }
body.pa12-theme .gsp-juror-card__media::after { inset:55% 0 0 !important; background:linear-gradient(transparent,rgba(15,14,12,.68)) !important; }
body.pa12-theme .gsp-juror-card:hover .gsp-juror-card__media::before,
body.pa12-theme .gsp-juror-card:focus-visible .gsp-juror-card__media::before { inset:18px; opacity:1; }
body.pa12-theme .gsp-juror-card__role { top:24px !important; left:24px !important; padding:7px 9px !important; font-size:8px !important; letter-spacing:.13em !important; }
body.pa12-theme .gsp-juror-card__body { grid-template-columns:38px 1fr !important; min-height:150px !important; padding:21px 20px 24px !important; }
body.pa12-theme .gsp-juror-card__index { padding-top:2px; font-size:10px; letter-spacing:.16em; }
body.pa12-theme .gsp-juror-card h3 { max-width:12ch; font-size:clamp(17px,1.5vw,23px) !important; letter-spacing:-.02em !important; line-height:1 !important; }
body.pa12-theme .gsp-juror-card p { margin-top:9px !important; font-size:9px !important; letter-spacing:.14em !important; }
body.pa12-theme .gsp-juror-card__country { padding-top:13px; border-top:1px solid #ded8cf; font-size:9px; letter-spacing:.13em; }
body.pa12-theme .gsp-juror-card__arrow { right:20px; bottom:20px; width:25px; height:25px; display:grid; place-items:center; border:1px solid #d9b56d; font-size:15px; line-height:1; }
body.pa12-theme .gsp-juror-card:hover .gsp-juror-card__arrow { background:var(--gsp-gold); color:#171717; }
body.pa12-theme .gsp-juror-card__media img { filter:grayscale(1) contrast(1.08) !important; }
body.pa12-theme .gsp-juror-card:hover .gsp-juror-card__media img,
body.pa12-theme .gsp-juror-card:focus-visible .gsp-juror-card__media img { filter:grayscale(.15) contrast(1.03) !important; }
@media (max-width:760px) {
    body.pa12-theme .gsp-juror-card__body { min-height:136px !important; padding:16px 15px 20px !important; }
    body.pa12-theme .gsp-juror-card__role { top:16px !important; left:16px !important; }
    body.pa12-theme .gsp-juror-card__media::before { inset:9px; }
}

/* Editorial typography pass: section titles stay expressive without overpowering the content. */
body.pa12-theme .gsp-section-bar h2,
body.pa12-theme .gsp-section-intro h2,
body.pa12-theme .gsp-about h2,
body.pa12-theme .gsp-countdown h2,
body.pa12-theme .gsp-timeline h2,
body.pa12-theme .gsp-categories h2,
body.pa12-theme .gsp-prizes h2,
body.pa12-theme .gsp-news h2,
body.pa12-theme .gsp-featured h2,
body.pa12-theme .gsp-curated h2 { max-width:12ch; margin:0; font-size:clamp(30px,3.7vw,52px) !important; letter-spacing:0 !important; line-height:1 !important; }
body.pa12-theme .gsp-section-intro > p:last-child,
body.pa12-theme .gsp-about p,
body.pa12-theme .gsp-countdown p,
body.pa12-theme .gsp-season-card p,
body.pa12-theme .gsp-news-card p { max-width:58ch; font-size:14px !important; line-height:1.65 !important; letter-spacing:0 !important; }
body.pa12-theme .gsp-eyebrow { font-size:10px !important; letter-spacing:.12em !important; line-height:1.35 !important; }
body.pa12-theme .gsp-section-bar { gap:24px; align-items:flex-end; }
body.pa12-theme .gsp-section-bar > a { flex:0 0 auto; font-size:11px; letter-spacing:.08em; }
body.pa12-theme .gsp-season h2 { max-width:16ch; }
body.pa12-theme .gsp-hero__lead { max-width:34ch; font-size:clamp(16px,1.5vw,22px) !important; line-height:1.35 !important; letter-spacing:0 !important; }
body.pa12-theme .gsp-hero h1 { letter-spacing:0 !important; }
body.pa12-theme .gsp-timeline h2 { max-width:none; }
body.pa12-theme .gsp-category-list strong { font-size:16px !important; letter-spacing:0 !important; }
@media (max-width:760px) {
    body.pa12-theme .gsp-section-bar { display:flex; align-items:flex-start; flex-direction:column; gap:14px; }
    body.pa12-theme .gsp-section-bar h2,
    body.pa12-theme .gsp-section-intro h2,
    body.pa12-theme .gsp-about h2,
    body.pa12-theme .gsp-countdown h2,
    body.pa12-theme .gsp-timeline h2 { font-size:34px !important; }
}

/* Final control overrides must remain last so legacy page styles cannot reintroduce #e3a11c buttons. */
body.pa12-theme .pa12-button,
body.pa12-theme .pa12-header-cta,
body.pa12-theme .countdown-register-btn,
body.pa12-theme .pa12-page-cta .pa12-button,
body.pa12-theme .pa12-fee-page .pa12-button,
body.pa12-theme .pa12-form-actions .pa12-button {
    border:1px solid var(--gsp-gold) !important;
    border-radius:0 !important;
    background:var(--gsp-gold) !important;
    color:#17120b !important;
    box-shadow:none !important;
}
body.pa12-theme .pa12-button:hover,
body.pa12-theme .pa12-button:focus-visible,
body.pa12-theme .pa12-header-cta:hover,
body.pa12-theme .pa12-header-cta:focus-visible,
body.pa12-theme .countdown-register-btn:hover,
body.pa12-theme .countdown-register-btn:focus-visible {
    border-color:#f1c45b !important;
    background:#f1c45b !important;
    color:#17120b !important;
    transform:translateY(-2px);
}
body.pa12-theme .pa12-button--ghost,
body.pa12-theme .pa12-hero-actions .pa12-button--ghost,
body.pa12-theme .pa12-button--light {
    border:1px solid rgba(255,255,255,.58) !important;
    background:transparent !important;
    color:#fff !important;
}
body.pa12-theme .pa12-button--ghost:hover,
body.pa12-theme .pa12-button--ghost:focus-visible,
body.pa12-theme .pa12-button--light:hover,
body.pa12-theme .pa12-button--light:focus-visible {
    border-color:var(--gsp-gold) !important;
    background:var(--gsp-gold) !important;
    color:#17120b !important;
}
body.pa12-theme .pa12-winner-filters button {
    border-color:#d6cfc3 !important;
    background:#f8f6f1 !important;
    color:#171717 !important;
}
body.pa12-theme .pa12-winner-filters button:hover,
body.pa12-theme .pa12-winner-filters button:focus-visible,
body.pa12-theme .pa12-winner-filters button.is-active {
    border-color:var(--gsp-gold) !important;
    background:var(--gsp-gold) !important;
    color:#17120b !important;
}

/* Header finish: parent links use the same hover language as regular links. */
@media (min-width:861px) {
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:hover > a,
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:focus-within > a {
        border:0 !important;
        background:rgba(255,255,255,.157) !important;
        color:#fff !important;
        transform:translateY(-1px) !important;
    }
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:hover > a::after,
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:focus-within > a::after {
        display:none !important;
        content:none !important;
    }
}

/* Header auth finish: compact rectangular gold control. */
body.pa12-theme.pa12-theme .pa12-header-cta,
body.pa12-theme.pa12-theme .pa12-auth .photo-award-auth-trigger,
body.pa12-theme.pa12-theme .pa12-header .photo-award-login-register .photo-award-auth-trigger {
    min-height:42px !important;
    height:42px !important;
    padding:0 17px !important;
    border:1px solid var(--gsp-gold) !important;
    border-radius:0 !important;
    background:var(--gsp-gold) !important;
    color:#17120b !important;
    box-shadow:none !important;
    transform:none !important;
}
body.pa12-theme.pa12-theme .pa12-header-cta:hover,
body.pa12-theme.pa12-theme .pa12-header-cta:focus-visible,
body.pa12-theme.pa12-theme .pa12-auth .photo-award-auth-trigger:hover,
body.pa12-theme.pa12-theme .pa12-auth .photo-award-auth-trigger:focus-visible,
body.pa12-theme.pa12-theme .pa12-header .photo-award-login-register .photo-award-auth-trigger:hover,
body.pa12-theme.pa12-theme .pa12-header .photo-award-login-register .photo-award-auth-trigger:focus-visible {
    border-color:#f1c45b !important;
    background:#f1c45b !important;
    color:#17120b !important;
    box-shadow:none !important;
    transform:translateY(-1px) !important;
}

/* Absolute final menu parity: eliminate legacy parent-specific hover rendering. */
@media (min-width:861px) {
    body.pa12-theme.pa12-theme .pa12-menu > li > a {
        display:inline-flex !important;
        align-items:center !important;
        height:33px !important;
        min-height:33px !important;
        box-sizing:border-box !important;
        line-height:13px !important;
        vertical-align:middle !important;
    }
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children > a,
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:hover > a,
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:focus-within > a {
        display:inline-flex !important;
        height:33px !important;
        min-height:33px !important;
        line-height:13px !important;
        padding:10px 12px !important;
        line-height:13px !important;
        border:0 !important;
        border-radius:9px !important;
        background:transparent !important;
        color:#fff !important;
        transform:none !important;
    }
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:hover > a,
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children:focus-within > a {
        background:rgba(255,255,255,.16) !important;
        color:#fff !important;
        transform:translateY(-1px) !important;
    }
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children > a::before {
        display:block !important;
        content:"" !important;
        position:absolute !important;
        top:50% !important;
        right:4px !important;
        width:5px !important;
        height:5px !important;
        margin-top:-4px !important;
        border:0 !important;
        border-right:1px solid #fff !important;
        border-bottom:1px solid #fff !important;
        background:transparent !important;
        transform:rotate(45deg) !important;
    }
    body.pa12-theme.pa12-theme .pa12-menu > li.menu-item-has-children > a::after {
        display:none !important;
        content:none !important;
    }
}
