@font-face {
    font-family: "New Title Bold";
    src: url("assets/fonts/new-title-font-family/NewTitle-Bold.otf")
        format("opentype");
    font-weight: 700 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("assets/fonts/Inter/Inter-VariableFont_opsz,wght.ttf")
        format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("assets/fonts/Inter/Inter-Italic-VariableFont_opsz,wght.ttf")
        format("truetype");
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

:root {
    --font-display:
        "New Title Bold", "New Title", Inter, system-ui, -apple-system,
        BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-body:
        Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
    --turquoise: #02fcf2;
    --magenta: #ef0085;
    --navy: #2a0647;
    --white: #ffffff;
    --ink: var(--navy);
    --muted: color-mix(in srgb, var(--navy) 68%, white);
    --paper: #f7fffe;
    --lilac: #ccfbf7;
    --violet: var(--magenta);
    --violet-deep: var(--navy);
    --accent: var(--turquoise);
    --line: color-mix(in srgb, var(--navy) 18%, transparent);
    --shadow: 0 24px 80px color-mix(in srgb, var(--navy) 22%, transparent);
    --section-top: clamp(60px, 11vw, 80px);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    letter-spacing: 0;
    overflow-x: hidden;
}

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

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

.site-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 24px;
    padding: 22px clamp(22px, 5vw, 72px) 12px;
    background: transparent;
    color: var(--navy);
}

.brand {
    justify-self: start;
    width: clamp(148px, calc(5vw + 100px), 166px);
}

.brand img {
    width: 100%;
    max-width: none;
}

.nav {
    display: flex;
    align-items: start;
    gap: 26px;
    font-size: 2.48rem;
    font-weight: 800;
    text-transform: uppercase;
}

.menu-toggle,
.mobile-nav-cta {
    display: none;
}

.nav a,
.header-cta {
    opacity: 0.82;
    transition:
        opacity 180ms ease,
        transform 180ms ease;
}

.nav a:hover,
.header-cta:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.nav-support {
    color: var(--navy);
}

.header-cta {
    justify-self: end;
    border: 2px solid var(--magenta);
    border-radius: 999px;
    background: var(--magenta);
    color: white;
    min-height: 46px;
    padding: 16px 22px;
    font-family: var(--font-body);
    font-size: 0.96rem;
    font-weight: 900;
    line-height: 1.15;
    text-transform: uppercase;
}

.section-dark {
    background: var(--turquoise);
    color: var(--navy);
}

.hero {
    position: relative;
    min-height: clamp(560px, 72svh, 760px);
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    align-items: center;
    gap: clamp(10px, 4vw, 70px);
    padding: clamp(100px, 9vw, 132px) clamp(50px, 8vw, 100px)
        clamp(56px, 6vw, 82px);
    background-image:
        linear-gradient(
            90deg,
            color-mix(in srgb, var(--turquoise) 18%, transparent) 0%,
            color-mix(in srgb, var(--turquoise) 6%, transparent) 100%
        ),
        url("assets/patterny/pattern_tyrkys.png");
    background-image:
        linear-gradient(
            90deg,
            color-mix(in srgb, var(--turquoise) 18%, transparent) 0%,
            color-mix(in srgb, var(--turquoise) 6%, transparent) 100%
        ),
        image-set(
            url("assets/patterny/webp/pattern_tyrkys.webp") type("image/webp"),
            url("assets/patterny/pattern_tyrkys.png") type("image/png")
        );
    background-position: center;
    background-size: auto, cover;
    overflow: hidden;
}

.hero-copy {
    position: relative;
    z-index: 2;
    grid-column: 2;
    max-width: 560px;
    justify-self: start;
    transform: translate(clamp(-72px, -4vw, -34px), 0);
}

.hero-brand {
    position: absolute;
    top: clamp(2px, 1.2vw, 16px);
    right: clamp(24px, 4vw, 54px);
    z-index: 3;
    display: block;
    width: clamp(150px, 15.5vw, 255px);
    transform-origin: center;
    transition: transform 180ms ease;
}

.hero-brand:hover {
    transform: scale(1.04);
}

.hero-brand img {
    width: 100%;
    max-width: none;
}

