:root {
    --navy: #06283b;
    --navy-dark: #042334;
    --gold: #c49a5a;
    --gold-dark: #b38644;
    --cream: #f7f3ed;
    --text: #173143;
    --muted: #5f6a71;
    --border: #e7ddd0;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text);
    background: var(--white);
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
}

.container {
    width: min(100% - 90px, 1300px);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #07314a;
    box-shadow: 0 1px 18px rgba(6, 40, 59, 0.08);
}

.navbar {
    height: 69px;
    width: min(100% - 90px, 1300px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    min-width: 150px;
}

.logo-crown {
    color: var(--gold);
    font-size: 30px;
    line-height: 1;
}

.logo-text {
    display: flex;
    flex-direction: column;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.6px;
    line-height: 0.95;
    text-transform: uppercase;
}

.logo-text small {
    font-size: 10px;
    letter-spacing: 1.4px;
}

.nav-links,
.footer-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links {
    gap: 42px;
    color: #102c3d;
    font-size: 14px;
    font-weight: 600;
}

.nav-links a {
    position: relative;
    padding: 24px 0;
    color: #fff;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 18px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.2s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border-radius: 4px;
    color: var(--white);
    background: linear-gradient(135deg, #c9a064, var(--gold-dark));
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.35px;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(159, 114, 52, 0.22);
}

.nav-cta {
    min-width: 166px;
    height: 47px;
}

.button {
    min-width: 255px;
    height: 55px;
}

.nav-toggle,
.nav-button {
    display: none;
}

.hero {
    min-height: 540px;
    display: grid;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 31%, rgba(255, 255, 255, 0.2) 56%, rgba(255, 255, 255, 0) 100%),
        linear-gradient(180deg, rgba(247, 243, 237, 0.25), rgba(247, 243, 237, 0.15)),
        url("assets/hero-balaton.png") right center / auto 100% no-repeat;
}

.hero-content {
    width: min(100% - 90px, 1300px);
    margin: 0 auto;
    padding: 50px 0 62px;
}

.tiny-crown {
    width: fit-content;
    color: var(--gold);
    font-size: 29px;
    line-height: 1;
    margin-left: 153px;
    margin-bottom: 18px;
}

.hero-kicker {
    font-family: Georgia, "Times New Roman", serif;
    color: #0b2a3e;
    font-size: clamp(27px, 3vw, 36px);
    line-height: 1.1;
}

h1,
h2 {
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    line-height: 0.98;
}

h1 {
    max-width: 540px;
    margin-top: 4px;
    font-size: clamp(58px, 8vw, 98px);
    letter-spacing: -1px;
}

h2 {
    font-size: clamp(34px, 4vw, 47px);
}

.gold-lines {
    width: 194px;
    height: 1px;
    margin: 31px 0 29px;
    background: linear-gradient(90deg, var(--gold) 0 38px, transparent 38px 109px, var(--gold) 109px 154px);
}

.hero-text {
    max-width: 455px;
    margin-bottom: 24px;
    color: #223746;
    font-size: 16px;
    line-height: 1.9;
}

.section {
    padding: 76px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.07fr;
    gap: 76px;
    align-items: center;
}

.eyebrow {
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.about-copy h2 {
    margin-top: 5px;
    margin-bottom: 21px;
}

.short-line,
.center-line {
    width: 54px;
    height: 1px;
    background: var(--gold);
}

.short-line {
    margin-bottom: 24px;
}

.about-copy p:not(.eyebrow) {
    margin-bottom: 26px;
    color: #43515a;
    font-size: 15px;
}

.value-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.72);
}

