/* ============================================================
   FM meets Mozart — Colors & Type
   Dark-first design system. Import this file once at the root.
   ============================================================ */

/* ---------- Fonts ---------- */
/* Brand font — Nunito — used for both display and body.
   IBM Plex Mono (Google Fonts) covers code/tickers.       */
@font-face {
  font-family: "Nunito";
  src: url("/assets/fonts/nunito-latin-wght-normal.woff2") format("woff2");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/ibm-plex-mono-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/ibm-plex-mono-latin-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/ibm-plex-mono-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  /* ============================================================
     COLOR — base scale
     ============================================================ */

  /* Ink (deep night blue — the brand's primary surface) */
  --ink-950: #050B18;
  --ink-900: #0A1428;   /* default page background */
  --ink-850: #0D1A36;
  --ink-800: #0F1E3D;   /* elevated surfaces, cards */
  --ink-700: #15264E;
  --ink-600: #1D335F;
  --ink-500: #2A4577;

  /* Paper (off-white text + highlights) */
  --paper-50:  #FFFFFF; /* hairlines / wordmark only */
  --paper-100: #F8F7F2; /* near-white off-white */
  --paper-200: #F4F1E8; /* default body text on ink */
  --paper-300: #DDD9CB;
  --paper-400: #B8C2D9; /* muted body — cool */
  --paper-500: #8A95B0;
  --paper-600: #6B7894; /* tertiary */
  --paper-700: #4A5570;

  /* Accent — mint-cyan (the single accent) */
  --mint-50:  #E6FFFA;
  --mint-100: #B2F5EA;
  --mint-200: #81E6D9;
  --mint-300: #5EEAD4;   /* default accent */
  --mint-400: #2EE0C2;
  --mint-500: #14B8A6;
  --mint-600: #0D9488;
  --mint-700: #0F766E;

  /* Brass — a discreet gold for sponsorship / awards / wordmark stress */
  --brass-300: #E0C586;
  --brass-400: #C9A961;
  --brass-500: #A88840;
  --brass-600: #846729;

  /* Semantic — used very sparingly */
  --signal-success: #5EEAD4;       /* doubles as accent */
  --signal-warning: #E0C586;       /* brass */
  --signal-danger:  #F47174;       /* a desaturated coral — readable on ink */
  --signal-info:    #8DA9E0;       /* muted periwinkle */

  /* Alpha helpers */
  --paper-a-04: rgba(244, 241, 232, 0.04);
  --paper-a-08: rgba(244, 241, 232, 0.08);
  --paper-a-12: rgba(244, 241, 232, 0.12);
  --paper-a-24: rgba(244, 241, 232, 0.24);
  --mint-a-12:  rgba(94, 234, 212, 0.12);
  --mint-a-24:  rgba(94, 234, 212, 0.24);
  --mint-a-40:  rgba(94, 234, 212, 0.40);
  --mint-a-60:  rgba(94, 234, 212, 0.60);

  /* ============================================================
     COLOR — semantic
     ============================================================ */
  --bg:           var(--ink-900);
  --bg-elevated:  var(--ink-800);
  --bg-glass:     rgba(255, 255, 255, 0.03);
  --bg-glass-strong: rgba(255, 255, 255, 0.06);
  --bg-overlay:   rgba(10, 20, 40, 0.72);

  --fg-1:         var(--paper-200);   /* primary text */
  --fg-2:         var(--paper-400);   /* secondary */
  --fg-3:         var(--paper-600);   /* tertiary / metadata */
  --fg-inverse:   var(--ink-900);     /* text on accent fills */

  --accent:       var(--mint-300);
  --accent-strong:var(--mint-400);
  --accent-soft:  var(--mint-a-12);
  --accent-glow:  var(--mint-a-40);

  --border-subtle:  rgba(255, 255, 255, 0.08);
  --border-default: rgba(255, 255, 255, 0.14);
  --border-strong:  rgba(255, 255, 255, 0.24);
  --border-accent:  var(--mint-a-40);

  /* ============================================================
     SPACING — 4-pt scale
     ============================================================ */
  --space-1:  4px;
  --space-2:  8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* ============================================================
     RADII — sharp by default
     ============================================================ */
  --radius-xs: 2px;     /* chips, tags */
  --radius-sm: 4px;     /* buttons, cards (default) */
  --radius-md: 6px;     /* modals */
  --radius-lg: 8px;     /* large containers (rare) */
  --radius-pill: 999px; /* segmented controls only */

  /* ============================================================
     ELEVATION — no drop shadows; glow + borders
     ============================================================ */
  --elev-0: none;
  --elev-card:  inset 0 0 0 1px var(--border-subtle);
  --elev-hover: inset 0 0 0 1px var(--mint-a-40), 0 0 32px -8px var(--mint-a-24);
  --elev-focus: 0 0 0 2px var(--bg), 0 0 0 4px var(--mint-300);
  --elev-glow:  0 0 24px -4px var(--mint-a-40);
  --elev-modal: 0 24px 64px -16px rgba(0, 0, 0, 0.7),
                inset 0 0 0 1px var(--border-default);

  /* ============================================================
     MOTION
     ============================================================ */
  --ease:        cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-in:     cubic-bezier(0.4, 0, 1, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);
  --dur-fast:    120ms;
  --dur:         240ms;
  --dur-slow:    600ms;
  --dur-hero:    1200ms;

  /* ============================================================
     TYPE — families
     ============================================================ */
  --font-display: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-body:    "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono:    "IBM Plex Mono", "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* ============================================================
     TYPE — base size + scale
     A modular scale rooted at 16px body
     ============================================================ */
  --fs-mono-xs: 11px;     /* eyebrows / tickers */
  --fs-xs:   12px;
  --fs-sm:   14px;
  --fs-md:   16px;        /* base body */
  --fs-lg:   18px;
  --fs-xl:   22px;
  --fs-2xl:  28px;
  --fs-3xl:  36px;
  --fs-4xl:  48px;
  --fs-5xl:  64px;
  --fs-6xl:  88px;
  --fs-7xl: 120px;        /* hero / poster */

  /* leading */
  --lh-tight:  1.05;
  --lh-snug:   1.15;
  --lh-normal: 1.35;
  --lh-body:   1.6;
  --lh-loose:  1.8;

  /* tracking */
  --tr-tight:   -0.02em;
  --tr-snug:    -0.01em;
  --tr-normal:   0;
  --tr-eyebrow:  0.18em;
  --tr-mono:     0.06em;
}

/* ============================================================
   BASE — sensible defaults
   ============================================================ */
html, body {
  background: var(--bg);
  color: var(--fg-1);
  font-family: var(--font-body);
  font-size: var(--fs-md);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--mint-a-40);
  color: var(--paper-100);
}

/* ============================================================
   SEMANTIC TYPE CLASSES
   Use these as utility classes OR copy their declarations.
   ============================================================ */

.fmm-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-mono-xs);
  font-weight: 500;
  letter-spacing: var(--tr-eyebrow);
  text-transform: uppercase;
  color: var(--fg-2);
}

.fmm-eyebrow--accent { color: var(--accent); }

.fmm-h1, h1.fmm {
  font-family: var(--font-display);
  font-size: var(--fs-6xl);
  font-weight: 800;
  line-height: var(--lh-tight);
  letter-spacing: -0.035em;
  color: var(--fg-1);
}

.fmm-h2, h2.fmm {
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  font-weight: 800;
  line-height: var(--lh-snug);
  letter-spacing: -0.03em;
  color: var(--fg-1);
}

.fmm-h3, h3.fmm {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 700;
  line-height: var(--lh-snug);
  letter-spacing: var(--tr-snug);
  color: var(--fg-1);
}

.fmm-h4, h4.fmm {
  font-family: var(--font-body);
  font-size: var(--fs-lg);
  font-weight: 700;
  line-height: var(--lh-normal);
  letter-spacing: var(--tr-snug);
  color: var(--fg-1);
}

.fmm-lede {
  font-family: var(--font-body);
  font-size: var(--fs-xl);
  font-weight: 300;
  line-height: 1.45;
  color: var(--fg-1);
  max-width: 56ch;
}