.eyebrow,
.section-kicker {
    margin: 0 0 18px;
    color: var(--magenta);
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow {
    font-size: 0.78rem;
}

.section-kicker {
    font-size: 0.78rem;
    line-height: 1.2;
}

p.section-kicker {
    font-size: 0.78rem !important;
    line-height: 1.2 !important;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4,
.nav {
    font-family: var(--font-display);
}

h1 {
    margin-bottom: 22px;
    max-width: 700px;
    font-size: clamp(3rem, 6.1vw, 5.25rem);
    font-weight: 900;
    line-height: 0.92;
    text-transform: uppercase;
}

.hero h1 {
    margin-bottom: 16px;
    max-width: 540px;
    font-size: clamp(2.6rem, 4.5vw, 4.15rem);
}

h2 {
    margin-bottom: 24px;
    font-size: clamp(2rem, 4.6vw, 4.4rem);
    font-weight: 900;
    line-height: 0.98;
}

h3 {
    margin-bottom: 14px;
    font-size: clamp(1.15rem, 1.6vw, 1.45rem);
    font-weight: 700;
}

.hero-lead,
.intro p,
.panel p,
.card p,
.contact-card p {
    color: inherit;
    font-size: clamp(1.04rem, 1.5vw, 1.25rem);
    line-height: 1.75;
}

.hero-lead {
    max-width: 540px;
    color: var(--navy);
    font-weight: 400;
    font-size: clamp(1rem, 1.25vw, 1.14rem);
    line-height: 1.58;
}

.hero-lead strong {
    font-family: inherit;
    font-size: inherit;
    font-weight: 700;
    line-height: inherit;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 22px;
}

.button {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 17px 28px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.2;
    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        background 220ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button.primary {
    background: var(--magenta);
    color: white;
    box-shadow: 0 18px 50px color-mix(in srgb, var(--navy) 18%, transparent);
}

.button.ghost {
    background: white;
    border: 2px solid var(--navy);
    color: var(--navy);
}

.hero-visual {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    min-height: clamp(540px, 66svh, 740px);
    z-index: 3;
}

.halo {
    position: absolute;
    right: 7%;
    bottom: 9%;
    width: min(54vw, 720px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--magenta);
    opacity: 0.18;
}
.hero {
    position: relative;
}

.hero .hero-person-bg {
    /*background: red;*/
    position: absolute;
    inset: 0;
    background-image: url("assets/fotky/optimized/Nataliakey.png");
    background-repeat: no-repeat;
    background-position: left -20px bottom 0;
    background-size: auto 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-person {
    position: absolute;
    /*z-index: 1;*/
    /*left: clamp(-215px, -10vw, -110px);
    right: auto;
    bottom: clamp(-170px, -14svh, -88px);
    width: clamp(760px, min(48vw, 88svh), 980px);
    height: auto;*/
    /*aspect-ratio: 1200 / 1188;*/
    /*aspect-ratio: 768 / 1224;*/
    max-width: none;
    /*max-width: 700px;*/
    max-height: 140%;
    object-fit: contain;
    /*margin-left: 100px;
    margin-right: -100px;*/
    filter: drop-shadow(
        0 28px 42px color-mix(in srgb, var(--navy) 30%, transparent)
    );
}

.hero-mark {
    position: absolute;
    z-index: 3;
    left: clamp(150px, 9vw, 300px);
    bottom: clamp(-10px, -2vh, -6px);
    width: clamp(120px, 17.5vw, 200px);
    animation: float 6s ease-in-out infinite;
}

.scroll-cue {
    display: none;
}

.scroll-cue span {
    position: absolute;
    left: 50%;
    top: 12px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--navy);
    transform: translateX(-50%);
    animation: scrollDot 1.8s ease-in-out infinite;
}

.intro {
    padding: clamp(90px, 12vw, 170px) clamp(22px, 6vw, 86px);
    text-align: center;
}

.narrow {
    width: min(960px, 100%);
    margin-inline: auto;
}

.intro .section-kicker,
.principles .section-kicker,
.candidate-story .section-kicker,
.region .section-kicker,
.contact .section-kicker,
.panel .section-kicker {
    color: var(--violet);
}

.intro p {
    color: var(--muted);
}

.bio {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
    align-items: stretch;
    gap: clamp(28px, 6vw, 78px);
    padding: var(--section-top) clamp(50px, 8vw, 100px);
}

.bio-copy,
.bio-photo {
    min-height: 120px;
}

.bio-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 690px;
    color: var(--navy);
}

.bio .section-kicker {
    color: var(--violet);
}

.bio-copy p {
    color: var(--muted);
    font-size: clamp(1rem, 1.25vw, 1.14rem);
    line-height: 1.58;
}

.bio-photo {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.bio-photo picture,
.candidate-photo picture,
.map-card picture {
    display: block;
    width: 100%;
    height: 100%;
}

.timeline-card picture {
    display: block;
}

.bio-photo img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center top;
}

.section-lilac {
    background: var(--lilac);
}

.split {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(28px, 7vw, 96px);
    min-height: 720px;
    padding: 72px clamp(22px, 7vw, 100px);
    overflow: hidden;
}

.split::before {
    content: "";
    position: absolute;
    left: 8%;
    bottom: -20%;
    width: 620px;
    aspect-ratio: 1;
    background: var(--magenta);
    opacity: 0.12;
}

.split-image {
    position: relative;
    min-height: 560px;
}

.split-image img {
    position: absolute;
    left: 0;
    bottom: -210px;
    width: min(48vw, 620px);
    max-width: none;
}

.panel {
    position: relative;
    z-index: 1;
    max-width: 560px;
    border-radius: 8px;
    background: var(--navy);
    color: white;
    padding: clamp(28px, 5vw, 56px);
    box-shadow: var(--shadow);
}

.panel .section-kicker,
.panel p {
    color: white;
}

.principles {
    padding: var(--section-top) clamp(22px, 6vw, 86px) clamp(86px, 12vw, 150px);
}

.principles-head {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: center;
    gap: clamp(28px, 6vw, 80px);
    max-width: 1180px;
    margin: 0 auto 58px;
}

.principles-head img {
    width: 210px;
}

.principles-head h2 {
    max-width: 860px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    max-width: 1320px;
    margin-inline: auto;
}

.card {
    min-height: 390px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 28px;
    background: white;
    transition:
        transform 240ms ease,
        box-shadow 240ms ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px color-mix(in srgb, var(--navy) 12%, transparent);
}

.card h3,
.timeline-card h3,
.candidate-panel-head h3,
.candidate-card h4 {
    font-family: var(--font-body);
}

.card h3 {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    column-gap: 12px;
    margin-bottom: 12px;
    font-size: clamp(1.1rem, 1.2vw, 1.25rem);
    font-weight: 800;
    line-height: 1.18;
}

.card h3 span {
    color: var(--violet);
    font-size: clamp(1.85rem, 2.6vw, 2.85rem);
    font-weight: 900;
    line-height: 0.82;
}

.card p {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.58;
}

.candidate-story {
    padding: var(--section-top) clamp(22px, 6vw, 86px) clamp(86px, 12vw, 150px);
    background: white;
    overflow: hidden;
}

.story-head {
    max-width: 980px;
    margin: 0 auto 48px;
    text-align: center;
}

.story-head p:not(.section-kicker) {
    max-width: 760px;
    margin-inline: auto;
    color: var(--muted);
    font-size: clamp(1.04rem, 1.5vw, 1.25rem);
    line-height: 1.75;
}

.story-shell {
    display: grid;
    grid-template-columns: minmax(250px, 0.38fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 24px;
    max-width: 1240px;
    margin-inline: auto;
}

.story-portrait {
    position: relative;
    display: grid;
    height: var(--story-card-height, 420px);
    align-items: stretch;
    overflow: hidden;
    border-radius: 8px;
    background: var(--turquoise);
}

.story-portrait picture {
    display: block;
    width: 100%;
    height: 100%;
}

.story-portrait img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center top;
    filter: drop-shadow(
        0 24px 42px color-mix(in srgb, var(--navy) 24%, transparent)
    );
}

.timeline-rail-wrap {
    position: relative;
    min-width: 0;
}

.timeline-rail {
    display: grid;
    grid-auto-columns: minmax(260px, 34%);
    grid-auto-flow: column;
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 4px 4px 22px;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--magenta)
        color-mix(in srgb, var(--navy) 12%, transparent);
    scrollbar-width: none;
}

.timeline-rail::-webkit-scrollbar {
    display: none;
}

.story-arrow {
    position: absolute;
    top: 50%;
    right: 10px;
    z-index: 2;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--magenta);
    color: white;
    box-shadow: 0 16px 34px color-mix(in srgb, var(--navy) 22%, transparent);
    cursor: pointer;
    font: inherit;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
    transform: translateY(-50%);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.story-arrow:hover,
.story-arrow:focus-visible {
    box-shadow: 0 20px 42px color-mix(in srgb, var(--navy) 28%, transparent);
    outline: none;
    transform: translateY(-50%) scale(1.05);
}

.timeline-card {
    display: flex;
    flex-direction: column;
    min-height: 420px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    padding: 24px;
    overflow: hidden;
    scroll-snap-align: start;
}

.timeline-card img {
    display: block;
    width: calc(100% + 48px);
    max-width: none;
    height: clamp(210px, 18vw, 260px);
    margin: -24px -24px 20px;
    object-fit: cover;
    object-position: center top;
    background: var(--violet);
    filter: saturate(0.96);
}

.timeline-card:nth-child(2n) img {
    object-position: center top;
}

.timeline-card:nth-child(3n) img {
    object-position: center top;
}

.timeline-card h3 {
    margin-bottom: 14px;
    color: var(--violet);
    font-size: clamp(1.1rem, 1.2vw, 1.25rem);
    font-weight: 800;
    line-height: 1.18;
    text-wrap: balance;
}

.timeline-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: clamp(0.94rem, 1vw, 1rem);
    line-height: 1.58;
    text-wrap: pretty;
}

