:root {
    --bg: #070815;
    --bg-soft: #0d1024;
    --surface: rgba(17, 20, 43, 0.72);
    --surface-strong: rgba(23, 27, 55, 0.9);
    --line: rgba(255, 255, 255, 0.11);
    --line-bright: rgba(164, 190, 255, 0.3);
    --text: #f7f8ff;
    --muted: #a8adc6;
    --accent: #9df0ff;
    --accent-two: #a77bff;
    --pink: #ff87d4;
    --success: #86ffd1;
    --shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 13px;
    --shell: 1200px;
    --header-height: 84px;
    color-scheme: dark;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 18% 7%, rgba(71, 108, 255, 0.12), transparent 28rem),
        radial-gradient(circle at 86% 33%, rgba(168, 74, 255, 0.1), transparent 31rem),
        var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    z-index: -1;
    inset: 0;
    background-image:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.55) 0 1px, transparent 1.5px),
        radial-gradient(circle at 74% 12%, rgba(157, 240, 255, 0.42) 0 1px, transparent 1.5px),
        radial-gradient(circle at 31% 81%, rgba(255, 255, 255, 0.32) 0 1px, transparent 1.5px),
        radial-gradient(circle at 91% 70%, rgba(167, 123, 255, 0.38) 0 1px, transparent 1.5px);
    background-size: 270px 270px, 350px 350px, 420px 420px, 310px 310px;
    content: "";
    opacity: 0.42;
    pointer-events: none;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

button {
    color: inherit;
}

:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 4px;
}

::selection {
    background: rgba(157, 240, 255, 0.28);
    color: #fff;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: 10px;
    background: #fff;
    color: #080a18;
    font-weight: 800;
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.shell {
    width: min(calc(100% - 40px), var(--shell));
    margin-inline: auto;
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    transition: background-color 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease;
}

.site-header.is-scrolled {
    border-color: var(--line);
    background: rgba(7, 8, 21, 0.78);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(20px) saturate(140%);
}

.site-header__inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
}

.brand img {
    width: auto;
    height: 44px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    color: #d9dcef;
    font-size: 0.92rem;
    font-weight: 650;
}

.site-nav a,
.header-back {
    position: relative;
    transition: color 180ms ease;
}

.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), var(--accent-two));
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms ease;
}

.site-nav a:hover,
.header-back:hover {
    color: #fff;
}

.site-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 12px 10px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.nav-toggle__line {
    display: block;
    width: 100%;
    height: 1px;
    margin: 5px 0;
    background: #fff;
    transition: transform 180ms ease;
}

.header-back {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.hero {
    position: relative;
    display: grid;
    min-height: min(810px, 92vh);
    overflow: hidden;
    align-items: center;
    padding: calc(var(--header-height) + 72px) 0 92px;
    isolation: isolate;
}

.hero::before {
    position: absolute;
    z-index: -1;
    top: 14%;
    left: 50%;
    width: min(970px, 90vw);
    aspect-ratio: 1.9;
    border: 1px solid rgba(164, 190, 255, 0.11);
    border-radius: 50%;
    box-shadow: inset 0 0 120px rgba(77, 104, 255, 0.06), 0 0 140px rgba(120, 92, 255, 0.06);
    content: "";
    transform: translateX(-50%) rotate(-8deg);
}

.hero__inner {
    position: relative;
    z-index: 2;
    max-width: 1060px;
    text-align: center;
}

.eyebrow {
    display: flex;
    margin: 0 0 20px;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.19em;
    line-height: 1.3;
    text-transform: uppercase;
}

.hero .eyebrow {
    justify-content: center;
}

.eyebrow > span {
    width: 24px;
    height: 1px;
    background: currentColor;
    box-shadow: 0 0 9px currentColor;
}

.hero h1,
.detail-hero h1,
.not-found h1 {
    margin: 0;
    font-size: clamp(3rem, 6.4vw, 6.25rem);
    font-weight: 760;
    letter-spacing: -0.062em;
    line-height: 0.98;
    text-wrap: balance;
}

.hero h1 em {
    background: linear-gradient(100deg, #fff 2%, #b5f3ff 44%, #c0a9ff 82%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: normal;
    text-shadow: 0 0 50px rgba(157, 240, 255, 0.12);
}

.hero__lead {
    margin: 28px auto 36px;
    color: #c8cce0;
    font-size: clamp(1.08rem, 2vw, 1.4rem);
    font-weight: 450;
}

.hero__aurora {
    position: absolute;
    z-index: -2;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.25;
    pointer-events: none;
}

.hero__aurora--one {
    top: 12%;
    left: -12%;
    width: 42vw;
    height: 42vw;
    background: #235fff;
}

.hero__aurora--two {
    right: -13%;
    bottom: 3%;
    width: 38vw;
    height: 38vw;
    background: #9947f5;
}

.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    width: 1px;
    height: 40px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.14);
}