.fmm-body, p.fmm {
  font-family: var(--font-body);
  font-size: var(--fs-md);
  font-weight: 400;
  line-height: var(--lh-body);
  color: var(--fg-1);
  max-width: 68ch;
}

.fmm-body--muted { color: var(--fg-2); }
.fmm-small { font-size: var(--fs-sm); color: var(--fg-2); }
.fmm-caption { font-size: var(--fs-xs); color: var(--fg-3); }

.fmm-mono, code.fmm, .fmm-code {
  font-family: var(--font-mono);
  font-size: 0.92em;
  letter-spacing: var(--tr-mono);
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.1em 0.4em;
  border-radius: var(--radius-xs);
}

.fmm-meta {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: var(--tr-mono);
  color: var(--fg-3);
  text-transform: uppercase;
}

/* Signature italic-roman mix — apply to <em> inside a display heading */
.fmm-h1 em, .fmm-h2 em, .fmm-h3 em {
  font-style: italic;
  font-weight: 500;
  /* italic Garamond is a touch lighter optically — bump it */
}

/* Wordmark stress letter (the M's in "Mozart" or "FM" can wear brass) */
.fmm-stress { color: var(--brass-400); }

/* =============================================================
   Conference website — LIGHT theme, German.
   SOURCE FILE: Edit this file, then run `mvn compile` or ./1_compile_scss_to_css.sh
   Output for the browser: style.css (generated bundle, do not edit).
   Tokens: colors_and_type.css (bundled into style.css).
   ============================================================= */

:root {
  /* ── Light theme palette overrides ── */
  --paper-bg: #FAF7F0;
  /* warm paper background */
  --paper-bg-2: #F2EFE7;
  /* slightly deeper paper for sections */
  --paper-card: #FFFFFF;
  /* card surface */
  --paper-card-2: #FBFAF6;
  --ink-text: #19233A;
  /* primary text */
  --ink-text-2: #4A5570;
  /* secondary text */
  --ink-text-3: #8590A8;
  /* tertiary text */
  --line-1: rgba(25, 35, 58, 0.08);
  --line-2: rgba(25, 35, 58, 0.14);
  --line-strong: rgba(25, 35, 58, 0.24);
  --mint-on-light: #0D9488;
  /* darker mint for AA contrast on light */
  --mint-on-light-soft: rgba(13, 148, 136, 0.10);
  --mint-glow: rgba(13, 148, 136, 0.25);
}

* {
  box-sizing: border-box
}

html,
body,
#root {
  margin: 0;
  min-height: 100%
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
  }
}

body {
  background: var(--paper-bg);
  color: var(--ink-text);
  font-family: var(--font-body);
}

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

button {
  font-family: inherit
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 720px) {
  .container {
    padding: 0 24px
  }
}

/* ============================================================
   TOP NAV — light blurred glass over hero
   ============================================================ */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(250, 247, 240, 0.78);
  border-bottom: 1px solid var(--line-1);
}

.nav {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px 0;
}

.nav .brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: var(--ink-text);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  cursor: pointer;
  text-decoration: none;
}

.nav .brand em {
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: var(--ink-text);
  opacity: 0.55;
  margin: 0 4px
}

.nav .brand img,
.nav .brand .logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.nav .brand .brand-tagline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-text-2);
  line-height: 1.2;
}

@media (max-width: 720px) {

  .nav .brand img,
  .nav .brand .logo-img {
    height: 32px
  }

  .nav .brand .brand-tagline {
    font-size: 10px
  }
}

.nav .menu {
  display: flex;
  gap: 32px;
  margin-left: 48px;
  flex: 1
}

.nav .menu a {
  font-size: 14px;
  color: var(--ink-text-2);
  cursor: pointer;
  padding: 6px 2px;
  position: relative;
  transition: color var(--dur) var(--ease);
  font-weight: 500;
}

.nav .menu a:not(.btn):hover {
  color: var(--mint-on-light)
}

.nav .menu a.active {
  color: var(--ink-text)
}

.nav .menu a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--mint-on-light);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  padding: 12px 20px;
  cursor: pointer;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--dur) var(--ease);
  background: transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--mint-on-light);
  color: #FFFFFF
}

.btn--primary:hover {
  background: #0F766E;
  box-shadow: 0 6px 24px -8px var(--mint-glow)
}

.btn--ghost {
  border-color: var(--line-2);
  color: var(--ink-text)
}

.btn--ghost:hover {
  border-color: var(--mint-on-light);
  color: var(--mint-on-light);
  box-shadow: 0 0 0 1px var(--mint-on-light)
}

.btn--lg {
  padding: 16px 24px;
  font-size: 15px
}

.btn--full {
  width: 100%;
  justify-content: center
}

.btn .arrow {
  font-family: var(--font-mono);
  font-weight: 400;
  transition: transform var(--dur) var(--ease)
}

.btn:hover .arrow {
  transform: translateX(2px)
}

/* ============================================================
   HERO — big Salzburg image + overlay typography
   ============================================================ */
.hero {
  position: relative;
  height: min(72vh, 720px);
  min-height: 560px;
  overflow: hidden;
  background: var(--paper-bg);
}

.hero .image {
  position: absolute;
  inset: -14% 0;
  height: 128%;
  background-size: cover;
  background-position: center 40%;
  will-change: transform;
}

.hero .scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(250, 247, 240, 0.05) 0%, rgba(250, 247, 240, 0.55) 70%, var(--paper-bg) 100%),
    linear-gradient(90deg, rgba(250, 247, 240, 0.45), transparent 60%);
}

.hero__credit {
  position: absolute;
  top: 88px;
  right: clamp(16px, 4vw, 48px);
  z-index: 3;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-text);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line-1);
  padding: 6px 10px;
  border-radius: 2px;
  backdrop-filter: blur(6px);
  max-width: min(280px, 50vw);
  line-height: 1.4;
}

@media (max-width: 720px) {
  .hero__credit {
    top: 76px;
    right: 16px;
    font-size: 9px;
    letter-spacing: 0.08em;
  }
}

.hero .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(120px, 16vh, 168px);
}

.hero .eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-text);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line-1);
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero .eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--mint-on-light);
  box-shadow: 0 0 12px var(--mint-on-light);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(64px, 9vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--ink-text);
  margin: 0;
  max-width: 14ch;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400
}

.hero .subtitle {
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.4;
  color: var(--ink-text-2);
  max-width: 56ch;
  margin: 24px 0 0;
  font-weight: 400;
}

.hero .place {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-text-3);
  margin-top: 28px;
}

/* ============================================================
   SAVE THE DATE / CTA BAND
   ============================================================ */
.save-band {
  background: var(--ink-text);
  color: var(--paper-bg);
  padding: 48px 0;
  position: relative;
}

.save-band .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 48px;
}

@media (max-width: 900px) {
  .save-band .container {
    grid-template-columns: 1fr;
    gap: 24px
  }
}

.save-band .label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mint-300);
}

.save-band .date {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--paper-bg);
}

.save-band .place {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 247, 240, 0.6);
  margin-top: 4px;
}

.save-band .btn--primary {
  background: var(--mint-300);
  color: var(--ink-text);
}

.save-band .btn--primary:hover {
  background: #2EE0C2;
  color: var(--ink-text)
}

/* ============================================================
   SECTION wrapper
   ============================================================ */
.section {
  padding: 112px 0;
  border-top: 1px solid var(--line-1)
}

.section.alt {
  background: var(--paper-bg-2)
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: end;
  column-gap: 64px;
  row-gap: 24px;
  margin-bottom: 64px
}

@media (max-width: 900px) {
  .section-head {
    grid-template-columns: 1fr
  }
}

.section-head .left {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0
}

.section-head .eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mint-on-light);
  font-weight: 500;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--ink-text);
  max-width: 18ch;
  margin: 0;
}

.section-head h2 em {
  font-style: italic;
  font-weight: 400
}