.region {
    padding: var(--section-top) clamp(22px, 6vw, 86px) clamp(86px, 12vw, 150px);
}

.region-head {
    max-width: 980px;
    margin: 0 auto 48px;
    text-align: center;
}

.region-head p:not(.section-kicker) {
    max-width: 760px;
    margin-inline: auto;
    color: var(--muted);
    font-size: clamp(1.04rem, 1.5vw, 1.25rem);
    line-height: 1.75;
}

.region-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.86fr) minmax(440px, 1.14fr);
    align-items: stretch;
    gap: 24px;
    max-width: 1240px;
    margin-inline: auto;
}

.candidate-panel,
.map-card {
    border: 1px solid color-mix(in srgb, var(--navy) 14%, transparent);
    border-radius: 8px;
    background: white;
    box-shadow: 0 24px 70px color-mix(in srgb, var(--navy) 12%, transparent);
}

.candidate-panel {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(22px, 3vw, 34px);
    overflow: hidden;
}

.candidate-panel-head h3 {
    margin-bottom: 8px;
    color: var(--violet);
}

.candidate-rail-wrap {
    position: relative;
}

.candidate-rail {
    display: grid;
    grid-auto-columns: minmax(230px, 72%);
    grid-auto-flow: column;
    gap: 16px;
    margin: 14px -6px -6px;
    padding: 6px 6px 18px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--magenta)
        color-mix(in srgb, var(--navy) 12%, transparent);
    scrollbar-width: none;
}

