/* 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(0, 111, 230, 0.18);
    background: #fff;
    box-shadow: 0 14px 34px rgba(3, 24, 56, 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(0, 111, 230, 0.52);
    box-shadow: 0 22px 46px rgba(0, 82, 176, 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: #e4eef9;
    overflow: hidden;
}

.pa12-jury-card__media::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 38%;
    height: 5px;
    background: #071b35;
    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(0, 94, 204, 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(4, 22, 48, .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: #071b35;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.12;
}

.pa12-jury-card p {
    margin: 0;
    color: #60708a;
    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 h2,
    .pa12-theme .pa12-page-head h1 {
        width: 100%;
        margin: 0;
        color: #071b35;
        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: #607089;
        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(8, 72, 145, .11);
        border-radius: 8px;
        box-shadow: 0 14px 34px rgba(5, 35, 72, .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;
    }
}

@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 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(5, 35, 72, .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(8, 38, 65, .12);
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(7, 41, 84, .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(11, 111, 220, .34);
    box-shadow: 0 14px 28px rgba(7, 41, 84, .11);
    transform: translateY(-3px);
}

body.pa12-theme .pa12-jury-card.is-lead {
    border-color: rgba(11, 111, 220, .3);
}

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

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: #082641;
    font-size: 8px;
    letter-spacing: .05em;
    box-shadow: 0 4px 12px rgba(7, 41, 84, .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: #0b6fdc;
    font-size: 8px;
    letter-spacing: .08em;
}

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

body.pa12-theme .pa12-jury-card p {
    color: #6a7b8e;
    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: #0b6fdc;
    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, #f6fbff);
}

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: #082641;
    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 blue navigation and a more expressive entry fee page. */