.section-head .sub {
  font-size: 17px;
  color: var(--ink-text-2);
  max-width: 44ch;
  line-height: 1.6;
  margin: 0;
  padding-bottom: 8px
}

.programm-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 48px;
  row-gap: 32px;
  align-items: start;
  margin-bottom: 56px;
}

@media (max-width: 900px) {
  .programm-grid {
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
  }
}

.programm-grid__col {
  min-width: 0;
  width: 100%;
  max-width: none;
  justify-self: stretch;
}

.programm-grid__col>p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-text-2);
  margin: 0 0 18px;
}

.programm-grid__col>p strong {
  color: var(--ink-text);
  font-weight: 700;
}

.programm-grid__col>p:last-child {
  margin-bottom: 0;
}

.programm-grid__col-intro {
  margin-top: 0;
}

.programm-grid__outro {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  padding: 20px 28px;
  text-align: center;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-text);
  font-weight: 600;
}

.programm-praxis-callout {
  margin: 0 0 16px;
  padding: 16px 18px;
  background: var(--mint-on-light-soft);
  border-left: 4px solid var(--mint-on-light);
  border-radius: 0 6px 6px 0;
}

.programm-praxis-callout__eyebrow {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mint-on-light);
}

.programm-praxis-callout p:last-child {
  margin-bottom: 0;
}

.programm-praxis-topics {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.programm-praxis-topics li {
  position: relative;
  padding-left: 16px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-text-2);
}

.programm-praxis-topics li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint-on-light);
}

.programm-praxis-topics strong {
  color: var(--ink-text);
}

.programm-grid__lineup {
  grid-column: 1;
  grid-row: 2;
}

@media (max-width: 900px) {
  .programm-grid__lineup {
    grid-row: auto;
  }
}

.programm-lineup__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--ink-text);
}

.programm-grid__more {
  grid-column: 1;
  grid-row: 3;
  margin: 4px 0 0;
  padding: 16px 18px;
  background: var(--paper-card-2);
  border-radius: 8px;
  border: 1px solid var(--line-2);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-text-2);
}

@media (max-width: 900px) {
  .programm-grid__more {
    grid-row: auto;
  }
}

/* ============================================================
   SALZBURG / LOCATION
   ============================================================ */
.salzburg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

@media (max-width: 900px) {
  .salzburg-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }
}

.salzburg-block h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--ink-text);
}

.salzburg-block p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-text-2);
  margin: 0 0 16px;
  max-width: 56ch;
}

.salzburg-block .address {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--paper-card);
  border: 1px solid var(--line-1);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-text);
  line-height: 1.6;
}

.salzburg-block .address .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mint-on-light);
  margin-bottom: 6px;
}

.salzburg-hotels {
  margin-top: 64px;
  max-width: 72ch;
}

@media (max-width: 900px) {
  .salzburg-hotels {
    margin-top: 32px
  }
}

.salzburg-hotels p:last-child {
  margin-bottom: 0
}

/* Salzburg photo strip + lightbox */
.salzburg-gallery {
  margin-top: 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 28px;
  background: var(--paper-bg-2);
  border: 1px solid var(--line-1);
  border-radius: 8px;
}

.salzburg-gallery h3 {
  grid-column: 1 / -1;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--ink-text);
}

.gallery-strip__viewport {
  overflow: hidden;
  border-radius: 8px;
}

.gallery-strip__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}

.gallery-strip__track::-webkit-scrollbar {
  height: 6px
}

.gallery-strip__track::-webkit-scrollbar-thumb {
  background: var(--line-strong);
  border-radius: 999px;
}

.gallery-strip__slide {
  flex: 0 0 clamp(260px, 42vw, 380px);
  scroll-snap-align: start;
  position: relative;
  padding: 0;
  border: 1px solid var(--line-1);
  border-radius: 6px;
  overflow: hidden;
  background: var(--paper-card);
  cursor: zoom-in;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-strip__slide:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(25, 35, 58, 0.12);
}

.gallery-strip__slide img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-strip__label {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-text);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line-1);
  padding: 5px 8px;
  border-radius: 2px;
  backdrop-filter: blur(6px);
}

.gallery-strip__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line-1);
  background: var(--paper-card);
  color: var(--ink-text);
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.gallery-strip__arrow:hover {
  background: var(--paper-bg-2);
  border-color: var(--line-strong);
}

@media (max-width: 700px) {
  .salzburg-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding: 22px;
  }

  .gallery-strip__arrow--prev {
    grid-row: 2;
    justify-self: start
  }

  .gallery-strip__viewport {
    grid-row: 1
  }

  .gallery-strip__arrow--next {
    grid-row: 2;
    justify-self: end;
    grid-column: 1
  }

  .gallery-strip__slide {
    flex-basis: min(85vw, 320px)
  }
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.gallery-lightbox[hidden] {
  display: none
}

.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(25, 35, 58, 0.88);
  cursor: pointer;
}

.gallery-lightbox__panel {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  max-height: calc(100vh - 48px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox__figure {
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.gallery-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 180px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.gallery-lightbox__caption {
  text-align: center;
  max-width: 56ch;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gallery-lightbox__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: #fff;
}

.gallery-lightbox__credit {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 247, 240, 0.75);
}

.gallery-lightbox__filename {
  display: block;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(250, 247, 240, 0.55);
}

.gallery-lightbox__close {
  position: absolute;
  top: -8px;
  right: -8px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(25, 35, 58, 0.9);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.gallery-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(25, 35, 58, 0.85);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox__nav--prev {
  left: -64px
}

.gallery-lightbox__nav--next {
  right: -64px
}

@media (max-width: 900px) {
  .gallery-lightbox__nav--prev {
    left: 8px
  }

  .gallery-lightbox__nav--next {
    right: 8px
  }

  .gallery-lightbox__close {
    top: 8px;
    right: 8px
  }
}

body.gallery-lightbox-open {
  overflow: hidden
}

/* ============================================================
   SESSIONS & PROGRAMM
   ============================================================ */
.sessions-status {
  background: var(--paper-card);
  border: 1px solid var(--line-1);
  border-radius: 8px;
  padding: 40px 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
}

@media (max-width: 720px) {
  .sessions-status {
    grid-template-columns: 1fr;
    padding: 28px
  }
}

.sessions-status .pulse {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--mint-on-light-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sessions-status .pulse::before,
.sessions-status .pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid var(--mint-on-light);
  opacity: 0;
  animation: pulse 2.4s var(--ease) infinite;
}

.sessions-status .pulse::after {
  animation-delay: 1.2s
}

@keyframes pulse {
  0% {
    opacity: 0.6;
    transform: scale(1)
  }

  100% {
    opacity: 0;
    transform: scale(1.8)
  }
}

.sessions-status .pulse svg {
  width: 28px;
  height: 28px;
  color: var(--mint-on-light);
  z-index: 1
}

.sessions-status h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  color: var(--ink-text);
}

.sessions-status p {
  margin: 0;
  color: var(--ink-text-2);
  font-size: 15px;
  line-height: 1.6;
}

.sessions-status:has(.schedule) {
  display: block;
  padding: 32px;
}

@media (max-width: 899px) {
  .sessions-status:has(.schedule) {
    padding: 16px 10px;
  }

  #programm .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.schedule__head {
  margin-bottom: 24px;
}

.schedule__head h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 4px;
  color: var(--ink-text);
}

.schedule__head .sub {
  margin: 0;
  color: var(--ink-text-2);
  font-size: 15px;
}

.schedule-desktop {
  display: none;
}

.schedule-mobile {
  display: block;
}

@media (min-width: 900px) {
  .schedule-desktop {
    display: block;
  }

  .schedule-mobile {
    display: none;
  }
}

.schedule-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.schedule-tabs__btn {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid var(--line-1);
  border-radius: 6px;
  background: var(--paper-card);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--ink-text-2);
}

.schedule-tabs__btn.is-active {
  border-color: var(--mint-on-light);
  color: var(--ink-text);
  background: var(--mint-on-light-soft);
}

.schedule-mobile__panel.is-hidden {
  display: none;
}