.candidate-rail::-webkit-scrollbar {
    display: none;
}

.district-arrow {
    position: absolute;
    top: 50%;
    right: 10px;
    z-index: 2;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--magenta);
    color: white;
    box-shadow: 0 16px 34px color-mix(in srgb, var(--navy) 22%, transparent);
    cursor: pointer;
    font: inherit;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
    transform: translateY(-50%);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.district-arrow:hover,
.district-arrow:focus-visible {
    box-shadow: 0 20px 42px color-mix(in srgb, var(--navy) 28%, transparent);
    outline: none;
    transform: translateY(-50%) scale(1.05);
}

.candidate-card {
    min-height: 290px;
    border-radius: 8px;
    background: white;
    border: 1px solid color-mix(in srgb, var(--navy) 12%, transparent);
    padding: 22px;
    scroll-snap-align: start;
}

.candidate-photo {
    position: relative;
    display: grid;
    height: 142px;
    margin: -22px -22px 22px;
    overflow: hidden;
    background: var(--magenta);
}

.candidate-photo img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center top;
}

.candidate-photo span {
    position: relative;
    z-index: 1;
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: 34px;
    place-items: center;
    border-radius: 50%;
    background: var(--violet);
    color: white;
    font-size: 0.86rem;
    font-weight: 900;
}

.candidate-photo-2 {
    background: var(--turquoise);
}

.candidate-photo-3 {
    background: var(--navy);
}

.candidate-card h4 {
    margin: 0 0 8px;
    font-size: 1.28rem;
    line-height: 1.15;
}

.candidate-card p {
    margin-bottom: 16px;
    color: var(--muted);
    line-height: 1.55;
}

.candidate-card small {
    display: inline-flex;
    border-radius: 999px;
    background: var(--lilac);
    color: var(--violet);
    padding: 8px 11px;
    font-weight: 900;
}

.map-card {
    position: relative;
    min-height: 520px;
    overflow: hidden;
}

.region-map {
    width: 100%;
    height: 100%;
    max-width: none;
    min-height: 520px;
    object-fit: contain;
    padding: clamp(14px, 2vw, 26px);
    filter: contrast(1.03);
}

.map-pins {
    position: absolute;
    inset: 0;
}

.map-pin {
    position: absolute;
    left: var(--x);
    top: var(--y);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 170px;
    border: 0;
    border-radius: 999px;
    background: color-mix(in srgb, white 94%, transparent);
    color: var(--violet-deep);
    padding: 8px 11px 8px 9px;
    font: inherit;
    font-size: 0.76rem;
    font-weight: 900;
    line-height: 1.1;
    cursor: pointer;
    box-shadow: 0 10px 26px color-mix(in srgb, var(--navy) 14%, transparent);
    transform: translate(-50%, -50%);
    transition:
        background 180ms ease,
        color 180ms ease,
        transform 180ms ease,
        box-shadow 180ms ease;
}

.map-pin::before {
    content: "";
    flex: 0 0 auto;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--violet);
}

.map-pin:hover,
.map-pin:focus-visible,
.map-pin.is-active {
    background: var(--violet);
    color: white;
    transform: translate(-50%, -50%) scale(1.04);
    box-shadow: 0 18px 38px color-mix(in srgb, var(--navy) 24%, transparent);
    outline: none;
}

.map-pin:hover::before,
.map-pin:focus-visible::before,
.map-pin.is-active::before {
    background: white;
}

.quote {
    padding: var(--section-top) clamp(22px, 8vw, 100px) clamp(34px, 6vw, 64px);
}

.quote-inner {
    position: relative;
    display: grid;
    width: min(760px, 100%);
    gap: clamp(16px, 2vw, 24px);
    margin-inline: auto;
    padding-left: clamp(22px, 3vw, 38px);
}

.quote-inner::before {
    content: "";
    position: absolute;
    top: 0.2em;
    bottom: 0.35em;
    left: 0;
    width: 6px;
    border-radius: 999px;
    background: var(--magenta);
}

.quote blockquote {
    margin: 0;
    color: var(--navy);
    font-size: clamp(1.15rem, 2vw, 2rem);
    font-weight: 800;
    line-height: 1.26;
    text-wrap: balance;
}

.quote-signature {
    width: min(52px, 18vw);
    margin-left: 0;
}

.contact {
    position: relative;
    padding: var(--section-top) clamp(22px, 6vw, 86px);
    background-color: var(--lilac);
}

.contact-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 760px);
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1180px;
    margin-inline: auto;
    color: var(--navy);
    padding: clamp(34px, 6vw, 40px);
    text-align: center;
}

.contact-card .section-kicker {
    color: var(--violet);
}

.contact-card > div {
    position: relative;
    z-index: 2;
    width: 100%;
}

.contact-card p {
    max-width: 620px;
    margin-inline: auto;
    color: var(--muted);
}

.contact-actions {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 18px;
}

.contact-actions .button {
    margin-top: 0;
}

.contact-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-social a {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--navy) 18%, transparent);
    border-radius: 999px;
    background: white;
    color: var(--navy);
    padding: 0;
    transition:
        background 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.contact-social a:hover,
.contact-social a:focus-visible {
    background: var(--magenta);
    border-color: var(--magenta);
    color: white;
    transform: translateY(-1px);
}