.value-table article {
    min-height: 132px;
    padding: 25px 22px 20px;
    text-align: center;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.icon {
    display: block;
    color: var(--gold);
    font-size: 40px;
    line-height: 1;
    margin-bottom: 15px;
}

h3 {
    color: #162f40;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.value-table p {
    max-width: 200px;
    margin: 7px auto 0;
    color: #43515a;
    font-size: 13px;
    line-height: 1.55;
}

.opportunity {
    background:
        radial-gradient(circle at 50% 5%, rgba(196, 154, 90, 0.12), transparent 28%),
        linear-gradient(180deg, #f7f2eb, #fbf8f3);
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    margin: 4px 0 23px;
}

.center-line {
    margin: 0 auto;
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 58px;
}

.feature {
    display: grid;
    grid-template-columns: 148px 1fr;
    gap: 25px;
    align-items: center;
}

.feature img {
    width: 148px;
    height: 140px;
    object-fit: cover;
    border-radius: 72px 72px 6px 6px;
}

.feature h3 {
    margin-bottom: 12px;
    text-transform: none;
    letter-spacing: 0;
    font-size: 16px;
}

.feature p {
    color: #334854;
    font-size: 14px;
    line-height: 1.8;
}

.cta-section {
    min-height: 275px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(#283145, #283145),
        url("assets/cta-balaton.png") center / cover no-repeat;
    color: var(--white);
    text-align: center;
}

.cta-overlay {
    padding: 48px 20px;
}

.cta-overlay .tiny-crown {
    margin: 0 auto 17px;
}

.cta-section h2 {
    color: var(--white);
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.2;
}

.cta-section p {
    margin: 17px 0 25px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 18px;
    line-height: 1.6;
}

.benefits {
    padding: 48px 0 50px;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    text-align: center;
}

.benefits span {
    display: block;
    margin-bottom: 13px;
    color: var(--gold);
    font-size: 36px;
    line-height: 1;
}

.benefits h3 {
    margin-bottom: 8px;
}

.benefits p {
    color: #4f5c63;
    font-size: 13px;
    line-height: 1.65;
}

.footer {
    background: linear-gradient(135deg, #042333, #07314a);
    color: var(--white);
    padding: 31px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.logo-footer,
.logo-footer .logo-text {
    color: var(--white);
}

.footer-links {
    gap: 43px;
    font-size: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.88);
}

.footer-bottom {
    width: min(100% - 90px, 1300px);
    margin: 24px auto 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.6;
}

.footer-bottom a {
    color: #c49a5a;
    font-weight: 700;
}

.socials {
    display: flex;
    gap: 18px;
}

.socials a {
    display: grid;
    place-items: center;
    width: 25px;
    height: 25px;
    color: var(--white);
    font-size: 23px;
    font-weight: 800;
    line-height: 1;
}

@media (max-width: 1100px) {
    .navbar,
    .container,
    .hero-content {
        width: min(100% - 42px, 960px);
    }

    .nav-links {
        gap: 22px;
    }

    .about-grid,
    .feature-row {
        gap: 36px;
    }

    .feature {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .navbar {
        height: 68px;
    }

    .nav-button {
        display: grid;
        gap: 5px;
        cursor: pointer;
    }

    .nav-button span {
        width: 28px;
        height: 2px;
        background: var(--cream);
    }

    .nav-links {
        position: absolute;
        top: 68px;
        left: 0;
        width: 100%;
        display: none;
        flex-direction: column;
        gap: 0;
        background: #07314a;
        box-shadow: 0 18px 30px rgba(6, 40, 59, 0.12);
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 15px 24px;
    }

    .nav-links a::after,
    .nav-cta {
        display: none;
    }

    .nav-toggle:checked ~ .nav-links {
        display: flex;
    }

    .hero {
        min-height: auto;
        background:
            linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 52%, rgba(255, 255, 255, 0.2) 100%),
            url("assets/hero-balaton.png") right center / auto 100% no-repeat;
    }

    .hero-content {
        padding: 72px 0;
    }

    .tiny-crown {
        margin-left: 130px;
    }

    .about-grid,
    .feature-row,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .value-table {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature {
        grid-template-columns: 148px 1fr;
    }

    .footer-inner {
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px 28px;
    }
}

@media (max-width: 560px) {
    .navbar,
    .container,
    .hero-content {
        width: min(100% - 28px, 520px);
    }

    .logo {
        min-width: auto;
    }

    .logo-text {
        font-size: 15px;
    }

    .hero {
        background:
            linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.86)),
            url("assets/hero-balaton.png") center / cover no-repeat;
    }

    h1 {
        font-size: 54px;
    }

    .hero-kicker {
        font-size: 28px;
    }

    .tiny-crown {
        margin-left: 95px;
    }

    .button {
        width: 100%;
        min-width: 0;
    }

    .section {
        padding: 54px 0;
    }

    .value-table {
        grid-template-columns: 1fr;
    }

    .feature {
        grid-template-columns: 1fr;
    }

    .feature img {
        width: 100%;
        height: 210px;
    }

    .cta-section p br {
        display: none;
    }
}

.legal-hero {
    padding: 82px 0 66px;
    background:
        radial-gradient(circle at 50% 0%, rgba(196, 154, 90, 0.16), transparent 28%),
        linear-gradient(180deg, #fbf8f4, #ffffff);
    text-align: center;
}

.legal-hero h1 {
    margin: 8px 0 18px;
    font-size: clamp(48px, 7vw, 82px);
}

.legal-hero p:not(.eyebrow) {
    max-width: 720px;
    margin: 0 auto;
    color: #42515b;
    font-size: 17px;
}

.legal-section {
    padding: 70px 0;
}

.legal-section-soft {
    background: #fbf8f3;
}

.legal-grid {
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    gap: 48px;
    align-items: start;
}

.legal-card,
.cookie-settings-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 20px 50px rgba(6, 40, 59, 0.06);
}

.legal-card {
    padding: 42px;
}

.cookie-settings-card {
    padding: 34px;
}

.legal-card h2,
.cookie-settings-card h2 {
    margin-bottom: 18px;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 500;
    line-height: 1.1;
}

.legal-card p,
.legal-note {
    color: #43515a;
    font-size: 15px;
}

.legal-card p + p {
    margin-top: 18px;
}

.cookie-status {
    margin-bottom: 22px;
    color: var(--gold-dark);
    font-size: 14px;
    font-weight: 700;
}

.cookie-form {
    display: grid;
    gap: 15px;
}

.cookie-option {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 14px;
    padding: 17px;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
}

.cookie-option input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--gold);
}

.cookie-option strong,
.cookie-option small {
    display: block;
}

.cookie-option strong {
    color: var(--navy);
    font-size: 15px;
}

.cookie-option small {
    margin-top: 4px;
    color: #5f6a71;
    font-size: 13px;
    line-height: 1.55;
}

.cookie-actions,
.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.cookie-actions {
    margin-top: 8px;
}

.button-light,
.button-outline {
    border: 1px solid var(--gold);
    cursor: pointer;
}

.button-light {
    color: var(--gold-dark);
    background: #fffaf3;
    box-shadow: none;
}

.button-outline {
    color: var(--gold-dark);
    background: transparent;
    box-shadow: none;
}

.cookie-table {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
}

.cookie-row {
    display: grid;
    grid-template-columns: 0.7fr 1.7fr 1fr;
    border-top: 1px solid var(--border);
}

.cookie-row:first-child {
    border-top: 0;
}

.cookie-row span {
    padding: 18px 20px;
    color: #43515a;
    font-size: 14px;
}

.cookie-row span:not(:last-child) {
    border-right: 1px solid var(--border);
}

.cookie-row-head {
    background: var(--navy);
}

.cookie-row-head span {
    color: var(--white);
    font-weight: 800;
    text-transform: uppercase;
}

.legal-note {
    margin-top: 20px;
}

.staff-hero {
    padding: 86px 0;
    background:
        radial-gradient(circle at 72% 10%, rgba(196, 154, 90, 0.16), transparent 30%),
        linear-gradient(135deg, #fbf8f4 0%, #ffffff 58%, #f7f2eb 100%);
}

.staff-hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    gap: 58px;
    align-items: center;
}

.staff-hero h1 {
    max-width: 700px;
    margin: 8px 0 24px;
    font-size: clamp(52px, 7vw, 90px);
}

.staff-hero p:not(.eyebrow),
.staff-hero-panel p {
    color: #43515a;
    font-size: 16px;
}

.staff-hero .short-line {
    margin-bottom: 24px;
}

.staff-hero-panel {
    padding: 40px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 24px 60px rgba(6, 40, 59, 0.08);
}

.staff-hero-panel span {
    display: block;
    color: var(--gold);
    font-size: 42px;
    line-height: 1;
    margin-bottom: 18px;
}

.staff-hero-panel strong {
    display: block;
    margin-bottom: 10px;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.18;
}

.staff-section {
    padding: 78px 0 88px;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.staff-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 20px 50px rgba(6, 40, 59, 0.06);
}

.staff-photo {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 4 / 4.25;
    background:
        linear-gradient(rgba(6, 40, 59, 0.08), rgba(6, 40, 59, 0.08)),
        radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.92), rgba(196, 154, 90, 0.2) 48%, rgba(6, 40, 59, 0.12) 100%);
}