.schedule-mobile__day-label {
  font-size: 14px;
  color: var(--ink-text-2);
  margin: 0 0 12px;
}

.schedule-accordion__item {
  border: 1px solid var(--line-1);
  border-radius: 8px;
  margin-bottom: 8px;
  background: var(--paper-card);
  border-left: 3px solid var(--line-2);
}

.schedule-event__trigger {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.schedule-event__trigger.schedule-accordion__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line-1);
  border-radius: 8px;
  margin-bottom: 8px;
  background: rgba(250, 247, 240, 0.55);
  border-left: 3px solid var(--line-2);
}

.schedule-event__trigger.schedule-accordion__item.schedule-event--program.schedule-event--talk {
  background: rgba(25, 35, 58, 0.06);
  border-left-color: rgba(25, 35, 58, 0.35);
}

.schedule-event__trigger.schedule-accordion__item.schedule-event--program.schedule-event--ai-talk,
.schedule-event__trigger.schedule-accordion__item.schedule-event--program.schedule-event--workshop {
  background: var(--mint-on-light-soft);
  border-left-color: var(--mint-on-light);
}

.schedule-event__trigger.schedule-card {
  border: 1px solid var(--line-1);
  border-radius: 8px;
  background: transparent;
  border-left: 4px solid var(--line-2);
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.schedule-event__trigger.schedule-card:hover,
.schedule-event__trigger.schedule-card:focus-visible {
  box-shadow: 0 6px 20px rgba(25, 35, 58, 0.1);
  outline: 2px solid var(--mint-on-light);
  outline-offset: 1px;
}

.schedule-event__trigger.schedule-card--full {
  margin-bottom: 10px;
}

.schedule-event__trigger.schedule-card--right {
  background: transparent;
}

.schedule-event__trigger.schedule-event--program.schedule-event--talk {
  border-left-color: rgba(25, 35, 58, 0.35);
}

.schedule-event__trigger.schedule-event--ai {
  border-left-color: var(--mint-on-light);
}

.schedule-event__trigger.schedule-event--tentative {
  border-style: dashed;
  border-color: #d94f4f;
  border-left-color: #d94f4f;
}

.schedule-event__trigger:hover,
.schedule-event__trigger:focus-visible {
  box-shadow: 0 4px 16px rgba(25, 35, 58, 0.1);
  outline: 2px solid var(--mint-on-light);
  outline-offset: 1px;
}

.schedule-event__trigger.schedule-accordion__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
}

@media (max-width: 899px) {
  .schedule-event__trigger.schedule-accordion__item {
    gap: 8px;
    padding: 10px 8px;
  }

  .schedule-tabs {
    gap: 6px;
    margin-bottom: 12px;
  }

  .schedule-tabs__btn {
    padding: 8px 6px;
    font-size: 11px;
  }

  .schedule-mobile__day-label {
    margin-bottom: 8px;
  }
}

.schedule-accordion__chevron {
  font-size: 18px;
  line-height: 1;
  color: var(--ink-text-2);
}

.schedule-accordion__item--tentative {
  border-style: dashed;
  border-color: #d94f4f;
  border-left-color: #d94f4f;
}

.schedule-accordion__summary {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 10px;
  padding: 12px 14px;
  cursor: pointer;
  list-style: none;
}

.schedule-accordion__summary::-webkit-details-marker {
  display: none;
}

.schedule-accordion__time {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.2;
  color: var(--ink-text-2);
  white-space: nowrap;
  flex-shrink: 0;
}

.schedule-accordion__time-end {
  color: var(--ink-text-2);
  opacity: 0.85;
}

.schedule-accordion__main {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.schedule-accordion__speaker {
  font-size: 14px;
  color: var(--ink-text);
}

.schedule-accordion__title {
  font-size: 14px;
  color: var(--ink-text-2);
}

.schedule-accordion__location {
  font-size: 12px;
  color: var(--ink-text-2);
}

.schedule-accordion__location::before {
  content: "📍 ";
}

.schedule-accordion__body {
  padding: 0 14px 14px 48px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-text-2);
}

.schedule-cal {
  --schedule-cal-axis-width: 52px;
  margin-top: 8px;
}

.schedule-cal__head {
  display: grid;
  grid-template-columns: var(--schedule-cal-axis-width) repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 8px;
}

.schedule-cal__corner {
  min-height: 1px;
}

.schedule-cal__day-head h4 {
  font-family: var(--font-display);
  font-size: 16px;
  margin: 0 0 6px;
  color: var(--ink-text);
}

.schedule-cal__track-labels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-text-2);
}

.schedule-cal__body {
  display: grid;
  grid-template-columns: var(--schedule-cal-axis-width) repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.schedule-cal__axis {
  position: relative;
  border-right: 1px solid var(--line-1);
}

.schedule-cal__hour {
  position: absolute;
  left: 0;
  right: 4px;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--ink-text-2);
  text-align: right;
  line-height: 1;
}

.schedule-cal__day {
  min-width: 0;
  overflow: clip;
  position: relative;
  isolation: isolate;
}

.schedule-cal__canvas {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background-image: repeating-linear-gradient(to bottom,
      transparent 0,
      transparent calc(var(--hour-height) - 1px),
      var(--line-1) calc(var(--hour-height) - 1px),
      var(--line-1) var(--hour-height));
}

.schedule-cal__event {
  position: absolute;
  box-sizing: border-box;
  max-width: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--line-1);
  background: rgba(250, 247, 240, 0.92);
  border-left: 4px solid var(--line-2);
}

.schedule-cal__event.schedule-event--program.schedule-event--talk {
  background: rgba(25, 35, 58, 0.06);
  border-left-color: rgba(25, 35, 58, 0.35);
}

.schedule-cal__event.schedule-event--program.schedule-event--ai-talk,
.schedule-cal__event.schedule-event--program.schedule-event--workshop {
  background: var(--mint-on-light-soft);
  border-left-color: var(--mint-on-light);
}

.schedule-cal__event--full {
  left: 0;
  width: 100%;
}

.schedule-cal__event--left {
  left: 0;
  width: calc((100% - 8px) / 2);
  max-width: calc((100% - 8px) / 2);
  z-index: 1;
}

.schedule-cal__event--right {
  left: calc((100% - 8px) / 2 + 8px);
  width: calc((100% - 8px) / 2);
  max-width: calc((100% - 8px) / 2);
  z-index: 2;
}

.schedule-cal__event.schedule-event--ai {
  border-left-color: var(--mint-on-light);
}

.schedule-cal__event.schedule-event--tentative {
  border-style: dashed;
  border-color: #d94f4f;
  border-left-color: #d94f4f;
}

.schedule-cal__event .schedule-event__trigger {
  height: 100%;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.schedule-cal__event .schedule-event__trigger.schedule-card {
  border: none;
  background: transparent;
}

.schedule-cal__event .schedule-event__trigger.schedule-card:hover,
.schedule-cal__event .schedule-event__trigger.schedule-card:focus-visible {
  box-shadow: none;
  outline: none;
}

.schedule-cal__event .schedule-event__trigger:hover,
.schedule-cal__event .schedule-event__trigger:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px var(--mint-on-light);
}

.schedule-cal__event--compact .schedule-card__speaker,
.schedule-cal__event--compact .schedule-card__location {
  display: none;
}

.schedule-cal__event--compact .schedule-card__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 6px;
  width: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.schedule-cal__event--compact-inline .schedule-card__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  padding: 2px 8px;
}

.schedule-cal__event--compact-inline .schedule-card__meta {
  display: contents;
}

.schedule-cal__event--compact-inline .schedule-card__time {
  order: 1;
  flex: 0 0 auto;
  font-size: 11px;
  line-height: 1;
  align-self: center;
}