.contact-social svg {
    display: block;
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.contact-card > img {
    display: none;
}

.support-account {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
    align-items: center;
    column-gap: clamp(34px, 7vw, 96px);
    row-gap: 0;
    padding: var(--section-top) clamp(22px, 6vw, 86px) clamp(40px, 12vw, 100px);
    background: white;
}

.support-copy {
    max-width: 760px;
}

.support-copy .section-kicker {
    color: var(--violet);
}

.support-copy h2 {
    margin-bottom: 24px;
    color: var(--navy);
}

.support-copy p {
    max-width: 700px;
    color: var(--muted);
    font-size: clamp(1.08rem, 1.55vw, 1.3rem);
    line-height: 1.7;
}

.support-copy strong {
    color: var(--navy);
    font-weight: 900;
}

.support-account-button-desktop {
    margin-top: 18px;
}

.account-card {
    border: 1px solid color-mix(in srgb, var(--navy) 18%, transparent);
    border-left: 6px solid var(--magenta);
    border-radius: 8px;
    background: color-mix(in srgb, var(--turquoise) 10%, white);
    padding: clamp(28px, 4vw, 46px);
    box-shadow: 0 20px 58px color-mix(in srgb, var(--navy) 10%, transparent);
}

.account-card span {
    display: block;
    margin-bottom: 18px;
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.account-card strong {
    display: block;
    color: var(--navy);
    font-size: clamp(1.2rem, 2vw, 2rem);
    font-weight: 900;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.account-card p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.35vw, 1.2rem);
    line-height: 1.5;
}

.support-account-button {
    display: none;
}

footer {
    background: var(--violet-deep);
    color: color-mix(in srgb, white 58%, transparent);
    padding: 34px clamp(22px, 6vw, 86px);
    text-align: center;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-links a {
    display: inline-flex;
    min-width: 42px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid color-mix(in srgb, white 28%, transparent);
    border-radius: 999px;
    color: white;
    padding: 10px 14px;
    font-weight: 800;
    transition:
        background 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.footer-links img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-links a:hover {
    background: var(--magenta);
    color: white;
    transform: translateY(-1px);
}

.party-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 4.8vw, 48px);
    margin: 0 auto;
}

.party-logos a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
        opacity 180ms ease,
        transform 180ms ease;
}

.party-logos a:hover {
    opacity: 0.82;
    transform: translateY(-1px);
}

.party-logos img {
    width: auto;
    height: auto;
    max-width: 300px;
    max-height: 70px;
    object-fit: contain;
}

.footer-text {
    width: 100%;
    margin: 22px auto 0;
    padding-top: 20px;
    border-top: 1px solid color-mix(in srgb, white 18%, transparent);
    font-family: var(--font-body);
}

.footer-main-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 14px;
    margin: 0 auto 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid color-mix(in srgb, white 14%, transparent);
}

.footer-copy {
    position: relative;
    color: color-mix(in srgb, white 66%, transparent);
    margin: 0;
    padding-right: 14px;
    font-size: 0.8rem;
    line-height: 1.45;
    text-align: center;
}

.footer-copy::after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 1.1em;
    background: color-mix(in srgb, white 18%, transparent);
    content: "";
    transform: translateY(-50%);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.45;
    text-align: center;
}

.footer-legal a {
    color: color-mix(in srgb, white 76%, transparent);
    text-decoration: none;
    text-underline-offset: 4px;
    transition: color 180ms ease;
}

.footer-legal a:hover {
    color: white;
    text-decoration: underline;
}

.footer-disclosure {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 20px;
    margin: 0 auto;
    color: color-mix(in srgb, white 68%, transparent);
    font-size: 0.72rem;
    line-height: 1.45;
}

.footer-disclosure p {
    margin: 0;
}

.footer-disclosure span {
    color: inherit;
}

.footer-disclosure a {
    color: inherit;
    text-decoration: none;
    text-underline-offset: 4px;
    transition: color 180ms ease;
}

.footer-disclosure a:hover {
    color: white;
    text-decoration: underline;
}

footer p {
    margin: 0;
}

.cookie-consent,
.cookie-modal {
    position: fixed;
    inset: auto clamp(16px, 4vw, 48px) clamp(16px, 4vw, 48px);
    z-index: 100;
}

.cookie-consent[hidden],
.cookie-modal[hidden],
.cookie-widget[hidden] {
    display: none;
}

.cookie-panel,
.cookie-modal-panel {
    width: min(960px, 100%);
    margin-inline: auto;
    border: 1px solid color-mix(in srgb, white 16%, transparent);
    border-radius: 8px;
    background: var(--violet-deep);
    box-shadow: 0 24px 80px color-mix(in srgb, var(--navy) 42%, transparent);
    color: white;
    font-family: var(--font-body);
}

.cookie-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    padding: clamp(18px, 3vw, 28px);
}

.cookie-copy h2,
.cookie-modal-head h2 {
    margin: 0 0 8px;
    color: white;
    font-family: var(--font-body);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    line-height: 1.15;
}

.cookie-copy p,
.cookie-modal-head p,
.cookie-option p,
.cookie-option small {
    margin: 0;
    color: color-mix(in srgb, white 74%, transparent);
    font-size: 0.92rem;
    line-height: 1.55;
}

