/* ==========================================================================
   global.css — shared styles across CIC Events site
   FIXED: Mobile-first responsive, iOS/Android landscape, tablet, accessibility
   ========================================================================== */

/* ── Variables ── */
:root {
    --white: #FFFFFF;
    --soft-gray: #E5E5E5;
    --charcol-gray: #36454F;
    --rose-gold: #B76E79;
    --logo-black: #0C0C0C;
    --brand-teal: #5E7F86;
    --accent-red: #D2153A;

    /* Policy page tokens */
    --gold: #fff;
    --gold-dim: rgba(200, 169, 110, 0.15);
    --policy-bg: #0d0d0d;
    --policy-surface: #131313;
    --policy-border: rgba(255, 255, 255, 0.07);
    --policy-text: #c8c8c8;
    --policy-text-dim: #666;
    --policy-text-bright: #eeece8;
    --policy-display: 'Cormorant Garamond', Georgia, serif;
    --policy-body: sans-serif;

    /* Touch target minimum */
    --touch-min: 44px;
}

/* ── Fonts ── */
@font-face {
    font-family: "Libre";
    src: url(Fonts/LibreBaskerville-VariableFont_wght.ttf);
    font-display: swap;
    /* ACCESSIBILITY: prevents invisible text during load */
}

@font-face {
    font-family: "Inter";
    src: url(Fonts/Inter-VariableFont_opsz\,wght.ttf);
    font-display: swap;
}

/* ── Reset ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:focus-visible {
    outline: 3px solid var(--brand-teal);
    outline-offset: 3px;
    border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--logo-black);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    z-index: 99999;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    text-decoration: none;
    border-bottom-right-radius: 4px;
}

.skip-link:focus {
    top: 0;
}

/* ── Base ── */
html {
    scroll-behavior: smooth;
    font-size: clamp(14px, 1vw + 12px, 16px);
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    background-color: var(--soft-gray);
    background-image:
        linear-gradient(30deg, rgba(94, 127, 134, 0.04) 12%, transparent 12.5%, transparent 87%, rgba(94, 127, 134, 0.04) 87.5%, rgba(94, 127, 134, 0.04)),
        linear-gradient(150deg, rgba(94, 127, 134, 0.04) 12%, transparent 12.5%, transparent 87%, rgba(94, 127, 134, 0.04) 87.5%, rgba(94, 127, 134, 0.04)),
        linear-gradient(30deg, rgba(94, 127, 134, 0.04) 12%, transparent 12.5%, transparent 87%, rgba(94, 127, 134, 0.04) 87.5%, rgba(94, 127, 134, 0.04)),
        linear-gradient(150deg, rgba(94, 127, 134, 0.04) 12%, transparent 12.5%, transparent 87%, rgba(94, 127, 134, 0.04) 87.5%, rgba(94, 127, 134, 0.04));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    background-attachment: scroll;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.bg-light {
    background-color: var(--white) !important;
}

.bg-dark {
    background-color: var(--charcol-gray) !important;
}

/* ── Typography ── */
h1,
h2,
h5,
a {
    color: var(--logo-black) !important;
}

h1,
h2,
h3 {
    font-family: "Libre", Georgia, serif;
    overflow-wrap: break-word;
    word-break: break-word;
}

p {
    font-family: "Inter", sans-serif;
    overflow-wrap: break-word;
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem) !important;
}

li ul {
    font-family: "Inter", sans-serif;
}

/* ── Hero logo ── */
.hero-logo {
    display: flex;
    justify-content: center;
    position: absolute;
    z-index: 10;
    height: 17vh;
    height: 17svh;
    width: 100%;
    top: 0;
    min-height: 50px;
    max-height: 120px;
}

.hero-logo img {
    width: auto;
    height: 100%;
    max-width: 90%;
    object-fit: contain;
}


.lang-container {
    display: flex;
    align-items: center;
}