.staff-photo::before {
    content: "♛";
    position: absolute;
    top: 34%;
    left: 50%;
    color: rgba(196, 154, 90, 0.55);
    font-size: 72px;
    transform: translate(-50%, -50%);
}

.staff-photo span {
    position: relative;
    margin-top: 120px;
    color: rgba(6, 40, 59, 0.55);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.staff-info {
    padding: 27px;
}

.staff-role {
    margin-bottom: 8px;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.staff-info h3 {
    margin-bottom: 12px;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.1;
    text-transform: none;
}

.staff-info p:not(.staff-role) {
    color: #43515a;
    font-size: 14px;
    line-height: 1.75;
}

.staff-values {
    padding: 58px 0;
    background: #fbf8f3;
}

.staff-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    text-align: center;
}

.staff-values article {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
}

.staff-values span {
    display: block;
    margin-bottom: 14px;
    color: var(--gold);
    font-size: 38px;
}

.staff-values h3 {
    margin-bottom: 8px;
}

.staff-values p {
    color: #43515a;
    font-size: 14px;
}

.finalists-hero {
    padding: 86px 0 76px;
    background:
        linear-gradient(#283145, #283145),
        url("assets/cta-balaton.png") center / cover no-repeat;
    color: var(--white);
    text-align: center;
}

.finalists-hero h1 {
    margin: 8px auto 24px;
    max-width: 900px;
    color: var(--white);
    font-size: clamp(50px, 7vw, 88px);
    line-height: 1;
}

.finalists-hero .center-line {
    margin-bottom: 24px;
}

.finalists-hero p:not(.eyebrow) {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
}

.finalists-section {
    padding: 78px 0 88px;
    background:
        radial-gradient(circle at 50% 0%, rgba(196, 154, 90, 0.1), transparent 25%),
        #ffffff;
}

.finalists-lead {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: end;
    margin-bottom: 38px;
}

.finalists-lead h2 {
    margin-top: 6px;
    max-width: 580px;
}

.finalists-lead > p {
    max-width: 500px;
    color: #43515a;
    font-size: 15px;
}

.finalists-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

.finalist-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 18px 46px rgba(6, 40, 59, 0.06);
}

.finalist-card-highlight {
    border-color: rgba(196, 154, 90, 0.72);
}

.finalist-photo {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 3 / 4;
    background:
        linear-gradient(rgba(6, 40, 59, 0.08), rgba(6, 40, 59, 0.08)),
        radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.94), rgba(196, 154, 90, 0.22) 46%, rgba(6, 40, 59, 0.14) 100%);
}