.cookie-inline-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 12px;
    font-size: 0.82rem;
    font-weight: 800;
}

.cookie-inline-links a,
.cookie-option strong {
    color: white;
}

.cookie-actions,
.cookie-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-button,
.cookie-close,
.cookie-widget {
    border: 0;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 900;
    cursor: pointer;
}

.cookie-button {
    min-height: 44px;
    padding: 12px 18px;
    background: color-mix(in srgb, white 12%, transparent);
    color: white;
}

.cookie-button.primary {
    background: var(--magenta);
}

.cookie-button.secondary {
    background: white;
    color: var(--navy);
}

.cookie-button.ghost {
    background: transparent;
    color: color-mix(in srgb, white 76%, transparent);
}

.cookie-modal {
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
    background: color-mix(in srgb, var(--navy) 72%, transparent);
}

.cookie-modal-panel {
    max-height: min(720px, calc(100vh - 40px));
    overflow: auto;
    padding: clamp(18px, 3vw, 30px);
}

.cookie-modal-head {
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-bottom: 20px;
}

.cookie-close {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    background: color-mix(in srgb, white 12%, transparent);
    color: white;
    font-size: 1.5rem;
    line-height: 1;
}

.cookie-options {
    display: grid;
    gap: 12px;
    margin-bottom: 22px;
}

.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-radius: 8px;
    background: color-mix(in srgb, var(--turquoise) 13%, transparent);
    padding: 16px;
}

.cookie-option h3,
.cookie-option strong {
    display: block;
    margin: 0 0 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.25;
}

.cookie-required {
    flex: 0 0 auto;
    color: color-mix(in srgb, white 68%, transparent);
    font-size: 0.78rem;
    font-weight: 800;
}

.cookie-option input {
    flex: 0 0 auto;
    width: 48px;
    height: 28px;
    accent-color: var(--magenta);
}

.cookie-widget {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 99;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    background: var(--magenta);
    color: white;
    padding: 0;
    box-shadow: 0 12px 30px color-mix(in srgb, var(--navy) 32%, transparent);
}

.cookie-widget::before {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: white;
    content: "";
}

.cookie-widget span {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--magenta);
}

.cookie-widget span:nth-child(1) {
    transform: translate(-5px, -4px);
}

.cookie-widget span:nth-child(2) {
    transform: translate(4px, 2px);
}

.cookie-widget span:nth-child(3) {
    transform: translate(-2px, 6px);
}

.legal-page {
    min-height: 100vh;
    background: var(--cream);
    color: var(--navy);
}

.legal-content {
    width: min(760px, calc(100% - 44px));
    margin: 0 auto;
    padding: clamp(56px, 10vw, 104px) 0;
}

.legal-content h1 {
    margin: 26px 0 18px;
    color: var(--violet-deep);
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 7vw, 4.4rem);
    line-height: 0.94;
}

.legal-content p {
    max-width: 62ch;
    margin: 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.7;
}

.legal-section {
    margin-top: 34px;
}

.legal-section h2 {
    margin: 0 0 14px;
    color: var(--violet-deep);
    font-family: var(--font-body);
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    line-height: 1.25;
}

.legal-details {
    display: grid;
    gap: 18px;
    margin: 0;
}

.legal-details div {
    display: grid;
    gap: 6px;
}

.legal-details dt {
    color: var(--magenta);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.legal-details dd {
    margin: 0;
    color: var(--navy);
    font-size: clamp(1.08rem, 1.8vw, 1.28rem);
    line-height: 1.5;
}

.legal-back {
    color: var(--magenta);
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    text-underline-offset: 4px;
}

.legal-back:hover {
    text-decoration: underline;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 760ms ease,
        transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-copy .reveal:nth-child(2) {
    transition-delay: 90ms;
}

.hero-copy .reveal:nth-child(3) {
    transition-delay: 170ms;
}

.hero-copy .reveal:nth-child(4) {
    transition-delay: 250ms;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-14px) rotate(2deg);
    }
}

@keyframes scrollDot {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }
    35% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, 22px);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
    }
}

@media (min-width: 921px) {
    .hero {
        --hero-photo-width: clamp(640px, 50vw, 960px);
        --hero-photo-left: clamp(-210px, calc(8vw - 280px), -90px);
        --hero-photo-bottom: clamp(-160px, -12svh, -82px);
        --hero-copy-x: clamp(-102px, -5.8vw, -58px);
        --hero-copy-y: clamp(30px, 2.6vw, 48px);

        grid-template-columns: minmax(0, 1fr) minmax(420px, 0.96fr);
        gap: clamp(56px, 7vw, 126px);
    }

    .hero-copy {
        transform: translate(var(--hero-copy-x), var(--hero-copy-y));
    }

    /*.hero-person {
        left: var(--hero-photo-left);
        bottom: var(--hero-photo-bottom);
        width: var(--hero-photo-width);
        width: 950px;
    }*/
}

@media (max-width: 1270px) {
    /*.hero-person {
        max-width: 700px;
    }*/

    .hero-copy {
        margin-left: 50px;
        margin-right: -50px;
    }

    .hero .hero-person-bg {
        background-size: auto 95%;
        background-position: left -20px bottom 0;
    }
}