body.pa12-theme.pa12-theme .pa12-fee-page {
    background-color: #eef7ff !important;
    background-image:
        linear-gradient(135deg, rgba(234, 244, 255, .98) 0%, rgba(255, 255, 255, .94) 48%, rgba(237, 247, 255, .98) 100%),
        linear-gradient(rgba(11, 111, 220, .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, #0b6fdc 0%, #0750ad 100%) !important;
    box-shadow: 0 16px 36px rgba(5, 44, 103, .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: #0750ad !important;
    box-shadow: 0 8px 18px rgba(4, 28, 70, .18) !important;
}

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

body.pa12-theme.pa12-theme .pa12-info-page > .pa12-inner-hero {
    background:
        linear-gradient(135deg, rgba(231, 243, 255, .98), rgba(255, 255, 255, .98) 54%, rgba(225, 239, 255, .96)),
        #eef6ff !important;
    border-bottom-color: rgba(11, 111, 220, .18) !important;
}

body.pa12-theme.pa12-theme .pa12-fee-page {
    background-color: #eef7ff !important;
    background-image:
        linear-gradient(135deg, rgba(234,244,255,.98) 0%, rgba(255,255,255,.94) 48%, rgba(237,247,255,.98) 100%),
        linear-gradient(rgba(11,111,220,.05) 1px, transparent 1px) !important;
    background-size: auto, 100% 52px !important;
}

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

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

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

body.pa12-theme.pa12-theme .pa12-fee-page__grid article > span {
    color: #0b6fdc !important;
    background: rgba(11, 111, 220, .08) !important;
}

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

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

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

body.pa12-theme.pa12-theme .pa12-fee-collection {
    border-top-color: rgba(11, 111, 220, .2) !important;
}

body.pa12-theme.pa12-theme .pa12-fee-collection__card {
    border-color: rgba(11, 111, 220, .16) !important;
    background: #fff !important;
    box-shadow: 0 18px 34px rgba(8, 60, 125, .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: #0750ad !important;
        box-shadow: 0 18px 34px rgba(5, 44, 103, .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(11, 111, 220, .13) !important;
    box-shadow: 0 12px 28px rgba(8, 45, 91, .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(11, 111, 220, .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(11, 111, 220, .13) !important;
    box-shadow: 0 12px 28px rgba(8, 45, 91, .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(11, 111, 220, .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: #152235 !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(8, 45, 91, .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(11, 111, 220, .14) !important;
    border-radius: 8px !important;
    background: #fff !important;
    box-shadow: 0 10px 24px rgba(8, 45, 91, .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(3, 20, 41, .03) 25%, rgba(3, 20, 41, .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(8, 45, 91, .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(11, 111, 220, .14);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(8, 45, 91, .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(11, 111, 220, .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: #0b6fdc;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

body.pa12-theme .pa12-winner-section__head h3 {
    margin: 0;
    color: #082641;
    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: #64758b;
    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(3, 20, 41, .03) 25%, rgba(3, 20, 41, .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(4, 18, 47, .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(8, 45, 91, .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(11, 111, 220, .14);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(8, 45, 91, .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(11, 111, 220, .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: #0b6fdc;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

body.pa12-theme .pa12-winner-section__head h3 {
    margin: 0;
    color: #082641;
    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: #64758b;
    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(3, 20, 41, .03) 25%, rgba(3, 20, 41, .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(4, 18, 47, .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(8, 45, 91, .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(11, 111, 220, .14);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(8, 45, 91, .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(11, 111, 220, .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: #0b6fdc;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

body.pa12-theme .pa12-winner-section__head h3 {
    margin: 0;
    color: #082641;
    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: #64758b;
    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(3, 20, 41, .03) 25%, rgba(3, 20, 41, .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(4, 18, 47, .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(8, 45, 91, .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(11, 111, 220, .14);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(8, 45, 91, .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(11, 111, 220, .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: #0b6fdc;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

body.pa12-theme .pa12-winner-section__head h3 {
    margin: 0;
    color: #082641;
    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: #64758b;
    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(3, 20, 41, .03) 25%, rgba(3, 20, 41, .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(4, 18, 47, .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 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 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(11, 111, 220, .06) 72px, rgba(11, 111, 220, .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(119, 186, 255, .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(7, 27, 53, .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(11, 111, 220, .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(11, 111, 220, .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(11, 111, 220, .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(7, 27, 53, .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(119, 186, 255, .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(11, 111, 220, .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, #0b6fdc, #77baff);
}

.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(11, 111, 220, .18);
    border-radius: 14px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 18px 38px rgba(10, 53, 104, .08);
    backdrop-filter: blur(8px);
    transform: translateZ(0);
}

.pa12-theme .pa12-countdown-unit::before {
    height: 3px;
    background: linear-gradient(90deg, #0b6fdc, #77baff);
}

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

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

.pa12-theme .pa12-countdown-unit strong {
    color: #071b35;
    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(11, 111, 220, .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: #f7fbff;
}

.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(7, 27, 53, .1);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(7, 27, 53, .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(11, 111, 220, 0.12);
    border-bottom: 1px solid rgba(11, 111, 220, 0.12);
    background:
        radial-gradient(circle at 5% 10%, rgba(119, 186, 255, 0.12), transparent 35%),
        radial-gradient(circle at 95% 30%, rgba(11, 111, 220, 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(11, 111, 220, 0.08);
}

.pa12-theme .pa12-countdown-band h2 {
    max-width: 520px;
    margin: 0 0 12px;
    color: #0d1f48;
    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(11, 111, 220, 0.16);
    border-radius: 12px;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(240, 248, 255, 0.8));
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(7, 25, 56, 0.08);
}

.pa12-theme .pa12-static-countdown span::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(11, 111, 220, 0.85), rgba(119, 186, 255, 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: #4d6383;
    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(11, 111, 220, 0.16);
}

.pa12-theme .pa12-countdown-unit__rule::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -4px;
    width: 14px;
    height: 14px;
    border: 1px solid rgba(11, 111, 220, 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(5, 27, 53, 0.96) 10%, rgba(12, 51, 97, 0.96) 68%, #0a2f68 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: #d1e0f4;
}

.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: #9cc7ff;
    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(11, 111, 220, 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(0, 111, 230, .15);
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(243, 249, 255, 0.82));
    box-shadow: 0 14px 38px rgba(17, 37, 73, 0.11);
}

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

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

.pa12-theme .pa12-fee-page__grid article strong {
    color: #0b6fdc;
    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(11, 111, 230, 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(11, 111, 220, 0.13);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(12, 28, 53, 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(11, 111, 220, 0.16);
    border-color: rgba(11, 111, 220, 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(7, 31, 73, 0.92);
    box-shadow: 0 10px 20px rgba(4, 18, 47, 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, #f2f6ff, #aab5c5);
    color: #23314f;
}

.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, #87bfff, #2d79d5);
    color: #062147;
}

.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: #0d1f48;
    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(7, 27, 54, 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(11, 111, 220, .12);
    border-bottom: 1px solid rgba(11, 111, 220, .12);
    background-color: #f7fbff;
    background-image:
        linear-gradient(rgba(11, 111, 220, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 111, 220, .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, #42a3ff, 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: #092747;
    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: #607089;
    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(11, 111, 220, .14);
    border-radius: 18px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 20px 48px rgba(7, 32, 68, .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(11, 111, 220, .13);
    border-radius: 12px;
    background: linear-gradient(160deg, #fff 0%, #f1f7fd 100%);
    box-shadow: 0 8px 18px rgba(7, 32, 68, .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, #0877d8, #66b2ff);
}

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: #536984;
    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: #092747;
    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(11, 111, 220, .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(11, 111, 220, .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: #061f3d;
    background-image:
        linear-gradient(135deg, rgba(16, 105, 197, .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: #79b9ff;
    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: #c3d8ee;
    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: #08264a;
    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: #f4f8fd;
    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: #68aff8;
    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: #f4f8fc;
    background-image: linear-gradient(rgba(11, 111, 220, .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(11, 111, 220, .14);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(8, 45, 91, .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, #0b6fdc, #72bcff);
}

body.pa12-theme .pa12-fee-page__grid article > span {
    display: inline-grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid rgba(11, 111, 220, .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: #0c2b53;
    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(11, 111, 220, .14);
}

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

body.pa12-theme .pa12-fee-collection {
    margin-top: 72px;
    border-top: 1px solid rgba(11, 111, 220, .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(8, 45, 91, .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(11, 111, 220, .16);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(8, 45, 91, .08);
}

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

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(11, 111, 220, .82);
    border-left: 42px solid transparent;
    pointer-events: none;
}

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

body.pa12-theme .pa12-jury-card__media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(3, 23, 48, .02) 45%, rgba(3, 23, 48, .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(5, 35, 72, .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: #092747;
    font-size: clamp(14px, 1.12vw, 17px);
    line-height: 1.1;
}

body.pa12-theme .pa12-jury-card p {
    color: #62738a;
    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: #f5f9fd;
}

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

body.pa12-theme .pa12-winners-heading h2 {
    max-width: 13ch;
    color: #092747;
    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(11, 111, 220, .14);
}

body.pa12-theme .pa12-winner-filters button {
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(11, 111, 220, .16);
    border-radius: 999px;
    background: #fff;
    color: #4d6383;
    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(11, 111, 220, .42);
    color: var(--pa12-accent);
    transform: translateY(-1px);
}

body.pa12-theme .pa12-winner-filters button.is-active {
    border-color: #0b6fdc;
    background: #0b6fdc;
    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: #0b6fdc;
    --pa12-rank-soft: #e5f1ff;
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(11, 111, 220, .13);
    border-top: 3px solid var(--pa12-rank-color);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(8, 45, 91, .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: #8291a4; --pa12-rank-soft: #edf1f5; }
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: #0b6fdc; --pa12-rank-soft: #e5f1ff; }

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(8, 45, 91, .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(4, 24, 52, .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(4, 18, 47, .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: #152235; }
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: #092747;
    font-size: clamp(16px, 1.55vw, 22px);
    line-height: 1.12;
}

body.pa12-theme .pa12-winner-card__body > span {
    color: #64758b;
    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(10, 91, 174, .14);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(11, 111, 220, .08), transparent 34%),
        linear-gradient(180deg, #fff 0%, #f7fbff 100%);
    box-shadow: 0 14px 34px rgba(7, 41, 84, .09);
    outline: 0;
    transform-origin: center bottom;
}

body.pa12-theme .pa12-jury-card::before {
    inset: 0;
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(11, 111, 220, .18), rgba(11, 111, 220, 0) 58%),
        repeating-linear-gradient(135deg, rgba(11, 111, 220, .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(11, 111, 220, .34);
    border-bottom: 1px solid rgba(11, 111, 220, .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(11, 111, 220, .46);
    box-shadow: 0 22px 42px rgba(7, 41, 84, .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: #eaf3ff;
}

body.pa12-theme .pa12-jury-card__media::before {
    background: linear-gradient(180deg, transparent 45%, rgba(3, 23, 48, .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(4, 24, 52, .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(11, 111, 220, .09);
    color: #0b6fdc;
    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: #082641;
    font-size: clamp(13px, 1vw, 16px);
    line-height: 1.15;
}

body.pa12-theme .pa12-jury-card p {
    margin: 0;
    color: #596b83;
    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(11, 111, 220, .14);
    border-radius: 999px;
    background: #fff;
    color: #0b6fdc;
    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(4, 24, 52, .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: #0b6fdc;
    --pa12-modal-soft: #e5f1ff;
    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: #8291a4;
    --pa12-modal-soft: #edf1f5;
}

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: #0b6fdc;
    --pa12-modal-soft: #e5f1ff;
}

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(5, 22, 43, .92), rgba(4, 37, 78, .82)),
        rgba(2, 13, 28, .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(0, 9, 23, .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(3, 18, 40, .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: #082641;
    font-size: clamp(28px, 4.2vw, 50px);
    line-height: .98;
}

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

body.pa12-theme .pa12-winner-modal__category {
    margin: 0 0 24px;
    color: #6b7d92;
    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(11, 111, 220, .14);
    color: #4d5f75;
    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(5, 27, 53, .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: #0b6fdc;
    transform: rotate(90deg);
}

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

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

body.pa12-theme .pa12-interviews-head h2 {
    color: #082641;
    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(11, 111, 220, .13);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(7, 41, 84, .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(11, 111, 220, .4);
    box-shadow: 0 24px 48px rgba(7, 41, 84, .14);
    transform: translateY(-6px);
}

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

body.pa12-theme .pa12-interview-card__media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, transparent, rgba(4, 23, 48, .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: #0b6fdc;
    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: #7b8ca2;
    font-size: 11px;
    font-weight: 800;
}

body.pa12-theme .pa12-interview-card__body h3 {
    margin: 0;
    color: #082641;
    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: #5c6f86;
    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(8, 38, 65, .12);
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(7, 41, 84, .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(11, 111, 220, .34);
    box-shadow: 0 14px 28px rgba(7, 41, 84, .11);
    transform: translateY(-3px);
}

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

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: #082641;
    font-size: 8px;
    letter-spacing: .05em;
    box-shadow: 0 4px 12px rgba(7, 41, 84, .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: #0b6fdc;
    font-size: 8px;
    letter-spacing: .08em;
}

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

body.pa12-theme .pa12-jury-card p {
    color: #6a7b8e;
    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: #0b6fdc;
    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, #f6fbff);
}

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: #082641;
    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, #0d78e8 0%, #0750ad 100%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, .28) !important;
    box-shadow: 0 12px 30px rgba(5, 44, 103, .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;
    }
}