.finalist-photo::before {
    content: "♛";
    position: absolute;
    top: 40%;
    left: 50%;
    color: rgba(196, 154, 90, 0.5);
    font-size: 62px;
    transform: translate(-50%, -50%);
}

.finalist-number {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--white);
    background: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    line-height: 1;
}

.finalist-placeholder {
    position: relative;
    margin-top: 112px;
    color: rgba(6, 40, 59, 0.55);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.finalist-info {
    padding: 21px;
}

.finalist-city {
    margin-bottom: 6px;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.finalist-info h3 {
    margin-bottom: 10px;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.1;
    text-transform: none;
}

.finalist-info p:not(.finalist-city) {
    color: #43515a;
    font-size: 13px;
    line-height: 1.65;
}

.profile-link {
    display: inline-flex;
    margin-top: 16px;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.profile-link::after {
    content: "→";
    margin-left: 8px;
}

.finalists-info {
    padding: 58px 0;
    background: #fbf8f3;
}

.finalists-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    text-align: center;
}

.finalists-info article {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
}

.finalists-info span {
    display: block;
    margin-bottom: 14px;
    color: var(--gold);
    font-size: 38px;
}

.finalists-info h3 {
    margin-bottom: 8px;
}

.finalists-info p {
    color: #43515a;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    max-width: 1120px;
    margin: 0 auto;
    padding: 22px;
    border: 1px solid rgba(196, 154, 90, 0.38);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 24px 70px rgba(6, 40, 59, 0.18);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner h2 {
    margin-bottom: 5px;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    font-weight: 500;
}

.cookie-banner p {
    max-width: 650px;
    color: #43515a;
    font-size: 14px;
}

.cookie-link {
    color: var(--gold-dark);
    font-size: 14px;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.cookie-banner .button,
.cookie-actions .button {
    min-width: 145px;
    height: 46px;
    border: 0;
    font-family: inherit;
}

@media (max-width: 900px) {
    .legal-grid,
    .cookie-banner,
    .staff-hero-grid,
    .staff-grid,
    .staff-values-grid,
    .finalists-info-grid {
        grid-template-columns: 1fr;
    }

    .finalists-lead {
        display: block;
    }

    .finalists-lead > p {
        margin-top: 18px;
    }

    .finalists-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cookie-row {
        grid-template-columns: 1fr;
    }

    .cookie-row span:not(:last-child) {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }
}

@media (max-width: 560px) {
    .legal-card,
    .cookie-settings-card {
        padding: 25px;
    }

    .cookie-actions .button,
    .cookie-banner .button {
        width: 100%;
    }

    .cookie-banner {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }

    .finalists-grid {
        grid-template-columns: 1fr;
    }
}