.schedule-cal__event--compact-inline .schedule-card__title {
  order: 2;
  flex: 1 1 auto;
  margin: 0;
  min-width: 0;
  max-width: 100%;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  color: var(--ink-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  align-self: center;
}

.schedule-cal__event--compact-inline .schedule-card__badge {
  order: 3;
  flex: 0 0 auto;
  align-self: center;
  line-height: 1;
}
.schedule-cal__event--compact-stacked .schedule-card__inner {
  grid-template-rows: auto auto;
  align-items: start;
  row-gap: 2px;
  padding: 4px 8px;
}

.schedule-cal__event--compact .schedule-card__meta {
  display: contents;
  margin-bottom: 0;
}

.schedule-cal__event--compact .schedule-card__time {
  grid-column: 1;
  grid-row: 1;
}

.schedule-cal__event--compact .schedule-card__badge {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
}

.schedule-cal__event--compact-stacked .schedule-card__title {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
  min-width: 0;
  max-width: 100%;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink-text);
  white-space: normal;
  overflow-wrap: anywhere;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.schedule-cal__event:not(.schedule-cal__event--compact) .schedule-card__inner {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}

.schedule-cal__event--left .schedule-card__speaker,
.schedule-cal__event--right .schedule-card__speaker,
.schedule-cal__event--left .schedule-card__title,
.schedule-cal__event--right .schedule-card__title {
  max-width: 100%;
  overflow: hidden;
}

.schedule-cal__event--left .schedule-card__speaker,
.schedule-cal__event--right .schedule-card__speaker {
  white-space: nowrap;
  text-overflow: ellipsis;
}

.schedule-cal__event:not(.schedule-cal__event--compact) .schedule-card__title {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  min-width: 0;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.schedule-cal__event--left:not(.schedule-cal__event--compact) .schedule-card__title,
.schedule-cal__event--right:not(.schedule-cal__event--compact) .schedule-card__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}

.schedule-cal__event:not(.schedule-cal__event--compact) .schedule-card__meta {
  flex-shrink: 0;
}

@media (max-width: 1100px) {

  .schedule-cal__head,
  .schedule-cal__body {
    grid-template-columns: 40px repeat(3, minmax(140px, 1fr));
    overflow-x: auto;
  }
}

.schedule-card__inner {
  padding: 12px 14px;
  flex: 1;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.schedule-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.schedule-card__time {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-text-2);
  white-space: nowrap;
}

.schedule-card__badge {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-text-2);
  background: var(--paper-bg-2);
  border: 1px solid var(--line-1);
  border-radius: 4px;
  padding: 2px 6px;
  white-space: nowrap;
}

.schedule-card__badge--icon {
  font-family: inherit;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  background: transparent;
  border: none;
  padding: 0;
}

.schedule-card__speaker {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink-text);
}

.schedule-card__title {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink-text-2);
  min-width: 0;
}

.schedule-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}

.schedule-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--ink-text-2);
  background: var(--paper-bg-2);
  border: 1px solid var(--line-1);
  border-radius: 999px;
  padding: 2px 7px;
  white-space: nowrap;
}

.schedule-cal__event--compact .schedule-card__tags {
  margin-top: 4px;
  gap: 3px;
}

.schedule-cal__event--compact .schedule-tag {
  font-size: 8px;
  padding: 1px 5px;
}

.schedule-accordion__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.schedule-modal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 12px;
}

.schedule-modal__hint {
  margin: 0;
  font-size: 12px;
  color: var(--ink-text-2);
}

.schedule-card__location {
  margin: 6px 0 0;
  font-size: 11px;
  color: var(--ink-text-2);
}

.schedule-event {
  border: 1px solid var(--line-1);
  border-radius: 6px;
  background: rgba(250, 247, 240, 0.55);
  border-left: 3px solid var(--line-2);
  overflow: hidden;
  min-height: 0;
}

.schedule-event--program.schedule-event--talk {
  background: rgba(25, 35, 58, 0.06);
  border-left-color: rgba(25, 35, 58, 0.35);
}

.schedule-event--program.schedule-event--ai-talk,
.schedule-event--program.schedule-event--workshop {
  background: var(--mint-on-light-soft);
  border-left-color: var(--mint-on-light);
}

.schedule-event--ai {
  border-left-color: var(--mint-on-light);
}

.schedule-event--tentative {
  border-style: dashed;
  border-color: #d94f4f;
  border-left-color: #d94f4f;
}

.schedule-event__inner {
  padding: 6px 8px;
  font-size: 11px;
  line-height: 1.35;
}

.schedule-event__meta {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  margin-bottom: 2px;
}

.schedule-event__time {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--ink-text-2);
}

.schedule-event__speaker {
  margin: 0;
  font-weight: 700;
  font-size: 11px;
  color: var(--ink-text);
}

.schedule-event__title {
  margin: 0;
  font-size: 10px;
  color: var(--ink-text-2);
}

.schedule-event__location {
  margin: 2px 0 0;
  font-size: 9px;
  color: var(--ink-text-2);
}

.schedule-event__icon,
.schedule-accordion__icon {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  flex-shrink: 0;
  background: var(--line-2);
}

.schedule-event__icon--ai,
.schedule-accordion__icon--ai {
  background: var(--mint-on-light);
}

.schedule-event__icon--coffee,
.schedule-accordion__icon--coffee {
  background: #c4a882;
}

.schedule-event__icon--lunch,
.schedule-accordion__icon--lunch {
  background: #8b9a6b;
}

.schedule-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.schedule-modal[hidden] {
  display: none;
}

.schedule-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(25, 35, 58, 0.72);
  cursor: pointer;
}

.schedule-modal__panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(80vh, 720px);
  overflow: auto;
  background: var(--paper-card);
  border: 1px solid var(--line-1);
  border-radius: 10px;
  padding: 28px 32px;
  box-shadow: 0 24px 64px rgba(25, 35, 58, 0.2);
}

.schedule-modal__panel--tentative {
  border-style: dashed;
  border-color: #d94f4f;
}

.schedule-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  color: var(--ink-text-2);
  cursor: pointer;
}

.schedule-modal__close:hover {
  background: var(--paper-bg-2);
  color: var(--ink-text);
}

.schedule-modal__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-text-2);
}

.schedule-modal__title {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.25;
  margin: 0 0 12px;
  color: var(--ink-text);
  padding-right: 28px;
}

.schedule-modal__speaker {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-text);
}

.schedule-modal__subtitle,
.schedule-modal__location {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--ink-text-2);
}

.schedule-modal__location::before {
  content: "📍 ";
}

.schedule-modal__description {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-text-2);
}

.schedule-modal__description > :first-child {
  margin-top: 0;
}

.schedule-modal__description > :last-child {
  margin-bottom: 0;
}

.schedule-modal__description p {
  margin: 0 0 0.75em;
}

.schedule-modal__description ul,
.schedule-modal__description ol {
  margin: 0 0 0.75em;
  padding-left: 1.25em;
}

.schedule-modal__description li {
  margin: 0 0 0.35em;
}

.schedule-modal__description strong {
  color: var(--ink-text);
  font-weight: 700;
}

.schedule-modal__description a {
  color: var(--mint-on-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.schedule-modal__description a:hover {
  color: var(--ink-text);
}

.schedule-modal__speakers {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.schedule-modal__speaker-block {
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--paper-bg-2);
  border: 1px solid var(--line-1);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-text-2);
}

.schedule-modal__speaker-block strong {
  color: var(--ink-text);
}

.schedule-modal__speaker-block p {
  margin: 8px 0 0;
}

body.schedule-modal-open {
  overflow: hidden;
}

.schedule-modal__form {
  display: grid;
  gap: 14px;
}

.schedule-modal__form-hint {
  margin: 0;
  font-size: 12px;
  color: var(--mint-on-light);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.schedule-modal__form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.schedule-modal__field {
  display: grid;
  gap: 4px;
  font-size: 13px;
  color: var(--ink-text-2);
}

.schedule-modal__field--full {
  grid-column: 1 / -1;
}

.schedule-modal__field span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-modal__field input,
.schedule-modal__field select,
.schedule-modal__field textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--line-1);
  border-radius: 6px;
  background: var(--paper-card);
  color: var(--ink-text);
  font: inherit;
}

.schedule-modal__speakers-edit {
  border: 1px solid var(--line-1);
  border-radius: 8px;
  padding: 12px 14px;
  margin: 0;
}