.lang-btn {

    background-color: #000;
    opacity: 0.8;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 0.9px solid rgba(88, 87, 87, 0.8);
    border-radius: 25px;
    padding: 6px 14px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.lang-btn:hover {
    transform: none;
    background-color: rgba(255, 255, 255, 0.65);
}

.lang-option {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: darkgray;
    padding: 2px 6px;
    border-radius: 12px;
    transition: all 0.2s ease-in-out;
}

.lang-option.active {
    color: #fff;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.05);
}

.lang-option:not(.active):hover {
    color: #000000;
    background-color: rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.divider {
    color: rgba(0, 0, 0, 0.2);
    pointer-events: none;
    user-select: none;
}

.flag-icon {
    width: 40px;
    height: 25px;
    object-fit: cover;
    border-radius: 5px;
    display: inline-block;
    vertical-align: middle;
}

.lang-btn .active {
    text-decoration: underline;
}
.hero-lang {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.nav-lang {
    margin-left: auto;
}

.divider {
    color: rgba(0, 0, 0, 0.3);
}

.h1wrapper {
    width: 70%;
    padding-top: 10vh;
    padding-top: 10svh;
}

.h1wrapper--index {
    width: 79%;
    margin-left: auto;
    margin-right: auto;
}

.h1wrapper--offset {
    margin-left: 10svw;
}

.h1wrapper--centered {
    margin-left: auto;
    margin-right: auto;
}

.h1wrapper--spaced {
    padding-bottom: 10vh;
    padding-bottom: 10svh;
}

.h1wrapper--faq {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.h1Pwrapper {
    padding-top: 5vh;
    padding-top: 5svh;
}

.h22wrapper {
    width: 70%;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 5vh;
    padding-bottom: 5svh;
    margin-top: 5vh;
    margin-top: 5svh;
}

.h22wrapper--wide {
    width: 80%;
    margin-top: 0;
}

.ctaWrapper {
    width: 70%;
    margin-right: auto;
    margin-left: auto;
}


.carousel .carousel-item {
    transition: transform 0.4s ease-in-out;
}

.carouselWrapper {
    height: 100vh;
    height: 100svh;
    position: relative;
    will-change: transform;
    min-height: 200px;
}

.carouselImg {
    object-fit: cover;
    height: 100vh;
    height: 100svh;
    width: 100%;
    transform: translateZ(0);
    object-position: center top;

}

.sponsor-belt {
    background-color: #1a1a1a;
    padding: 15px 0;
    overflow: hidden;
    width: 100%;
    display: flex;
}

.sponsor-track {
    display: flex;
    width: max-content;
    animation: ticker 35s linear infinite;
    will-change: transform;
}


.sponsor-track:hover {
    animation-play-state: paused;
}

.sponsor-group {
    display: flex;
    align-items: center;
    gap: 8vw;
    padding-right: 8vw;
    flex-shrink: 0;
}

.sponsor-group a {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    cursor: pointer;
}

.sponsorImgs {
    display: block;
    height: 60px;
    width: auto;
    object-fit: contain;
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}


/* ── Mobile carousel (portrait + landscape) ── */
@media (max-width: 768px) {
    .carouselWrapper .carousel-item {
        position: relative;
        height: 100svh;
        overflow: hidden;
    }

    .carouselWrapper .carousel-item::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: inherit;
        background-size: cover;
        background-position: center;
        filter: blur(20px) brightness(0.6);
        transform: scale(1.1);
        z-index: 0;
    }

    .carouselImg.d-block {
        display: block !important;
        height: 50svh !important;
        width: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
        position: relative;
        z-index: 1;
        top: 50%;
        transform: translateY(-50%);
    }

    .carousel-text-overlay-with-bg {
        background: radial-gradient(ellipse at center,
                rgba(0, 0, 0, 0.6) 0%,
                rgba(0, 0, 0, 0.50) 30%,
                rgba(0, 0, 0, 0.30) 60%,
                rgba(0, 0, 0, 0.1) 85%,
                rgba(0, 0, 0, 0) 120%) !important;
    }

    .lang-btn {
        padding: 5px 8px;
        font-size: 12px;
        gap: 3px;
    }

    .flag-icon {
        width: 25px;
        height: 15px;
        border-radius: 2px;
    }

    .sliding-navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
    }

    .nav-lang {
        margin-left: initial;
        order: 2;
    }


    .hero-lang {
        position: absolute;
        top: 2px;
        right: 2px;
        width: max-content;
        height: auto;
        flex-shrink: 0;
        z-index: 99;
    }

       .sponsor-group {
        gap: 12vw;
        padding-right: 12vw;
    }
    .sponsorImgs {
        height: 55px;     
    }

}

/* ── Landscape phone: keep carousel usable at short heights ── */
@media (max-height: 500px) and (orientation: landscape) {
    .carouselWrapper {
        height: 100svh;
        min-height: 180px;
    }

    .carouselImg {
        height: 100svh;
        object-position: center center;
    }

    .hero-logo {
        height: 12svh;
        max-height: 60px;
    }

    .scroll-chevron {
        bottom: 8px;
    }

    .scroll-chevron svg {
        width: 32px;
        height: 32px;
    }
}

/* ── Scroll chevron ── */
.scroll-chevron {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 1.8s ease-in-out infinite;
    cursor: pointer;
    min-width: var(--touch-min);
    min-height: var(--touch-min);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-chevron svg {
    width: 48px;
    height: 48px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

video {
    width: 100%;
    height: 100vh;
    height: 100svh;
    object-fit: cover;
}

.jump-nav-heading {
    padding-left: 1vh;
    padding-bottom: 2vh;
    font-size: clamp(0.85rem, 2vh, 1.1rem);
    margin-top: 2vh;
}

.jump-nav-grid {
    padding: 1vh;
    padding-top: 0 !important;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    grid-gap: 10px;
    justify-content: center;
    margin-top: 2vh;
    list-style: none;
}

.jump-nav-card {
    border-radius: 0.25rem;
    background-color: #f3f5f5;
    display: grid;
    color: #444;
    grid-template-columns: 20% auto;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    padding: 10px;
    list-style: none;
    min-height: var(--touch-min);
}

.jump-nav-card:hover,
.jump-nav-card:focus-within {
    background-color: #e5eaeb;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

.jump-nav-grid--simple .jump-nav-card {
    grid-template-columns: 1fr;
    margin: 2vh;
}

.jump-nav-card__icon {
    text-align: center;
    padding-left: 1vh;
    padding-top: 0.5vh;
}

.jump-nav-card__link {
    text-align: left;
    align-content: center;
    margin-left: 2vw;
    text-decoration: none;
    color: inherit;
    display: block;
}

.jump-nav-card__link:focus-visible {
    text-decoration: underline;
}

.jump-nav-grid--simple .jump-nav-card__link {
    text-align: center;
    margin-left: 2vw;
    margin-right: 2vw;
}


.ulWrapper {
    margin-top: 3vh;
    margin-top: 3svh;
    margin-left: 60px;
}

ul.custom-bullet {
    font-family: "Inter", sans-serif;
    font-size: 1.1em;
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

ul.custom-bullet li {
    margin: 0;
    margin-bottom: 0.5em;
    padding-left: 1.5em;
    position: relative;
}

ul.custom-bullet li::after {
    content: '';
    height: .6em;
    width: .6em;
    background: var(--accent-red);
    display: block;
    position: absolute;
    transform: rotate(45deg);
    top: .5em;
    left: 0;
}

ul.custom-bullet--teal li::after {
    background: var(--brand-teal);
}


.helpfulLinks {
    text-decoration: underline !important;
    color: blue !important;
}

.image-item {
    position: relative;
    overflow: hidden;
}

.download-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 44px;
    height: 44px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    background-image: url("data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjRkFGQUZBIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTEyIDE2bC02LTZoNHYtNmg0djZoNHoiLz48L3N2Zz4=");
    background-color: rgba(0, 0, 0, 0.80);
    backdrop-filter: blur(4px);
    border-radius: 50%;

}

.image-item:hover .download-icon {
    opacity: 0.85;
    pointer-events: auto;
}

.image-item:focus-within .download-icon {
    opacity: 0.85;
    pointer-events: auto;
}

.mapWrapper {
    display: grid;
    justify-content: center;
    height: fit-content;
}

.map {
    object-fit: cover;
    max-width: 100%;
}

.noBulletList {
    list-style-type: none;
}

.spacedList>li {
    margin-bottom: 5vh;
    margin-bottom: 5svh;
}

.spacedList>li:last-child {
    margin-bottom: 0 !important;
}

.imgObjectFit {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta {
    position: fixed;
    right: 0;
    top: 85vh;
    top: 85svh;
    z-index: 10000;
    text-decoration: none;
    background-color: var(--logo-black);
    opacity: 0.8;
    color: var(--white) !important;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px;
    border-top-left-radius: 0.35rem;
    border-bottom-left-radius: 0.35rem;
    min-height: var(--touch-min);
    min-width: var(--touch-min);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta:hover,
.cta:focus-visible {
    opacity: 1;
}

.imgPlaceholder {
    opacity: 0.3;
}

.details {
    grid-template-columns: 10% 30% 50%;
}

.policy-page *,
.policy-page *::before,
.policy-page *::after {
    box-sizing: border-box;
}

.policy-page {
    background: var(--policy-bg);
    color: var(--policy-text);
    font-family: var(--policy-body);
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.8;
    min-height: 100vh;
}

.policy-page .site-header {
    border-bottom: 1px solid var(--policy-border);
    padding: 1.4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.policy-page .site-header .site-logo {
    font-family: var(--policy-display);
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--policy-text-bright) !important;
    text-decoration: none;
    text-transform: uppercase;
}

.policy-page .back-link {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--policy-text) !important;
    text-decoration: none;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    min-height: var(--touch-min);
    padding: 0 4px;
}

.policy-page .back-link:hover,
.policy-page .back-link:focus-visible {
    color: var(--gold);
    text-decoration: underline;
}

.policy-page .back-link::before {
    content: '← ';
}

.policy-page .policy-wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
}

.policy-page .policy-hero {
    margin-bottom: 3.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--policy-border);
}

.policy-page .policy-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.policy-page .policy-hero h1 {
    font-family: var(--policy-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 300;
    color: var(--policy-text-bright) !important;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.policy-page .policy-meta {
    font-size: 0.78rem;
    color: var(--policy-text);
    letter-spacing: 0.05em;
}

.policy-page .policy-section {
    margin-bottom: 2.8rem;
}

.policy-page .policy-section h2 {
    font-family: var(--policy-display);
    font-size: clamp(1.2rem, 3vw, 1.45rem);
    font-weight: 400;
    color: var(--policy-text-bright) !important;
    margin-bottom: 0.8rem;
    letter-spacing: 0.03em;
}

.policy-page .policy-section p {
    margin-bottom: 0.9rem;
    color: var(--policy-text);
}

.policy-page .policy-section p:last-child {
    margin-bottom: 0;
}

.policy-page .policy-section a {
    color: var(--gold) !important;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(200, 169, 110, 0.4);
}

.policy-page .policy-section a:hover,
.policy-page .policy-section a:focus-visible {
    text-decoration-color: var(--gold);
}

.policy-page .callout {
    border-left: 2px solid var(--gold);
    background: var(--gold-dim);
    padding: 1rem 1.2rem;
    margin: 1.5rem 0;
    font-size: 0.88rem;
    color: var(--policy-text);
    line-height: 1.7;
}

.policy-page .callout strong {
    color: var(--policy-text-bright);
    font-weight: 400;
}

.policy-page .policy-footer {
    border-top: 1px solid var(--policy-border);
    padding: 2rem;
    text-align: center;
    font-size: 0.75rem;
    color: var(--policy-text);
    letter-spacing: 0.05em;
}

.policy-page .policy-footer a {
    color: var(--policy-text) !important;
    text-decoration: underline;
    text-underline-offset: 2px;
    margin: 0 0.6rem;
}

.policy-page .policy-footer a:hover,
.policy-page .policy-footer a:focus-visible {
    color: var(--gold) !important;
}

.policy-page .footer-links {
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem 0;
}

.policy-page .footer-cookie-btn {
    background: none;
    border: none;
    color: var(--policy-text);
    font-size: 0.75rem;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-family: var(--policy-body);
    letter-spacing: 0.05em;
    margin: 0 0.6rem;
    min-height: var(--touch-min);
    display: inline-flex;

}

.policy-page .footer-cookie-btn:hover,
.policy-page .footer-cookie-btn:focus-visible {
    color: var(--gold);
}

/* ══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   Order: large tablet → small tablet → mobile → small mobile
   + landscape phone overrides
═══════════════════════════════════════════ */

/* ── Large tablet / small laptop (≤1024px) ── */
@media only screen and (max-width: 1024px) {
    .h1wrapper--offset {
        width: 80%;
        margin-left: 5svw;
    }
}

/* ── Tablet (≤800px) ── */
@media only screen and (max-width: 800px) {
    .hero-logo {
        height: 7vh;
        height: 7svh;
        min-height: 44px;
    }

    .h1wrapper--index,
    .h1wrapper--centered,
    .h1wrapper--offset {
        width: 85%;
    }

    .h1wrapper--index,
    .h1wrapper--centered {
        padding-top: 12vh;
        padding-top: 12svh;
    }

    .h1wrapper--offset {
        margin-left: 7.5%;
        padding-top: 8vh;
        padding-top: 8svh;
    }

    .h1wrapper--spaced {
        padding-top: 16vh;
        padding-top: 16svh;
        padding-bottom: 8vh;
        padding-bottom: 8svh;
    }

    .h22wrapper,
    .h22wrapper--wide {
        width: 85%;
    }

    .h2wrapperMain,
    .h2WhatOn,
    .ctaWrapper {
        width: 85%;
    }

    .ulWrapper {
        margin-left: 40px;
    }
}

/* ── Mobile (≤600px) ── */
@media only screen and (max-width: 600px) {
    .hero-logo {
        height: 10vh;
        height: 10svh;
        min-height: 44px;
        max-height: 80px;
    }

    .h1wrapper--index,
    .h1wrapper--centered,
    .h1wrapper--offset,
    .h1wrapper--faq {
        width: 90%;
    }

    .h1wrapper--index,
    .h1wrapper--centered {
        padding-top: 12vh;
        padding-top: 12svh;
    }

    .h1wrapper--offset {
        margin-left: 5%;
        padding-top: 6vh;
        padding-top: 6svh;
    }

    .h1wrapper--spaced {
        padding-top: 10vh;
        padding-top: 10svh;
        padding-bottom: 6vh;
        padding-bottom: 6svh;
    }

    .h1Pwrapper {
        padding-top: 3vh;
        padding-top: 3svh;
    }

    .h22wrapper,
    .h22wrapper--wide {
        width: 90%;
        padding-bottom: 3vh;
        padding-bottom: 3svh;
        margin-top: 2vh;
        margin-top: 2svh;
    }

    .h2wrapperMain,
    .h2WhatOn,
    .ctaWrapper {
        width: 90%;
        padding-top: 5vh;
        padding-bottom: 5vh;
        padding-top: 5svh;
        padding-bottom: 5svh;
    }

    .eventCard-prominent h2 {
        font-size: 2rem !important;
    }

    .ulWrapper {
        margin-left: 15px;
        margin-top: 3vh;
        margin-top: 3svh;
    }

    .cta {
        font-size: 0.9rem;
        padding: 8px 12px;
        top: 90vh;
        top: 90svh;
    }

    h3 {
        font-size: clamp(1rem, 4vw, 1.25rem) !important;
    }

    .spacedList>li {
        margin-bottom: 3vh;
        margin-bottom: 3svh;
    }

    .download-icon {
        opacity: 0.85;
        pointer-events: auto;
        width: 36px;
        height: 36px;
        background-size: 18px;
        top: 6px;
        right: 6px;
    }

    .policy-page .policy-wrap {
        padding: 2.5rem 1.2rem 4rem;
    }

    .policy-page .site-header {
        padding: 1rem 1.2rem;
    }


    .jump-nav-grid {
        grid-template-columns: 1fr;
    }

    .sponsor-track {
       
        animation: ticker 20s linear infinite;
    }

        .sponsor-group {
        gap: 12vw;
        padding-right: 12vw;
    }
    .sponsorImgs {
        height: 55px;     
    }
}

/* ── Small mobile (≤400px) ── */
@media only screen and (max-width: 400px) {

    .h1wrapper--index,
    .h1wrapper--centered,
    .h1wrapper--offset,
    .h1wrapper--faq {
        width: 95%;
    }

    .h1wrapper--offset {
        margin-left: 2.5%;
        padding-top: 5vh;
        padding-top: 5svh;
    }

    .h22wrapper,
    .h22wrapper--wide {
        width: 95%;
    }

    .h2wrapperMain,
    .h2WhatOn,
    .ctaWrapper {
        width: 95%;
    }

    .cta {
        font-size: 0.875rem;
        padding: 6px 10px;
    }

    .sponsor-track {
       
        animation: ticker 20s linear infinite;
    }

        .sponsor-group {
        gap: 12vw;
        padding-right: 12vw;
    }
    .sponsorImgs {
        height: 55px;     
    }

    .lang-btn {
        padding: 6px 8px;
    }

    .lang-btn {
        font-size: 0;
    }

    .flag-icon {
        width: 20px;
        height: 14px;
    }

    .divider {
        margin: 0 4px;
    }


}

/* ── Landscape phone (short + wide viewports) ── */
@media only screen and (max-height: 430px) and (orientation: landscape) {

    .h1wrapper,
    .h1wrapper--index,
    .h1wrapper--centered,
    .h1wrapper--offset {
        padding-top: 15vw;
    
    }

    .h1wrapper--spaced {
        padding-bottom: 4vw;
    }

    .h1Pwrapper {
        padding-top: 2vw;
    }

    .h22wrapper {
        padding-bottom: 3vw;
        margin-top: 3vw;
    }

    .cta {
        top: 80svh;
    }
}