@media (max-width: 1060px) {
    /*.hero-person {
        max-width: 600px;
    }*/
    .hero-copy {
        margin-left: 100px;
        margin-right: -100px;
    }
    .hero .hero-person-bg {
        background-size: auto 90%;
        background-position: left -20px bottom 0;
    }
}
@media (max-width: 921px) {
    .hero-copy {
        margin-left: 0;
        margin-right: 0;
    }
    /*.hero-person {
        max-width: 650px;
    }*/
    .hero .hero-person-bg {
        background-size: min(100%, 600px) auto;
        background-position: left -20px bottom 0;
    }
}

@media (min-width: 921px) and (max-width: 1180px) {
    .hero {
        --hero-photo-width: clamp(680px, 62vw, 730px);
        --hero-photo-left: clamp(-255px, calc(9vw - 330px), -205px);
        --hero-copy-x: clamp(-58px, -3vw, -34px);
        --hero-copy-y: clamp(30px, 3.4vw, 48px);
    }
}

@media (min-width: 1181px) and (max-width: 1540px) {
    .hero {
        --hero-photo-width: clamp(760px, 54vw, 880px);
        --hero-photo-left: clamp(-245px, calc(7vw - 310px), -160px);
        --hero-copy-x: clamp(-64px, -2.2vw, -34px);
    }
}

@media (min-width: 1541px) {
    .hero {
        --hero-photo-width: clamp(820px, 45vw, 1040px);
        --hero-photo-left: clamp(-240px, calc(5vw - 290px), -120px);
    }
}

@media (max-width: 920px) {
    .cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .site-header {
        justify-content: flex-end;
    }

    .site-header.is-menu-open {
        position: fixed;
        inset: 0;
        bottom: auto;
        z-index: 40;
        height: 100dvh;
        align-items: flex-start;
    }

    .nav {
        display: none;
    }

    .site-header.is-menu-open .nav {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 20;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 96px 16px 18px;
        background: var(--navy);
        box-shadow: 0 18px 36px color-mix(in srgb, var(--navy) 24%, transparent);
        color: white;
        font-size: 2rem;
    }

    .site-header.is-menu-open .nav a {
        padding: 12px 0;
        border-top: 1px solid color-mix(in srgb, white 20%, transparent);
        text-align: right;
        opacity: 1;
    }

    .mobile-nav-cta {
        display: block;
        color: var(--magenta);
    }

    .nav-support {
        display: block;
        color: var(--turquoise);
        text-align: center;
    }

    .site-header.is-menu-open .nav a.nav-support {
        color: white;
        text-align: right;
    }

    .menu-toggle {
        position: relative;
        z-index: 45;
        display: grid;
        justify-self: end;
        width: 46px;
        height: 46px;
        place-items: center;
        border: 2px solid var(--magenta);
        border-radius: 999px;
        background: var(--magenta);
        padding: 10px;
    }

    .menu-toggle span {
        display: block;
        width: 20px;
        height: 2px;
        border-radius: 999px;
        background: white;
    }

    .header-cta {
        display: none;
    }

    .hero {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-top: 88px;
        padding-bottom: 28px;
    }

    .hero-copy {
        grid-column: 1;
        order: 1;
        max-width: 760px;
        justify-self: start;
        transform: none;
    }

    .hero-brand {
        top: 12px;
        right: 24px;
        width: min(240px, 46vw);
    }

    .hero-visual {
        grid-column: 1;
        grid-row: auto;
        order: 2;
        min-height: clamp(520px, 64vw, 680px);
        margin-inline: calc(clamp(22px, 6vw, 86px) * -1);
    }

    /*.hero-person {
        left: clamp(-140px, -13vw, -70px);
        right: auto;
        bottom: clamp(-150px, -14vw, -80px);
        width: clamp(640px, 108vw, 860px);
        transform: none;
    }*/

    .hero-mark {
        left: auto;
        right: 0%;
        bottom: 16px;
    }

    .scroll-cue {
        display: none;
    }

    .split,
    .bio,
    .principles-head,
    .story-shell,
    .region-grid,
    .contact-card,
    .support-account {
        grid-template-columns: 1fr;
    }

    .split {
        min-height: auto;
        padding-bottom: 0;
    }

    .split-image {
        min-height: 360px;
        order: 2;
    }

    .split-image img {
        left: 50%;
        bottom: -150px;
        width: min(620px, 105vw);
        transform: translateX(-50%);
    }

    .panel {
        order: 1;
        max-width: none;
    }

    .bio {
        gap: 26px;
    }

    .bio-copy,
    .bio-photo {
        min-height: auto;
    }

    .bio-photo {
        aspect-ratio: 4 / 5;
    }

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

    .card {
        min-height: auto;
    }

    .card span {
        margin-bottom: 34px;
    }

    .story-portrait {
        height: var(--story-card-height, 360px);
    }

    .story-portrait img {
        width: 100%;
        height: 100%;
    }

    .timeline-rail {
        grid-auto-columns: minmax(260px, 72%);
    }

    .timeline-card {
        min-height: 360px;
    }

    .candidate-panel {
        order: 2;
    }

    .map-card {
        order: 1;
        min-height: 460px;
    }

    .region-map {
        min-height: 460px;
    }

    .map-pin {
        max-width: 128px;
        padding: 7px 9px;
        font-size: 0.66rem;
    }

    .contact-card > img {
        width: min(420px, 82vw);
        justify-self: center;
        margin-bottom: -88px;
    }

    .support-account {
        gap: 28px;
    }
}