.schedule-modal__speakers-edit legend {
  padding: 0 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-text-2);
}

.schedule-modal__speaker-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-1);
}

.schedule-modal__speaker-row-head {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.schedule-modal__speaker-row-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-text-2);
}

.schedule-modal__speaker-remove {
  border: none;
  background: none;
  padding: 2px 8px;
  font: inherit;
  font-size: 12px;
  color: #b42318;
  cursor: pointer;
}

.schedule-modal__speaker-remove:hover {
  text-decoration: underline;
}

.schedule-modal__speaker-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.schedule-modal__checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-text);
}

.schedule-modal__errors {
  margin: 0;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(217, 79, 79, 0.08);
  border: 1px solid rgba(217, 79, 79, 0.35);
  color: #b42318;
  font-size: 13px;
  line-height: 1.4;
}

.schedule-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

@media (max-width: 560px) {

  .schedule-modal__form-grid,
  .schedule-modal__speaker-row {
    grid-template-columns: 1fr;
  }
}

.cfs {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 40px 48px;
  background: var(--ink-text);
  color: var(--paper-bg);
  border-radius: 8px;
}

@media (max-width: 720px) {
  .cfs {
    grid-template-columns: 1fr;
    padding: 28px
  }
}

.cfs h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  color: var(--paper-bg);
}

.cfs h3 em {
  font-style: italic;
  font-weight: 400
}

.cfs p {
  margin: 0;
  color: rgba(250, 247, 240, 0.75);
  font-size: 15px;
  line-height: 1.6;
  max-width: 56ch
}

.cfs .btn--primary {
  background: var(--mint-300);
  color: var(--ink-text);
}

.cfs .btn--primary:hover {
  background: #2EE0C2
}

/* ============================================================
   RAHMENPROGRAMM
   ============================================================ */
.rahmenprogramm-grid {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

@media (max-width: 900px) {
  .rahmenprogramm-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.rahmenprogramm-media {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line-1);
  background: var(--paper-card);
}

.rahmenprogramm-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  object-position: center;
}

.rahmenprogramm-media__credit {
  padding: 10px 14px;
  font-size: 12px;
  color: var(--ink-text-3);
  border-top: 1px solid var(--line-1);
  background: var(--paper-card-2);
}

.rahmenprogramm-media__credit a {
  color: var(--ink-text-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.rahmenprogramm-media__credit a:hover {
  color: var(--mint-on-light);
}

.rahmenprogramm-when {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-text-2);
}

.rahmenprogramm-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  color: var(--ink-text);
}

.rahmenprogramm-body h3:not(:first-of-type) {
  margin-top: 28px;
}

.rahmenprogramm-body p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-text-2);
}

.rahmenprogramm-body p:last-child {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--ink-text-3);
}

/* ============================================================
   SPONSORS — light, generous space
   ============================================================ */
.sponsor-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 720px) {
  .sponsor-list {
    grid-template-columns: 1fr
  }
}

.sponsor-tile {
  aspect-ratio: 5/3;
  background: var(--paper-card);
  border: 1px solid var(--line-1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--ink-text);
  letter-spacing: -0.02em;
  padding: 24px;
  transition: all var(--dur) var(--ease);
  text-align: center;
}

.sponsor-tile:hover {
  border-color: var(--mint-on-light);
  color: var(--mint-on-light);
}

.sponsor-tile--logo {
  padding: 20px 28px;
  flex-direction: column;
  gap: 12px;
}

.sponsor-tile--logo img {
  max-height: 56px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

.sponsor-tile--banner img {
  max-height: 72px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

.sponsor-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  color: var(--ink-text-2);
  text-align: center;
}

.sponsor-tile--logo:hover img {
  opacity: 0.9;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  padding: 8px 10px;
  cursor: pointer;
  color: var(--ink-text);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center
  }

  .nav .menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 12px 24px 20px;
    background: rgba(250, 247, 240, 0.98);
    border-bottom: 1px solid var(--line-1);
    backdrop-filter: blur(20px);
  }

  .nav .menu.is-open {
    display: flex
  }

  .nav .menu a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line-1)
  }

  .nav .menu a:last-child {
    border-bottom: 0
  }

  .nav-wrap .container {
    position: relative
  }

  .nav .btn--primary {
    display: none
  }

  .nav .menu .btn--primary--mobile {
    display: inline-flex;
    margin-top: 8px;
    justify-content: center;
    background: var(--mint-on-light);
    color: #fff;
    width: 100%;
    border-bottom: 0;
  }

  .nav .menu .btn--primary--mobile:hover {
    color: #fff;
    background: #0F766E;
  }
}

@media (min-width: 901px) {
  .nav .menu .btn--primary--mobile {
    display: none
  }
}

/* Subpages (buchen, agb) */
.page-main {
  padding-top: 88px;
  padding-bottom: 80px
}

.page-card {
  background: var(--paper-card);
  border: 1px solid var(--line-1);
  border-radius: 8px;
  padding: 40px 48px;
  max-width: 720px;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .page-card {
    padding: 28px 24px
  }
}

/* Legal pages (AGB, Datenschutz) */
.page-card.legal-content {
  max-width: 880px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-text-1);
}

.legal-content__intro {
  margin: 0 0 8px;
  font-size: 17px;
}

.legal-content__lead {
  margin: 0 0 20px;
  color: var(--ink-text-2);
}

.legal-content>p:not(.legal-content__intro):not(.legal-content__lead) {
  margin: 0 0 16px;
}

.legal-section {
  margin-top: 32px;
  padding-top: 8px;
  border-top: 1px solid var(--line-1);
}

.legal-section:first-of-type {
  margin-top: 24px;
  border-top: none;
  padding-top: 0;
}

.legal-section>h3 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-text-1);
}

.legal-list {
  margin: 0 0 16px;
  padding-left: 1.5em;
}

.legal-list--numbered {
  list-style-type: decimal;
}

.legal-list--bullets {
  list-style-type: disc;
  margin-top: 8px;
  margin-bottom: 8px;
}

.legal-list--bullets ul {
  list-style-type: circle;
  margin-top: 6px;
  margin-bottom: 6px;
}

.legal-list>li {
  margin-bottom: 12px;
  padding-left: 0.35em;
}

.legal-list>li:last-child {
  margin-bottom: 0;
}

.legal-list>li>ul,
.legal-list>li>ol {
  margin-top: 10px;
  margin-bottom: 0;
}

.legal-meta {
  margin: 12px 0 16px;
  padding: 16px 20px;
  background: var(--panel-bg, var(--paper-card));
  border: 1px solid var(--line-1);
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.6;
}

.legal-meta p {
  margin: 0;
}

.legal-footer {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line-1);
  font-size: 14px;
  color: var(--ink-text-2);
}

.legal-footer p {
  margin: 0 0 12px;
}

.legal-footer p:last-child {
  margin-bottom: 0;
}

.form-field {
  margin-bottom: 20px
}

.form-hint {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-text-3);
}

/* Hints inside a field sit below inputs (incl. file) — never pull up into the control */
.form-field .form-hint {
  margin-top: 6px;
  margin-bottom: 0;
}

.portal-login-card form>.btn--full {
  margin-top: 28px;
}

.portal-login-card .form-actions {
  margin-top: 28px;
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.col-span-8 {
  grid-column: span 8;
}

.col-span-4 {
  grid-column: span 4;
}

.portal-login-card .form-actions--split .btn {
  width: 100%;
  justify-content: center;
}

.portal-login-card .form-actions--split .btn--ghost {
  font-size: 13px;
  line-height: 1.3;
  white-space: normal;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

@media (max-width: 520px) {

  .portal-login-card .form-actions--split .col-span-8,
  .portal-login-card .form-actions--split .col-span-4 {
    grid-column: span 12;
  }
}

/* Portal — Layout & Toolbars */
.nav-portal-actions {
  display: flex;
  gap: 8px;
  margin-left: auto;
  align-items: center;
  flex-shrink: 0;
}

.portal-lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  margin-right: 4px;
}

.portal-lang-switch__sep {
  color: var(--ink-text-3);
}

.portal-lang-switch__link {
  color: var(--ink-text-2);
  text-decoration: none;
}

.portal-lang-switch__link:hover {
  color: var(--mint-on-light);
}

.portal-lang-switch__active {
  color: var(--mint-on-light);
  font-weight: 600;
}

.btn--sm {
  padding: 8px 14px;
  font-size: 13px;
}

.portal-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 24px;
  margin: 0 0 32px;
  padding: 12px 0 28px;
  border-bottom: 1px solid var(--line-1);
}