.hero__scroll span {
    display: block;
    width: 100%;
    height: 45%;
    background: var(--accent);
    box-shadow: 0 0 7px var(--accent);
    animation: scroll-light 2.2s ease-in-out infinite;
}

@keyframes scroll-light {
    0% { transform: translateY(-120%); }
    55%, 100% { transform: translateY(240%); }
}

.button {
    display: inline-flex;
    min-height: 52px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.2;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button--primary {
    border-color: rgba(192, 240, 255, 0.5);
    background: linear-gradient(115deg, rgba(157, 240, 255, 0.2), rgba(167, 123, 255, 0.24));
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.25), 0 14px 50px rgba(103, 98, 255, 0.18);
    backdrop-filter: blur(12px);
}

.button:hover {
    border-color: rgba(255, 255, 255, 0.78);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 18px 55px rgba(92, 113, 255, 0.26);
    transform: translateY(-2px);
}

.button--wide {
    width: 100%;
}

.section,
.detail-section {
    position: relative;
    padding: 110px 0;
}

.section--active {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(35, 43, 92, 0.13), transparent 70%);
}

.section--archive {
    padding-top: 96px;
}

.section-heading {
    display: grid;
    margin-bottom: 44px;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 390px);
    align-items: end;
    gap: 40px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(2.3rem, 4.5vw, 4.3rem);
    font-weight: 730;
    letter-spacing: -0.05em;
    line-height: 1;
}

.section-heading > p {
    margin: 0 0 3px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.65;
}

.event-grid {
    display: grid;
    gap: 24px;
}

.event-grid--active {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.event-grid--archive {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.event-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: linear-gradient(150deg, rgba(25, 29, 58, 0.8), rgba(12, 14, 31, 0.73));
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.17);
    transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
    backdrop-filter: blur(16px);
}

.event-card:hover {
    border-color: var(--line-bright);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.27), 0 0 55px rgba(88, 98, 255, 0.08);
    transform: translateY(-5px);
}

.event-card__media {
    position: relative;
    display: block;
    overflow: hidden;
    background: #0c0f22;
}

.event-card--active .event-card__media,
.event-card--archive .event-card__media {
    aspect-ratio: 210 / 297;
}

.event-card__media::after {
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(transparent, rgba(4, 6, 15, 0.63));
    content: "";
    pointer-events: none;
}

.event-card__media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 550ms cubic-bezier(0.2, 0.75, 0.25, 1), filter 300ms ease;
}

.event-card:hover .event-card__media > img {
    filter: saturate(1.08) contrast(1.03);
    transform: scale(1.035);
}

.status-pill,
.archive-mark {
    position: absolute;
    z-index: 2;
    top: 16px;
    left: 16px;
    display: inline-flex;
    min-height: 30px;
    padding: 6px 11px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    align-items: center;
    gap: 7px;
    background: rgba(5, 8, 20, 0.66);
    color: #eef1ff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.status-pill i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 10px var(--success);
}

.archive-mark {
    color: #d8d9e7;
}

.event-card__body {
    padding: 22px 23px 23px;
}

.event-card--archive .event-card__body {
    padding: 19px 20px 21px;
}

.event-meta {
    display: flex;
    min-width: 0;
    margin: 0 0 10px;
    flex-wrap: wrap;
    gap: 5px 14px;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.055em;
    line-height: 1.35;
    text-transform: uppercase;
}

.event-meta span + span::before {
    margin-right: 9px;
    color: rgba(255, 255, 255, 0.3);
    content: "·";
}

.event-card h3 {
    margin: 0;
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    font-weight: 720;
    letter-spacing: -0.032em;
    line-height: 1.15;
}