@media (max-width: 920px) {
    .site-header {
        padding: 10px 16px 10px 14px;
    }

    .brand {
        width: clamp(129px, calc((100vw - 236px) / 6 + 100px), 152px);
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }

    h1 {
        font-size: clamp(2.85rem, 15vw, 4.4rem);
    }

    .hero h1 {
        font-size: clamp(2.2rem, 10.5vw, 3.2rem);
    }

    h2 {
        font-size: clamp(2.65rem, 12vw, 3.45rem);
        line-height: 0.94;
    }

    .hero {
        padding-top: clamp(164px, 45vw, 210px);
        padding-inline: 18px;
        padding-bottom: 0;
    }

    .hero-brand {
        top: 18px;
        right: auto;
        left: 18px;
        width: min(154px, 44vw);
    }

    .hero-copy {
        margin-bottom: clamp(18px, 6vw, 30px);
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-visual {
        min-height: clamp(440px, 108vw, 610px);
        margin-inline: -18px;
    }

    .hero-visual.reveal {
        opacity: 1;
        transform: none;
    }

    /*.hero-person {
        left: auto;
        margin-bottom: -50px;
        right: clamp(-82px, -16vw, -42px);
        bottom: clamp(-78px, -13vw, -48px);
        width: clamp(540px, 132vw, 760px);
    }*/

    .hero-mark {
        width: min(160px, 42vw);
        left: auto;
        right: 28px;
        bottom: 28px;
    }

    .hero-lead {
        display: block;
        overflow: visible;
        font-size: 0.98rem;
        line-height: 1.52;
    }

    .principles-head img {
        width: 160px;
        justify-self: center;
    }

    .principles {
        padding-top: clamp(34px, 8vw, 52px);
    }

    .principles-head {
        justify-items: center;
        text-align: center;
    }

    .principles-head h2 {
        margin-inline: auto;
        line-height: 1.04;
    }

    .card h3 {
        display: flex;
        align-items: baseline;
        column-gap: 12px;
        line-height: 1.28;
    }

    .card h3 span {
        flex: 0 0 auto;
        line-height: 0.9;
    }

    .principles .card {
        min-height: 265px;
        padding: 24px;
    }

    .region {
        padding-inline: 16px;
    }

    .candidate-story {
        padding-inline: 16px;
        padding-bottom: clamp(34px, 8vw, 52px);
    }

    .timeline-rail {
        grid-auto-columns: minmax(236px, 86%);
    }

    .timeline-card {
        min-height: 330px;
        padding: 22px;
    }

    .timeline-card img {
        width: calc(100% + 44px);
        margin: -22px -22px 14px;
    }

    .quote-inner {
        padding-left: 18px;
    }

    .quote-inner::before {
        width: 4px;
    }

    .quote blockquote {
        font-size: clamp(1.05rem, 6vw, 1.45rem);
        line-height: 1.28;
    }

    .story-portrait {
        height: var(--story-card-height, 330px);
    }

    .map-card {
        min-height: 390px;
    }

    .region-map {
        min-height: 390px;
        padding: 8px;
    }

    .map-pin {
        gap: 5px;
        max-width: 112px;
        padding: 7px 8px 7px 7px;
        font-size: 0.64rem;
        line-height: 1.05;
        white-space: normal;
    }

    .map-pin::before {
        width: 10px;
        height: 10px;
    }

    .candidate-rail {
        grid-auto-columns: minmax(220px, 86%);
    }

    .candidate-card p strong {
        color: var(--violet-deep);
        font-size: 1.05rem;
        line-height: 1.2;
    }

    .support-account {
        gap: 28px;
        padding-inline: 18px;
    }

    .support-account-button {
        display: inline-flex;
        grid-column: 1;
        grid-row: auto;
        justify-self: center;
        margin-top: 8px;
        transform: none;
    }

    .support-account-button-desktop {
        display: none;
    }

    .account-card {
        padding: 24px;
    }

    .party-logos {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 18px 10px;
        justify-items: center;
        width: 100%;
    }

    .party-logos a {
        width: 100%;
    }

    .party-logos img {
        max-width: 100%;
        max-height: 38px;
    }

    .party-logo-featured {
        grid-column: 1 / -1;
        justify-self: center;
        order: -1;
        width: auto;
    }

    .party-logo-featured img {
        max-width: 196px;
        max-height: 52px;
    }

    .footer-disclosure {
        display: grid;
        gap: 6px;
    }

    .cookie-consent {
        inset: auto 12px 12px;
    }

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

    .cookie-actions,
    .cookie-modal-actions {
        justify-content: stretch;
    }

    .cookie-button {
        width: 100%;
    }

    .cookie-modal {
        padding: 12px;
    }

    .cookie-modal-panel {
        max-height: calc(100vh - 24px);
    }

    .cookie-modal-head,
    .cookie-option {
        align-items: flex-start;
    }

    .button {
        width: 100%;
    }

    .support-account-button {
        width: auto;
    }
}