.portal-toolbar__intro {
  flex: 1 1 280px;
  min-width: 0;
}

.portal-toolbar__action {
  flex: 0 0 auto;
  margin-left: auto;
  margin-top: 4px;
  margin-bottom: 4px;
  align-self: center;
}

.portal-toolbar__full {
  flex: 1 1 100%;
  width: 100%;
  min-width: 0;
  margin-top: 4px;
}

.portal-toolbar__action--below {
  flex: 1 1 100%;
  margin-left: 0;
  margin-top: 16px;
  align-self: flex-end;
}

@media (max-width: 720px) {
  .portal-toolbar {
    flex-direction: column;
    align-items: stretch;
    padding-top: 8px;
    padding-bottom: 24px;
  }

  .portal-toolbar__action--below {
    align-self: flex-end;
  }
}

.status-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.status-pill--success {
  background: rgba(13, 148, 136, 0.14);
  color: #0F766E;
}

.status-pill--warning {
  background: rgba(234, 179, 8, 0.2);
  color: #92400E;
}

.status-pill--danger {
  background: rgba(244, 113, 116, 0.18);
  color: #B91C1C;
}

.status-pill--neutral {
  background: rgba(25, 35, 58, 0.06);
  color: var(--ink-text-2);
}

.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  font-size: 15px;
  background: var(--paper-card);
  color: var(--ink-text);
}

.form-field textarea {
  resize: vertical;
  min-height: 4.5em;
  line-height: 1.55;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  box-shadow: var(--elev-focus);
}

.schedule-form-speakers {
  border: 1px solid var(--line-1);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 0 0 20px;
}

.schedule-form-speakers legend {
  padding: 0 8px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
}

.schedule-form-speakers__rows {
  display: grid;
  gap: 12px;
}

.schedule-form-speakers__row {
  display: grid;
  gap: 4px;
  padding: 16px;
  background: var(--surface-2, #f8f9fb);
  border: 1px solid var(--line-1);
  border-radius: 8px;
}

.schedule-form-speakers__row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.schedule-form-speakers__row-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-text-2);
}

.schedule-form-speakers__row .speaker-row__remove {
  color: var(--danger);
  padding: 2px 8px;
}

.schedule-form-speakers__row .form-field:last-child {
  margin-bottom: 0;
}

.ticket-option {
  display: flex;
  gap: 12px;
  padding: 16px;
  margin-bottom: 8px;
  border: 1px solid var(--line-1);
  border-radius: 6px;
  cursor: pointer;
}

.ticket-option:has(input:checked) {
  border-color: var(--mint-on-light);
  background: var(--mint-on-light-soft)
}

.alert-success {
  padding: 20px 24px;
  border-radius: 6px;
  background: var(--mint-on-light-soft);
  border: 1px solid var(--mint-on-light);
  margin-bottom: 24px;
}

.alert-error {
  padding: 16px 20px;
  border-radius: 6px;
  background: rgba(244, 113, 116, 0.1);
  border: 1px solid rgba(244, 113, 116, 0.3);
  margin-bottom: 24px;
  font-size: 14px;
}

.alert-error:empty {
  display: none
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(25, 35, 58, 0.72);
  cursor: pointer;
}

.booking-modal__panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  background: var(--paper-card);
  border: 1px solid var(--line-1);
  border-radius: 10px;
  padding: 28px 32px;
  box-shadow: 0 24px 64px rgba(25, 35, 58, 0.2);
}

body.booking-modal-open {
  overflow: hidden
}

.booking-accordion {
  margin: 0 0 24px;
  border: 1px solid var(--line-1);
  border-radius: 8px;
  background: var(--paper-bg-2);
}

.booking-accordion__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-text);
  list-style: none;
  transition: color var(--dur) var(--ease);
}

.booking-accordion__summary::-webkit-details-marker {
  display: none
}

.booking-accordion__summary::after {
  content: '+';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  color: var(--ink-text-2);
  transition: all var(--dur) var(--ease);
}

.booking-accordion[open] .booking-accordion__summary::after {
  content: '−';
  background: var(--mint-on-light);
  border-color: var(--mint-on-light);
  color: #fff;
}

.booking-accordion__summary:hover {
  color: var(--mint-on-light)
}

.booking-accordion__panel {
  padding: 0 20px 20px;
  border-top: 1px solid var(--line-1);
}

.booking-accordion:not([open]) .booking-accordion__panel {
  display: none
}

.booking-accordion+.form-field {
  padding-top: 16px
}

.discount-message-banner {
  margin: 0 0 16px;
  padding: 16px 18px;
  border-radius: 8px;
  border: 1px solid rgba(13, 148, 136, 0.35);
  background: rgba(13, 148, 136, 0.1);
}

.discount-message-banner__eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mint-on-light);
}

.discount-message-banner__text {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
  color: var(--ink-text);
}

.discount-message-banner__hint {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-text-2);
}

.discount-feedback {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.5;
}

.discount-feedback--success {
  border: 1px solid rgba(13, 148, 136, 0.35);
  background: rgba(13, 148, 136, 0.08);
  color: var(--ink-text);
}

.discount-feedback--error {
  border: 1px solid rgba(244, 113, 116, 0.35);
  background: rgba(244, 113, 116, 0.1);
  color: #8F1D18;
}

.sponsor-cta {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 32px 40px;
  background: var(--paper-card);
  border: 1px solid var(--line-1);
  border-radius: 8px;
}

@media (max-width: 720px) {
  .sponsor-cta {
    grid-template-columns: 1fr;
    padding: 28px
  }
}

.sponsor-cta h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  color: var(--ink-text);
}

.sponsor-cta p {
  margin: 0;
  color: var(--ink-text-2);
  font-size: 14px;
  line-height: 1.6
}

/* ============================================================
   FAQ — collapsible
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 880px
}

.faq-item {
  border-top: 1px solid var(--line-1);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line-1)
}

.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 24px 0;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ink-text);
  transition: color var(--dur) var(--ease);
}

.faq-q:hover {
  color: var(--mint-on-light)
}

.faq-q .icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-text-2);
  transition: all var(--dur) var(--ease);
}

.faq-q .icon svg {
  width: 14px;
  height: 14px;
  transition: transform var(--dur) var(--ease)
}

.faq-item.open .faq-q .icon {
  background: var(--mint-on-light);
  border-color: var(--mint-on-light);
  color: #fff;
}

.faq-item.open .faq-q .icon svg {
  transform: rotate(45deg)
}

.faq-a {
  display: none;
  padding: 0 0 28px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-text-2);
  max-width: 68ch;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-a__body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-text-2);
}

.faq-a__body> :first-child {
  margin-top: 0
}

.faq-a__body> :last-child {
  margin-bottom: 0
}

.faq-a__body p {
  margin: 0 0 14px
}

.faq-a__body ul,
.faq-a__body ol {
  margin: 0 0 14px;
  padding-left: 1.35em;
}

.faq-a__body li {
  margin-bottom: 8px
}

.faq-a__body li:last-child {
  margin-bottom: 0
}

.faq-a__body strong {
  color: var(--ink-text);
  font-weight: 600
}

.faq-a__body a {
  color: var(--mint-on-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-a__body a:hover {
  text-decoration-thickness: 2px
}

.faq-list--portal {
  max-width: none;
  margin: 0;
}

.faq-list--portal .faq-q {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 0;
  gap: 16px;
}

.faq-list--portal .faq-q .icon {
  width: 28px;
  height: 28px;
}

.faq-list--portal .faq-a {
  max-width: none;
  padding-bottom: 4px;
}

.portal-toolbar__full.faq-list--portal {
  margin-top: 16px;
}

.speaker-callout {
  margin: 0 0 16px;
  padding: 16px 18px;
  background: #F4F1E8;
  border-left: 4px solid #C9A961;
  border-radius: 0 6px 6px 0;
}

.speaker-callout--ki {
  background: var(--mint-on-light-soft);
  border-left-color: var(--mint-on-light);
}

.speaker-callout--ki .speaker-callout__eyebrow {
  font-family: var(--font-mono);
  letter-spacing: 0.18em;
  color: var(--mint-on-light);
}

.speaker-callout--praxis .speaker-callout__eyebrow {
  font-family: var(--font-mono);
  letter-spacing: 0.18em;
}

.speaker-callout__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #846729;
}

.speaker-callout p:last-child {
  margin-bottom: 0;
}

.speaker-offer {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper-card-2);
}

.speaker-offer li {
  margin: 0;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-1);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-text);
}

.speaker-offer li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}

.speaker-offer strong {
  color: var(--mint-on-light);
}

/* ============================================================
   IMPRESSUM
   ============================================================ */