.event-card--archive h3 {
    display: -webkit-box;
    overflow: hidden;
    font-size: 1.26rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.event-card h3 a:hover {
    color: var(--accent);
}

.event-card__summary {
    display: -webkit-box;
    margin: 12px 0 17px;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.event-card--archive .event-card__summary {
    margin-block: 9px 14px;
    font-size: 0.84rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e5e8f8;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.text-link span {
    color: var(--accent);
    transition: transform 180ms ease;
}

.text-link:hover span {
    transform: translateX(4px);
}

.image-placeholder {
    position: relative;
    display: grid;
    width: 100%;
    height: 100%;
    overflow: hidden;
    place-items: center;
    background:
        radial-gradient(circle at 50% 50%, rgba(157, 240, 255, 0.09), transparent 15%),
        radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.36) 0 1px, transparent 1.5px),
        radial-gradient(circle at 79% 31%, rgba(167, 123, 255, 0.55) 0 1px, transparent 1.5px),
        radial-gradient(circle at 67% 75%, rgba(255, 255, 255, 0.32) 0 1px, transparent 1.5px),
        linear-gradient(145deg, #10152c, #090b19);
    background-size: auto, 80px 80px, 120px 120px, 160px 160px, auto;
}

.image-placeholder::before,
.image-placeholder::after {
    position: absolute;
    width: 36%;
    aspect-ratio: 1;
    border: 1px solid rgba(157, 240, 255, 0.2);
    border-radius: 50%;
    content: "";
}

.image-placeholder::after {
    width: 23%;
    border-color: rgba(167, 123, 255, 0.24);
}

.image-placeholder > span {
    width: 22px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #d7f8ff;
    box-shadow: 0 0 18px #9df0ff, 0 0 60px rgba(157, 240, 255, 0.72), 0 0 110px rgba(167, 123, 255, 0.4);
}

.image-placeholder--small {
    width: 116px;
    height: 84px;
    margin-inline: auto;
    border: 1px solid var(--line);
    border-radius: 14px;
}

.image-placeholder--small > span {
    width: 11px;
}

.empty-state {
    padding: 58px 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.025);
    color: var(--muted);
    text-align: center;
}

.empty-state h3 {
    margin: 20px 0 5px;
    color: var(--text);
    font-size: 1.5rem;
}

.empty-state p {
    max-width: 560px;
    margin: 0 auto;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: rgba(4, 5, 13, 0.5);
}

.site-footer__inner {
    display: grid;
    min-height: 210px;
    padding-block: 38px 28px;
    grid-template-areas:
        "brand identity links"
        "copy identity links";
    grid-template-columns: minmax(190px, 0.8fr) minmax(250px, 1.2fr) auto;
    align-items: start;
    gap: 22px 44px;
}

.brand--footer {
    grid-area: brand;
}

.brand--footer img {
    height: 35px;
    opacity: 0.92;
}

.site-footer p {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
}

.site-footer__identity {
    display: grid;
    grid-area: identity;
    gap: 12px;
}

.site-footer__identity strong {
    color: var(--text);
    font-size: 0.88rem;
}

.site-footer__identity a {
    border-bottom: 1px solid rgba(157, 240, 255, 0.28);
    color: #d7daeb;
}

.site-footer__identity a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.site-footer__links {
    display: flex;
    grid-area: links;
    align-items: flex-end;
    flex-direction: column;
    gap: 8px;
}

.site-footer__links a,
.site-footer__links button {
    padding: 3px 0;
    border: 0;
    border-bottom: 1px solid rgba(157, 240, 255, 0.28);
    background: transparent;
    color: #d7daeb;
    cursor: pointer;
    font-size: 0.82rem;
    line-height: 1.4;
    transition: border-color 180ms ease, color 180ms ease;
}

.site-footer__links a:hover,
.site-footer__links button:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.site-footer__copy {
    grid-area: copy;
}

/* Cookie consent */
.cookie-banner {
    position: fixed;
    z-index: 400;
    right: 20px;
    bottom: max(20px, env(safe-area-inset-bottom));
    left: 20px;
    max-height: calc(100dvh - 40px);
    overflow: auto;
    overscroll-behavior: contain;
}

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

.cookie-banner__panel {
    display: grid;
    width: min(100%, 1120px);
    margin-inline: auto;
    padding: 24px;
    border: 1px solid rgba(185, 208, 255, 0.25);
    border-radius: var(--radius-md);
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 26px;
    background: linear-gradient(145deg, rgba(18, 22, 48, 0.97), rgba(7, 9, 22, 0.98));
    box-shadow: 0 24px 90px rgba(0, 0, 0, 0.62), inset 0 1px rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
}

.cookie-banner__copy {
    max-width: 690px;
}

.cookie-banner__eyebrow {
    margin: 0 0 5px;
    color: var(--accent);
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.cookie-banner h2,
.cookie-dialog h2 {
    margin: 0;
    font-size: clamp(1.25rem, 2.6vw, 1.75rem);
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.cookie-banner__copy > p:not(.cookie-banner__eyebrow),
.cookie-dialog__inner > p:not(.cookie-banner__eyebrow, .cookie-dialog__policy) {
    margin: 8px 0;
    color: #b5bad0;
    font-size: 0.84rem;
    line-height: 1.55;
}

.cookie-banner__copy > a,
.cookie-dialog__policy a {
    border-bottom: 1px solid rgba(157, 240, 255, 0.34);
    color: #d9faff;
    font-size: 0.78rem;
}

.cookie-banner__copy > a:hover,
.cookie-dialog__policy a:hover {
    border-color: var(--accent);
}

.cookie-banner__actions {
    display: grid;
    min-width: 410px;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

.cookie-action {
    min-height: 46px;
    padding: 10px 17px;
    border: 1px solid rgba(205, 216, 255, 0.32);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    color: var(--text);
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 800;
    line-height: 1.2;
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.cookie-action:hover {
    border-color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.cookie-action--decision {
    border-color: rgba(181, 209, 255, 0.48);
    background: linear-gradient(115deg, rgba(157, 240, 255, 0.12), rgba(167, 123, 255, 0.14));
}

.cookie-banner__actions .cookie-action--settings {
    grid-column: 1 / -1;
    grid-row: 2;
    min-height: 38px;
    border-color: transparent;
    background: transparent;
    color: #b8bed5;
    font-weight: 650;
}

.cookie-dialog {
    width: min(660px, calc(100% - 32px));
    max-width: none;
    max-height: min(780px, calc(100dvh - 32px));
    padding: 0;
    overflow: auto;
    border: 1px solid rgba(185, 208, 255, 0.25);
    border-radius: var(--radius-md);
    background: linear-gradient(150deg, rgba(19, 23, 50, 0.99), rgba(7, 9, 22, 0.99));
    color: var(--text);
    box-shadow: 0 30px 110px rgba(0, 0, 0, 0.72), inset 0 1px rgba(255, 255, 255, 0.08);
}

.cookie-dialog:not([open]) {
    display: none;
}

.cookie-dialog::backdrop {
    background: rgba(2, 3, 10, 0.76);
    backdrop-filter: blur(10px);
}

.cookie-dialog__inner {
    position: relative;
    padding: 30px;
}

.cookie-dialog__close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    cursor: pointer;
    font-size: 1.35rem;
    line-height: 1;
    place-items: center;
}

.cookie-categories {
    display: grid;
    margin-top: 22px;
    gap: 11px;
}

.cookie-category {
    display: grid;
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.025);
}

.cookie-category h3 {
    margin: 0 0 4px;
    font-size: 0.98rem;
}

.cookie-category p {
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.5;
}

.cookie-toggle {
    position: relative;
    display: inline-flex;
    cursor: pointer;
}

.cookie-toggle input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.cookie-toggle > span:last-child {
    position: relative;
    display: block;
    width: 48px;
    height: 28px;
    border: 1px solid rgba(205, 216, 255, 0.38);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    transition: border-color 180ms ease, background 180ms ease;
}

.cookie-toggle > span:last-child::after {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #d6daeb;
    content: "";
    transition: transform 180ms ease, background 180ms ease;
}

.cookie-toggle input:checked + span {
    border-color: rgba(157, 240, 255, 0.72);
    background: rgba(126, 127, 255, 0.32);
}

.cookie-toggle input:checked + span::after {
    background: var(--accent);
    box-shadow: 0 0 15px rgba(157, 240, 255, 0.46);
    transform: translateX(20px);
}

.cookie-toggle input:focus-visible + span {
    outline: 3px solid var(--accent);
    outline-offset: 4px;
}

.cookie-toggle--locked {
    cursor: not-allowed;
    opacity: 0.7;
}

.cookie-dialog__policy {
    margin: 14px 0 0;
}

.cookie-dialog__actions {
    display: grid;
    margin-top: 24px;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.cookie-dialog__actions .cookie-action {
    border-color: rgba(181, 209, 255, 0.48);
    background: linear-gradient(115deg, rgba(157, 240, 255, 0.12), rgba(167, 123, 255, 0.14));
}

/* Cookie policy */
.page-policy main {
    min-height: 70vh;
}

.policy-hero {
    padding: calc(var(--header-height) + 84px) 0 76px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(34, 41, 89, 0.17), transparent);
}

.policy-hero__inner {
    max-width: 900px;
}

.policy-hero h1 {
    margin: 13px 0 18px;
    font-size: clamp(2.75rem, 7vw, 5.7rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.policy-hero__inner > p:not(.eyebrow, .policy-updated) {
    max-width: 680px;
    margin: 0;
    color: #c2c6d9;
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.policy-updated {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 0.78rem;
}

.policy-layout {
    display: grid;
    padding-block: 72px 110px;
    grid-template-columns: 220px minmax(0, 820px);
    justify-content: space-between;
    gap: 64px;
}

.policy-nav {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    display: flex;
    height: max-content;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    flex-direction: column;
    gap: 4px;
    background: rgba(15, 18, 39, 0.65);
    backdrop-filter: blur(16px);
}

.policy-nav p {
    margin: 0 0 7px;
    color: var(--accent);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.policy-nav a {
    padding: 6px 8px;
    border-radius: 7px;
    color: #c3c7da;
    font-size: 0.8rem;
    line-height: 1.35;
}

.policy-nav a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
}

.policy-content {
    min-width: 0;
}

.policy-content section {
    scroll-margin-top: calc(var(--header-height) + 28px);
}

.policy-content section + section {
    margin-top: 64px;
    padding-top: 64px;
    border-top: 1px solid var(--line);
}

.policy-content h2 {
    margin: 0 0 20px;
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    line-height: 1.14;
    letter-spacing: -0.035em;
}

.policy-content p,
.policy-content li,
.company-card {
    color: #bcc1d4;
    font-size: 0.94rem;
}

.policy-content p {
    margin: 0 0 18px;
}

.policy-content a,
.company-card a {
    border-bottom: 1px solid rgba(157, 240, 255, 0.35);
    color: #d9faff;
    overflow-wrap: anywhere;
}

.policy-content a:hover,
.company-card a:hover {
    border-color: var(--accent);
}

.policy-content code {
    padding: 0.13em 0.36em;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.055);
    color: #e9eaff;
    font-size: 0.86em;
    overflow-wrap: anywhere;
}

.company-card {
    margin-top: 24px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgba(25, 29, 58, 0.64), rgba(12, 14, 31, 0.56));
    font-style: normal;
    line-height: 1.75;
}

.company-card strong {
    color: var(--text);
    font-size: 1.05rem;
}

.policy-table-wrap {
    width: 100%;
    margin: 25px 0;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(4, 6, 15, 0.35);
    overscroll-behavior-inline: contain;
}

.policy-table-wrap:focus-visible {
    outline-offset: 5px;
}

.policy-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    font-size: 0.76rem;
    line-height: 1.5;
}

.policy-table th,
.policy-table td {
    padding: 14px 15px;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
    text-align: left;
}

.policy-table th {
    background: rgba(157, 240, 255, 0.055);
    color: var(--text);
    font-size: 0.69rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.policy-table td {
    color: #b5bacf;
}

.policy-table tbody tr:last-child td {
    border-bottom: 0;
}

.policy-note {
    padding: 17px 18px;
    border-left: 3px solid var(--accent-two);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    background: rgba(167, 123, 255, 0.075);
}

.inline-settings-button {
    padding: 0;
    border: 0;
    border-bottom: 1px solid rgba(157, 240, 255, 0.35);
    background: transparent;
    color: #d9faff;
    cursor: pointer;
}

.inline-settings-button:hover {
    border-color: var(--accent);
}

/* Event detail */
.page-detail {
    background-color: var(--bg);
}

.detail-hero {
    position: relative;
    overflow: hidden;
    padding: calc(var(--header-height) + 78px) 0 112px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(34, 41, 89, 0.16), transparent);
    isolation: isolate;
}

.detail-hero::after {
    position: absolute;
    z-index: -1;
    top: 28%;
    left: 50%;
    width: min(880px, 90vw);
    aspect-ratio: 2.3;
    border: 1px solid rgba(157, 240, 255, 0.09);
    border-radius: 50%;
    content: "";
    transform: translateX(-50%) rotate(-5deg);
}

.detail-hero__glow {
    position: absolute;
    z-index: -2;
    top: -50%;
    left: 50%;
    width: min(820px, 100vw);
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(82, 77, 255, 0.14);
    filter: blur(95px);
    transform: translateX(-50%);
}

.detail-hero__content {
    max-width: 960px;
    text-align: center;
}

.breadcrumbs {
    display: flex;
    margin-bottom: 45px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #858ba8;
    font-size: 0.78rem;
    font-weight: 650;
}

.breadcrumbs a:hover {
    color: var(--accent);
}

.detail-hero .eyebrow {
    justify-content: center;
}

.detail-hero h1 {
    font-size: clamp(2.8rem, 6.2vw, 5.8rem);
}

.detail-hero__lead {
    max-width: 720px;
    margin: 26px auto 0;
    color: #b9bed3;
    font-size: clamp(1rem, 2vw, 1.22rem);
    line-height: 1.65;
    text-wrap: balance;
}

.detail-facts {
    display: flex;
    margin-top: 28px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 11px;
}

.detail-facts span {
    display: inline-flex;
    min-height: 38px;
    padding: 8px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.035);
    color: #d7daeb;
    font-size: 0.78rem;
    font-weight: 700;
    backdrop-filter: blur(12px);
}

.detail-facts i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
}

.detail-cover-wrap {
    position: relative;
    z-index: 3;
    margin-top: -65px;
}

.detail-cover {
    width: 100%;
    height: 330px;
    max-height: 330px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-lg);
    background: var(--bg-soft);
    box-shadow: var(--shadow), 0 0 90px rgba(83, 97, 255, 0.09);
}

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

.detail-layout {
    display: grid;
    padding-block: 92px 22px;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 30px;
}

.detail-main {
    width: 100%;
    min-width: 0;
}

.rich-text {
    color: #c8ccdc;
    font-size: clamp(1rem, 1.4vw, 1.1rem);
    line-height: 1.85;
}

.rich-text > :first-child {
    margin-top: 0;
}

.rich-text > :last-child {
    margin-bottom: 0;
}

.rich-text h2,
.rich-text h3 {
    margin: 2em 0 0.7em;
    color: var(--text);
    font-weight: 720;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.rich-text h2 {
    font-size: 2rem;
}

.rich-text h3 {
    font-size: 1.45rem;
}

.rich-text a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(157, 240, 255, 0.36);
    text-underline-offset: 3px;
}

.rich-text blockquote {
    margin: 2em 0;
    padding: 4px 0 4px 24px;
    border-left: 2px solid var(--accent);
    color: #edf0ff;
    font-size: 1.1em;
}

.detail-section {
    padding-block: 88px;
}

.detail-section + .detail-section {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-heading--compact {
    margin-bottom: 32px;
}

.section-heading--compact h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-heading--compact > p {
    justify-self: end;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
    gap: 10px;
}

.gallery-item {
    position: relative;
    min-width: 0;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    aspect-ratio: 4 / 3;
    background: #0c0f22;
    cursor: zoom-in;
}

.gallery-item--featured {
    grid-column: auto;
    grid-row: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease, filter 250ms ease;
}

.gallery-item:hover img {
    filter: brightness(0.8);
    transform: scale(1.025);
}

.gallery-item__zoom {
    position: absolute;
    z-index: 2;
    top: 14px;
    right: 14px;
    display: grid;
    width: 37px;
    height: 37px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    background: rgba(6, 8, 20, 0.62);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0;
    place-items: center;
    transform: scale(0.84);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(10px);
}

.gallery-item:hover .gallery-item__zoom,
.gallery-item:focus-visible .gallery-item__zoom {
    opacity: 1;
    transform: scale(1);
}

.gallery-item__caption {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 45px 16px 13px;
    overflow: hidden;
    background: linear-gradient(transparent, rgba(4, 6, 15, 0.82));
    color: #fff;
    font-size: 0.78rem;
    line-height: 1.35;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.video-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    aspect-ratio: 16 / 9;
    background: #03040b;
    box-shadow: var(--shadow);
    isolation: isolate;
}

.video-consent:not(.is-loaded) {
    background:
        radial-gradient(circle at 22% 18%, rgba(76, 112, 255, 0.32), transparent 38%),
        radial-gradient(circle at 82% 78%, rgba(174, 73, 255, 0.22), transparent 40%),
        linear-gradient(145deg, #0d1024, #050611 72%);
}

.video-consent:not(.is-loaded)::before,
.video-consent:not(.is-loaded)::after {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(157, 240, 255, 0.13);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.video-consent:not(.is-loaded)::before {
    top: 8%;
    left: 7%;
    width: 86%;
    height: 82%;
    transform: rotate(-7deg);
}

.video-consent:not(.is-loaded)::after {
    top: 27%;
    left: 16%;
    width: 68%;
    height: 50%;
    border-color: rgba(167, 123, 255, 0.12);
    transform: rotate(9deg);
}

.video-consent__content {
    position: absolute;
    inset: 0;
    display: flex;
    width: min(100%, 620px);
    height: 100%;
    margin-inline: auto;
    padding: clamp(20px, 4vw, 44px);
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.video-consent__play {
    position: relative;
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    border: 1px solid rgba(157, 240, 255, 0.42);
    border-radius: 50%;
    background: rgba(157, 240, 255, 0.08);
    box-shadow: 0 0 38px rgba(91, 126, 255, 0.22);
    place-items: center;
}

.video-consent__play::after {
    width: 0;
    height: 0;
    margin-left: 3px;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 11px solid var(--accent);
    content: "";
}

.video-consent__eyebrow {
    margin: 0 0 3px;
    color: var(--accent);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.video-consent h3 {
    margin: 0;
    font-size: clamp(1.15rem, 2.5vw, 1.65rem);
    line-height: 1.2;
}

.video-consent__content > p:not(.video-consent__eyebrow) {
    max-width: 520px;
    margin: 8px 0 14px;
    color: #b9bed2;
    font-size: clamp(0.75rem, 1.5vw, 0.86rem);
    line-height: 1.5;
}

.video-consent .button {
    min-height: 44px;
    padding: 10px 18px;
    cursor: pointer;
    font-size: 0.8rem;
}

.video-consent__policy {
    margin-top: 10px;
    border-bottom: 1px solid rgba(157, 240, 255, 0.3);
    color: #d9faff;
    font-size: 0.72rem;
    line-height: 1.3;
}

.video-consent__policy:hover {
    border-color: var(--accent);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
    gap: 20px;
}

.video-item {
    min-width: 0;
    margin: 0;
}

.video-item figcaption {
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.82rem;
}

.video-frame iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 0;
    inset: 0;
}

.detail-return {
    padding-block: 48px 105px;
}

.text-link--large {
    gap: 12px;
    font-size: 0.95rem;
}

.text-link--large:hover span {
    transform: translateX(-4px);
}

.not-found {
    display: flex;
    min-height: calc(100vh - 170px);
    padding-block: calc(var(--header-height) + 70px) 100px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.not-found .image-placeholder--large {
    width: min(280px, 70vw);
    height: 170px;
    margin-bottom: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.not-found .eyebrow {
    justify-content: center;
}

.not-found h1 {
    max-width: 760px;
    font-size: clamp(2.4rem, 6vw, 5rem);
}

.not-found > p:not(.eyebrow) {
    max-width: 560px;
    margin: 24px auto 32px;
    color: var(--muted);
}

.lightbox {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    margin: 0;
    padding: 0;
    border: 0;
    background: rgba(3, 4, 11, 0.95);
    color: #fff;
    opacity: 0;
    transition: opacity 180ms ease;
}

.lightbox[open] {
    display: grid;
    opacity: 1;
}

.lightbox::backdrop {
    background: rgba(3, 4, 11, 0.95);
    backdrop-filter: blur(16px);
}

.lightbox__inner {
    position: relative;
    display: grid;
    width: 100%;
    height: 100%;
    padding: 72px 80px 55px;
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    grid-template-rows: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
}

.lightbox figure {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 0;
    margin: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox figure img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: calc(100vh - 160px);
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 24px 90px rgba(0, 0, 0, 0.6);
}

.lightbox figcaption {
    min-height: 25px;
    margin-top: 11px;
    color: #c7cad9;
    font-size: 0.83rem;
    text-align: center;
}

.lightbox__close,
.lightbox__nav {
    display: grid;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    place-items: center;
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.lightbox__close:hover,
.lightbox__nav:hover {
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.04);
}

.lightbox__close {
    position: absolute;
    z-index: 5;
    top: 18px;
    right: 22px;
    font-size: 1.7rem;
    font-weight: 200;
}

.lightbox__nav--prev {
    grid-column: 1;
}

.lightbox figure {
    grid-column: 2;
}

.lightbox__nav--next {
    grid-column: 3;
}

.lightbox__count {
    margin: 0;
    grid-column: 2;
    color: #8e93aa;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
}

body.has-lightbox {
    overflow: hidden;
}

@media (max-width: 960px) {
    .event-grid--active,
    .event-grid--archive {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .policy-layout {
        grid-template-columns: 190px minmax(0, 1fr);
        gap: 38px;
    }
}

@media (max-width: 740px) {
    :root {
        --header-height: 72px;
        --radius-lg: 21px;
        --radius-md: 16px;
    }

    .shell {
        width: min(calc(100% - 28px), var(--shell));
    }

    .brand img {
        height: 37px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle__line:first-child {
        transform: translateY(3px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
        transform: translateY(-3px) rotate(-45deg);
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        right: 14px;
        left: 14px;
        display: none;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 16px;
        align-items: stretch;
        flex-direction: column;
        gap: 2px;
        background: rgba(8, 10, 25, 0.96);
        box-shadow: var(--shadow);
        backdrop-filter: blur(20px);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 11px 12px;
        border-radius: 9px;
    }

    .site-nav a:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .site-nav a::after {
        display: none;
    }

    .hero {
        min-height: 690px;
        padding-top: calc(var(--header-height) + 54px);
    }

    .hero h1 {
        font-size: clamp(2.7rem, 12.5vw, 4.5rem);
    }

    .hero__lead {
        margin-top: 22px;
    }

    .hero__aurora--one,
    .hero__aurora--two {
        width: 90vw;
        height: 90vw;
    }

    .section,
    .detail-section {
        padding-block: 76px;
    }

    .section-heading {
        margin-bottom: 31px;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .section-heading h2 {
        font-size: clamp(2.25rem, 10vw, 3.2rem);
    }

    .section-heading > p {
        max-width: 530px;
    }

    .event-grid--active,
    .event-grid--archive {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .event-grid {
        gap: 18px;
    }

    .event-card__body,
    .event-card--archive .event-card__body {
        padding: 19px;
    }

    .event-card--archive h3 {
        font-size: 1.35rem;
    }

    .site-footer__inner {
        min-height: 0;
        padding-block: 38px 30px;
        grid-template-areas:
            "brand"
            "identity"
            "links"
            "copy";
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 19px;
        text-align: center;
    }

    .site-footer__identity {
        gap: 9px;
    }

    .site-footer__links {
        align-items: center;
    }

    .cookie-banner {
        right: 10px;
        bottom: max(10px, env(safe-area-inset-bottom));
        left: 10px;
        max-height: calc(100dvh - 20px);
    }

    .cookie-banner__panel {
        padding: 19px;
        grid-template-columns: 1fr;
        align-items: stretch;
        gap: 17px;
    }

    .cookie-banner__actions {
        width: 100%;
        min-width: 0;
    }

    .cookie-dialog__inner {
        padding: 25px 20px 20px;
    }

    .cookie-dialog__close {
        top: 12px;
        right: 12px;
    }

    .cookie-dialog h2 {
        padding-right: 42px;
    }

    .policy-hero {
        padding: calc(var(--header-height) + 58px) 0 58px;
    }

    .policy-hero h1 {
        font-size: clamp(2.6rem, 13vw, 4.25rem);
    }

    .policy-layout {
        padding-block: 50px 78px;
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .policy-nav {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .policy-nav p {
        grid-column: 1 / -1;
    }

    .policy-content section + section {
        margin-top: 46px;
        padding-top: 46px;
    }

    .company-card {
        padding: 19px;
    }

    .video-consent:not(.is-loaded) {
        min-height: 370px;
        aspect-ratio: auto;
    }

    .video-consent__content {
        padding: 24px 18px;
    }

    .detail-hero {
        padding: calc(var(--header-height) + 50px) 0 88px;
    }

    .breadcrumbs {
        margin-bottom: 30px;
    }

    .detail-hero h1 {
        font-size: clamp(2.55rem, 12vw, 4.5rem);
    }

    .detail-cover-wrap {
        margin-top: -44px;
    }

    .detail-cover {
        height: min(330px, 70vw);
    }

    .detail-layout {
        padding-block: 67px 6px;
        gap: 28px;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
    }

    .gallery-item {
        aspect-ratio: 1;
    }

    .gallery-item__zoom {
        width: 34px;
        height: 34px;
        opacity: 1;
        transform: none;
    }

    .section-heading--compact > p {
        justify-self: start;
    }

    .detail-return {
        padding-block: 30px 80px;
    }

    .lightbox__inner {
        padding: 62px 12px 32px;
        grid-template-columns: 46px minmax(0, 1fr) 46px;
        gap: 6px;
    }

    .lightbox figure img {
        max-height: calc(100vh - 190px);
    }

    .lightbox__nav {
        width: 42px;
        height: 42px;
    }

    .lightbox__close {
        top: 10px;
        right: 12px;
    }
}

@media (max-width: 440px) {
    .header-back {
        font-size: 0.78rem;
    }

    .cookie-banner__panel {
        padding: 16px;
    }

    .cookie-banner h2,
    .cookie-dialog h2 {
        font-size: 1.2rem;
    }

    .cookie-action {
        min-width: 0;
        padding-inline: 10px;
    }

    .cookie-category {
        padding: 14px;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 12px;
    }

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

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

    .policy-nav p {
        grid-column: auto;
    }

    .policy-table-wrap {
        margin-inline: -1px;
        width: calc(100% + 2px);
    }

    .video-consent:not(.is-loaded) {
        min-height: 390px;
    }

    .video-consent__play {
        width: 42px;
        height: 42px;
    }

    .detail-facts {
        align-items: stretch;
        flex-direction: column;
    }

    .detail-facts span {
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lightbox__inner {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: minmax(0, 1fr) auto auto;
    }

    .lightbox figure {
        grid-column: 1 / -1;
    }

    .lightbox__nav--prev,
    .lightbox__nav--next {
        justify-self: center;
    }

    .lightbox__nav--prev {
        grid-column: 1;
    }

    .lightbox__nav--next {
        grid-column: 2;
    }

    .lightbox__count {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .event-grid--active,
    .event-grid--archive {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

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

@media (forced-colors: active) {
    .eyebrow > span,
    .status-pill i,
    .detail-facts i {
        background: CanvasText;
    }

    .event-card,
    .button,
    .gallery-item,
    .cookie-action,
    .cookie-category,
    .policy-nav,
    .policy-table-wrap {
        border: 1px solid CanvasText;
    }
}