.impressum-bio {
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
  padding: 40px 48px;
  background: var(--paper-card);
  border: 1px solid var(--line-1);
  border-radius: 8px;
}

@media (max-width: 720px) {
  .impressum-bio {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    gap: 24px;
  }
}

.impressum-bio__photo {
  margin: 0;
}

.impressum-bio__photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.impressum-bio__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-text-2);
}

.impressum-bio__text p {
  margin: 0 0 16px;
}

.impressum-bio__text p:last-child {
  margin-bottom: 0;
}

.impressum-bio__lead {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink-text);
  margin-bottom: 20px !important;
}

.impressum-bio__sign {
  margin-top: 8px !important;
  font-weight: 600;
  color: var(--ink-text);
}

.impressum-card {
  background: var(--paper-card);
  border: 1px solid var(--line-1);
  border-radius: 8px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

@media (max-width: 720px) {
  .impressum-card {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 24px
  }
}

.impressum-card h3 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mint-on-light);
  margin: 0 0 16px;
  font-weight: 500;
}

.impressum-card .org {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--ink-text);
}

.impressum-card .meta {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-text-2)
}

.impressum-card .meta a {
  color: var(--mint-on-light)
}

.impressum-card .meta a:hover {
  text-decoration: underline
}

.impressum-card .disclaimer {
  margin-top: 24px;
  padding: 14px 16px;
  border-left: 2px solid var(--mint-on-light);
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-text-2);
  background: var(--mint-on-light-soft);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line-1);
  padding: 56px 0 40px;
  background: var(--paper-bg);
}

.footer .row-f {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

@media (max-width: 720px) {
  .footer .row-f {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }
}

.footer .brand-block {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.footer .brand-block .wm {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--ink-text);
  letter-spacing: -0.04em;
}

.footer .brand-block .wm em {
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--ink-text);
  opacity: 0.55;
  margin: 0 4px
}

.footer .brand-block p {
  font-size: 13px;
  color: var(--ink-text-3);
  line-height: 1.6;
  margin: 4px 0 0;
  max-width: 36ch
}

.footer .col-f .h {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-text-3);
  margin-bottom: 16px;
}

.footer .col-f a {
  display: block;
  font-size: 14px;
  color: var(--ink-text-2);
  padding: 6px 0;
  cursor: pointer;
  transition: color var(--dur) var(--ease);
}

.footer .col-f a:hover {
  color: var(--mint-on-light)
}

.footer .bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line-1);
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-text-3);
  letter-spacing: 0.06em;
}

/* Portal: session screenshots */
.session-screenshots-page .filepond--root {
  max-width: 100%;
  font-family: var(--font-body);
}

.session-screenshots-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.session-screenshots-thumb {
  display: block;
  border: 1px solid var(--line-1);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface-2, #f8f9fb);
  line-height: 0;
}

.session-screenshots-thumb img {
  display: block;
  width: 120px;
  height: 90px;
  object-fit: cover;
}

.speaker-portrait-page .filepond--root {
  max-width: 280px;
  font-family: var(--font-body);
}

.rich-text-editor {
  /* Quill replaces this node; styling lives on .rich-text-wrap */
}

[data-rich-text] .rich-text-wrap {
  border-radius: 4px;
  overflow: hidden;
}

[data-rich-text] .rich-text-wrap .ql-toolbar.ql-snow {
  border: 1px solid var(--line-2);
  border-bottom: 0;
  border-radius: 0;
  background: var(--surface-2, #f3f4f6);
  padding: 6px 10px;
  font-family: var(--font-body);
}

[data-rich-text] .rich-text-wrap .ql-container.ql-snow {
  border: 1px solid var(--line-2);
  border-top: 0;
  border-radius: 0 0 4px 4px;
  background: var(--paper-card, #fff);
  font-family: var(--font-body);
  font-size: 15px;
}

[data-rich-text][data-rich-text-lines="4"] .ql-editor {
  min-height: 6.5rem;
}

[data-rich-text][data-rich-text-lines="5"] .ql-editor,
[data-rich-text]:not([data-rich-text-lines]) .ql-editor {
  min-height: 8rem;
}

[data-rich-text] .ql-editor {
  line-height: 1.55;
  padding: 12px 14px;
  color: var(--ink-text);
}

[data-rich-text] .ql-editor.ql-blank::before {
  color: var(--ink-text-3, #6b7894);
  font-style: normal;
  left: 14px;
  right: 14px;
}

[data-rich-text]:focus-within .rich-text-wrap {
  box-shadow: var(--elev-focus);
}

[data-rich-text]:focus-within .rich-text-wrap .ql-toolbar.ql-snow,
[data-rich-text]:focus-within .rich-text-wrap .ql-container.ql-snow {
  border-color: var(--line-2);
}

[data-rich-text] .ql-snow .ql-stroke {
  stroke: var(--ink-text-2, #4a5570);
}

[data-rich-text] .ql-snow .ql-fill {
  fill: var(--ink-text-2, #4a5570);
}

[data-rich-text] .ql-snow.ql-toolbar button:hover,
[data-rich-text] .ql-snow .ql-toolbar button:hover,
[data-rich-text] .ql-snow.ql-toolbar button.ql-active,
[data-rich-text] .ql-snow .ql-toolbar button.ql-active {
  color: var(--mint-on-light, #0d9488);
}

[data-rich-text] .ql-snow.ql-toolbar button:hover .ql-stroke,
[data-rich-text] .ql-snow .ql-toolbar button:hover .ql-stroke,
[data-rich-text] .ql-snow.ql-toolbar button.ql-active .ql-stroke,
[data-rich-text] .ql-snow .ql-toolbar button.ql-active .ql-stroke {
  stroke: var(--mint-on-light, #0d9488);
}

[data-rich-text] .ql-snow.ql-toolbar button:hover .ql-fill,
[data-rich-text] .ql-snow .ql-toolbar button:hover .ql-fill,
[data-rich-text] .ql-snow.ql-toolbar button.ql-active .ql-fill,
[data-rich-text] .ql-snow .ql-toolbar button.ql-active .ql-fill {
  fill: var(--mint-on-light, #0d9488);
}

.rich-text-readonly {
  font-size: 15px;
  line-height: 1.55;
  padding: 12px 14px;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  background: var(--surface-2, #f8f9fb);
}

.rich-text-readonly p {
  margin: 0 0 0.75em;
}

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

.rich-text--invalid .rich-text-wrap,
.rich-text-wrap--invalid {
  box-shadow: 0 0 0 2px rgba(197, 48, 48, 0.2);
}

.rich-text--invalid .rich-text-wrap .ql-toolbar.ql-snow,
.rich-text--invalid .rich-text-wrap .ql-container.ql-snow,
.rich-text-wrap--invalid .ql-toolbar.ql-snow,
.rich-text-wrap--invalid .ql-container.ql-snow {
  border-color: var(--error, #c53030);
}

*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }/*! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com*/*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}