/* ============================================================
   AI IMPACT DAYS – Static Site Styles
   Fonts: Space Grotesk (Überschriften) + Inter (Fließtext)
   ============================================================ */

/* ---- CSS-Variablen (Farben hier zentral ändern) ---- */
:root {
  --orange:       #fd6925;
  --orange-dark:  #e55d1f;
  --foreground:   #1e2330;
  --background:   #ffffff;
  --muted-bg:     #f4f5f7;
  --muted-text:   #6b7280;
  --border:       #e2e5eb;
  --card:         #ffffff;
  --green:        #1a9e7d;
  --blue:         #2e8fdb;
  --red:          #d0213d;
  --radius:       0.75rem;
}

/* ---- Reset & Basis ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ---- Layout ---- */
.container { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 3.5rem 0; }
@media (min-width: 768px) { .section { padding: 5rem 0; } }

/* ================================================================
   HEADER
   ================================================================ */
#header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--background);
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
  display: flex; align-items: center; justify-content: center;
  height: 100px;
  transition: height 0.3s;
}
#header.scrolled { height: 72px; }
#header .logo { height: 72px; transition: height 0.3s; cursor: pointer; width: auto; }
#header.scrolled .logo { height: 52px; }
#menu-btn {
  position: absolute; left: 1.5rem;
  background: none; border: none; cursor: pointer;
  padding: 0.5rem; border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, opacity 0.3s;
  color: #4b5563;
  opacity: 0; pointer-events: none;
}
#header.scrolled #menu-btn { opacity: 1; pointer-events: auto; }
#menu-btn:hover { background: rgba(30,35,48,0.05); }
#header-contact-btn {
  position: absolute; right: 1.5rem;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.9rem;
  padding: 0.4rem 1.1rem; border-radius: 9999px;
  background: var(--orange); color: white; text-decoration: none;
  transition: opacity 0.3s, transform 0.2s;
  opacity: 0; pointer-events: none;
  display: none;
}
@media (min-width: 768px) { #header-contact-btn { display: block; } }
#header.scrolled #header-contact-btn { opacity: 1; pointer-events: auto; }
#header-contact-btn:hover { transform: scale(1.04); }
.header-spacer { height: 100px; }

/* ================================================================
   SIDE DRAWER (Navigation)
   ================================================================ */
#drawer-overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.4); backdrop-filter: blur(4px);
}
#drawer-overlay.open { display: block; }

#drawer {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: 18rem; z-index: 201;
  background: rgba(30,35,48,0.97);
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
  box-shadow: 4px 0 32px rgba(0,0,0,0.3);
}
#drawer.open { transform: translateX(0); }

.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem;
}
.drawer-header img { height: 2.5rem; filter: brightness(0) invert(1); }
#drawer-close {
  background: none; border: none; cursor: pointer;
  color: white; padding: 0.25rem;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s;
}
#drawer-close:hover { color: var(--orange); }

#drawer nav { display: flex; flex-direction: column; padding: 0 1.5rem; margin-top: 1rem; }
#drawer nav a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem; font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s;
  display: block;
}
#drawer nav a:last-child { border-bottom: none; }
#drawer nav a:hover { color: var(--orange); }

/* ================================================================
   HERO
   ================================================================ */
#hero {
  position: relative; min-height: 45vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('assets/hero-event.jpg');
  background-size: cover; background-position: center 30%;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(30,35,48,0.14); }
.hero-content {
  position: relative; z-index: 10;
  text-align: center; padding: 5rem 1.5rem 4rem;
  max-width: 48rem; margin: 0 auto;
}
.hero-content h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700; color: white; line-height: 1.25;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7), 0 1px 4px rgba(0,0,0,0.5);
}
.hero-content p {
  font-size: 1rem; margin-bottom: 2.5rem;
  line-height: 2;
  text-shadow: none;
}
.hero-highlight {
  color: white;
  background: rgba(0,0,0,0.35);
  padding: 0.05em 0.3em;
  box-decoration-break: clone; -webkit-box-decoration-break: clone;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* Buttons */
.btn {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1rem;
  padding: 0.75rem 1.5rem; border-radius: 9999px; border: none; cursor: pointer;
  transition: transform 0.2s, opacity 0.2s; display: inline-block;
}
.btn:hover { transform: scale(1.04); }
.btn-orange { background: var(--orange); color: white; }
.btn-outline-white { background: rgba(0,0,0,0.25); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); color: white; border: 2px solid rgba(255,255,255,0.7); }
.btn-outline-white:hover { background: rgba(0,0,0,0.4); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 10;
}
.scroll-mouse {
  width: 1.5rem; height: 2.5rem;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 9999px;
  display: flex; align-items: flex-start; justify-content: center;
  padding: 0.375rem;
}
.scroll-dot {
  width: 0.375rem; height: 0.375rem;
  background: rgba(255,255,255,0.7); border-radius: 50%;
  animation: scroll-bounce 2s infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(0.75rem); }
}

/* ================================================================
   FACTS LANE
   ================================================================ */
#facts {
  background: var(--muted-bg);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.facts-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1rem; text-align: center;
}
@media (min-width: 768px) { .facts-grid { grid-template-columns: repeat(5, 1fr); } }
.fact-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem; font-weight: 700; color: var(--foreground);
  display: block;
}
@media (min-width: 768px) { .fact-value { font-size: 2rem; } }
.fact-label { font-size: 0.875rem; color: var(--muted-text); }

/* ================================================================
   KONZEPT
   ================================================================ */
#konzept { background: var(--background); }
#konzept .inner { max-width: 48rem; margin: 0 auto; text-align: center; }
#konzept h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700; margin-bottom: 2rem; line-height: 1.3;
}
#konzept p {
  font-size: 1.125rem; line-height: 1.8; color: var(--muted-text);
}

/* ================================================================
   BAUSTEINE (Building Blocks)
   ================================================================ */
#bausteine { background: var(--muted-bg); }
#bausteine h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700; text-align: center; margin-bottom: 1rem;
}
#bausteine .section-sub {
  color: var(--muted-text); text-align: center;
  margin-bottom: 3.5rem; font-size: 1.125rem;
}
.blocks-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 640px) { .blocks-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blocks-grid { grid-template-columns: repeat(4, 1fr); } }

.block-card {
  background: var(--card); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.block-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.block-img { position: relative; height: 12rem; overflow: hidden; }
.block-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.block-card:hover .block-img img { transform: scale(1.05); }
.block-badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: var(--orange); color: white;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem; font-weight: 600;
  padding: 0.25rem 0.625rem; border-radius: 9999px;
}
.block-badge.secondary {
  background: var(--muted-bg); color: var(--foreground);
  border: 1px solid var(--border);
}
.block-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.block-body h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.0625rem; font-weight: 600; margin-bottom: 0.5rem;
}
.block-body p {
  font-size: 0.875rem; color: var(--muted-text);
  line-height: 1.6; flex: 1; margin-bottom: 1.5rem;
}
.block-logo { height: 2rem; object-fit: contain; margin-bottom: 0.5rem; }
.btn-block {
  display: block; text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem; font-weight: 500;
  padding: 0.5rem 1rem; border-radius: var(--radius);
  border: 1px solid var(--border); background: transparent; cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.block-card:hover .btn-block {
  background: var(--orange); color: white; border-color: var(--orange);
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
#testimonials { background: #eef0f4; padding: 2.5rem 0 3.5rem; }
.testimonials-track-outer { overflow: hidden; position: relative; }
.testimonials-track {
  display: flex; transition: transform 0.7s ease-in-out; will-change: transform;
}
/* Mobile: 1 sichtbar; Desktop: 3 */
.testimonial-slide { min-width: 100%; padding: 0 0.75rem; }
@media (min-width: 768px) { .testimonial-slide { min-width: 33.333%; } }

.testimonial-card {
  background: white; border: 1px solid rgba(253,105,37,0.15);
  border-radius: var(--radius); padding: 2rem; height: 100%;
  box-shadow: 0 4px 24px -6px rgba(253,105,37,0.12);
  transition: transform 0.3s, box-shadow 0.3s; position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px -6px rgba(253,105,37,0.22);
}
.tc-topbar {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--orange), rgba(253,105,37,0.3));
  border-radius: var(--radius) var(--radius) 0 0;
}
/* Mobile: Bild oben zentriert, dann Quote-Zeichen + Text, dann Name/Firma */
.tc-avatar {
  display: flex; justify-content: center; margin-bottom: 1.25rem;
}
.tc-avatar img {
  width: 6rem; height: 6rem; border-radius: 50%; object-fit: cover;
  border: 3px solid rgba(253,105,37,0.25);
  box-shadow: 0 2px 12px rgba(253,105,37,0.15);
}
.tc-quote {
  font-size: 2.5rem; line-height: 1; font-family: Georgia, serif;
  color: rgba(253,105,37,0.3); margin-bottom: 0.4rem;
}
.tc-quote-text {
  font-size: 0.875rem; line-height: 1.7;
  color: var(--muted-text); font-style: italic; margin-bottom: 1.25rem;
}
.tc-person-info { text-align: center; }
.tc-person-info h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem; font-weight: 600;
}
.tc-person-info p { font-size: 0.875rem; color: var(--muted-text); }

/* Desktop: Bild links + Name/Firma rechts daneben, Quote-Text darunter */
@media (min-width: 768px) {
  .testimonial-card {
    display: grid;
    grid-template-columns: 6rem 1fr;
    grid-template-rows: auto 1fr;
    column-gap: 1rem;
  }
  .tc-avatar {
    grid-column: 1; grid-row: 1;
    display: block; margin-bottom: 0;
  }
  .tc-avatar img { width: 6rem; height: 6rem; }
  .tc-person-info {
    grid-column: 2; grid-row: 1;
    align-self: center; text-align: left;
  }
  .tc-quote {
    position: absolute; top: 1.25rem; right: 1.5rem;
    font-size: 3rem; line-height: 1; margin-bottom: 0;
  }
  .tc-quote-text {
    grid-column: 1 / -1; grid-row: 2;
    margin-top: 1.25rem; margin-bottom: 0;
  }
}

/* Nav */
.testimonials-wrapper { position: relative; padding: 0 2.5rem; }
.tn-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  border: 1px solid var(--border); background: white; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s; box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  color: var(--foreground); z-index: 10;
}
.tn-btn:hover { background: var(--orange); color: white; border-color: var(--orange); box-shadow: 0 4px 16px rgba(253,105,37,0.25); }
.tn-prev { left: 0; }
.tn-next { right: 0; }
.testimonials-nav { display: flex; justify-content: center; margin-top: 1.5rem; }
.t-dots { display: flex; gap: 0.5rem; align-items: center; }
.t-dot {
  height: 0.5rem; border-radius: 9999px; width: 0.5rem;
  background: var(--border); cursor: pointer;
  transition: all 0.3s; border: none;
}
.t-dot.active { background: var(--orange); width: 1.5rem; }

/* ================================================================
   IMPRESSIONEN / GALERIE
   ================================================================ */
#impressionen { background: var(--background); }
#impressionen h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700; text-align: center; margin-bottom: 1rem;
}
#impressionen .section-sub {
  color: var(--muted-text); text-align: center;
  margin-bottom: 3.5rem; font-size: 1.125rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 180px; gap: 0.75rem;
}
@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
  }
}
.g-item {
  position: relative; overflow: hidden;
  border-radius: 0.75rem; cursor: pointer;
  border: none; padding: 0; background: none;
  display: block;
}
/* Grid-Spans (nur auf ≥640px aktiv) */
@media (min-width: 640px) {
  .g-col2 { grid-column: span 2; }
  .g-row2 { grid-row: span 2; }
}
.g-item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.g-item:hover img { transform: scale(1.05); }
.g-overlay {
  position: absolute; inset: 0;
  background: rgba(30,35,48,0); transition: background 0.3s;
}
.g-item:hover .g-overlay { background: rgba(30,35,48,0.2); }
.g-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.g-play-circle {
  width: 5rem; height: 5rem; border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(253,105,37,0.5);
  transition: transform 0.3s;
}
.g-item:hover .g-play-circle { transform: scale(1.1); }

/* Agenda-Downloads */
.agenda-downloads { margin-top: 3.5rem; padding-top: 3rem; border-top: 1px solid var(--border); }
.agenda-downloads-head {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 600;
  margin-bottom: 0.5rem;
}
.agenda-downloads-sub { font-size: 0.9rem; color: var(--muted-text); margin-bottom: 1.75rem; }
.agenda-cards {
  display: grid; grid-template-columns: 1fr;
  gap: 0.875rem;
}
@media (min-width: 640px) { .agenda-cards { grid-template-columns: repeat(3, 1fr); } }
.agenda-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); text-decoration: none; color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.agenda-card:hover {
  border-color: var(--orange); box-shadow: 0 4px 16px rgba(253,105,37,0.12);
  transform: translateY(-2px);
}
.agenda-card-icon {
  flex-shrink: 0; width: 2.75rem; height: 2.75rem; border-radius: 50%;
  background: rgba(253,105,37,0.1); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.agenda-card:hover .agenda-card-icon { background: var(--orange); color: white; }
.agenda-card-text { display: flex; flex-direction: column; gap: 0.25rem; }
.agenda-card-text strong { font-size: 0.9rem; font-weight: 600; font-family: 'Space Grotesk', sans-serif; line-height: 1.3; }
.agenda-card-text span { font-size: 0.8rem; color: var(--muted-text); }

/* ================================================================
   AI IMPACT DAYS – Termine-Modal
   ================================================================ */
.block-card--clickable { cursor: pointer; }
a.block-card { text-decoration: none; color: inherit; cursor: pointer; }

#days-modal {
  display: none; position: fixed; inset: 0; z-index: 300;
  align-items: center; justify-content: center;
}
#days-modal.open { display: flex; }

.dm-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(4px);
}

.dm-box {
  position: relative; z-index: 1;
  background: var(--background); border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  max-width: 52rem; width: calc(100% - 2rem);
  max-height: 90vh; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}
.dm-body {
  overflow-y: auto; flex: 1;
  padding: 2.5rem 2rem 2rem;
}
@media (min-width: 640px) { .dm-body { padding: 3rem; } }

.dm-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  background: #374151; border: none;
  border-radius: 50%; width: 2.25rem; height: 2.25rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: white; transition: background .2s;
  flex-shrink: 0;
}
.dm-close:hover { background: #1f2937; }

.dm-header { margin-bottom: 2rem; }
.dm-eyebrow {
  font-family: 'Space Grotesk', sans-serif; font-size: 0.75rem;
  font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--orange); margin-bottom: .5rem;
}
.dm-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700;
  color: var(--foreground); margin-bottom: .5rem;
}
.dm-sub { color: var(--muted-text); font-size: 1rem; line-height: 1.6; }

/* Location cards */
.dm-locations {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .dm-locations { grid-template-columns: 1fr 1fr; } }

.dm-location-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  display: flex; flex-direction: column; gap: .75rem;
}
.dm-loc-head { display: flex; flex-direction: column; gap: .35rem; }
.dm-loc-badge {
  display: inline-block; width: fit-content;
  background: var(--muted-bg); border: 1px solid var(--border);
  color: var(--muted-text); font-size: .7rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
  padding: .2rem .6rem; border-radius: 9999px;
}
.dm-loc-city {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem;
  font-weight: 700; color: var(--foreground);
  display: flex; align-items: center; gap: .4rem; margin: .25rem 0 0;
}
.dm-loc-city svg { color: var(--orange); flex-shrink: 0; }
.dm-loc-date { font-size: .8rem; color: var(--muted-text); font-weight: 500; }

.dm-loc-text { font-size: .875rem; color: var(--muted-text); line-height: 1.7; margin: 0; }
.dm-loc-callout {
  font-size: .8rem; font-style: italic; color: var(--orange);
  border-left: 2px solid var(--orange); padding-left: .75rem; margin: 0;
}
.dm-loc-cta {
  display: inline-block; margin-top: auto;
  font-family: 'Space Grotesk', sans-serif; font-size: .8125rem; font-weight: 600;
  color: var(--orange); text-decoration: none;
  transition: opacity .2s;
}
.dm-loc-cta:hover { opacity: .7; }

/* Leipzig / KI Jugend.Werkstatt */
.dm-jugend {
  background: var(--muted-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
}
.dm-jugend-inner { display: flex; flex-direction: column; gap: .75rem; }
@media (min-width: 640px) { .dm-jugend-inner { flex-direction: row; align-items: flex-start; gap: 1.25rem; } }
.dm-jugend-label { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; flex-wrap: wrap; }
.dm-jugend-logo { height: 1.5rem; object-fit: contain; }
.dm-jugend-text h4 {
  font-family: 'Space Grotesk', sans-serif; font-size: .9375rem;
  font-weight: 600; color: var(--foreground); margin-bottom: .35rem;
}
.dm-jugend-text p { font-size: .8375rem; color: var(--muted-text); line-height: 1.65; margin: 0; }

/* AI IMPACT CONNECT tag-on */
.dm-connect {
  display: flex; align-items: flex-start; gap: .6rem;
  border-top: 1px solid var(--border); padding-top: 1.25rem;
  color: var(--muted-text); font-size: .8125rem; line-height: 1.5;
}
.dm-connect svg { color: var(--orange); flex-shrink: 0; margin-top: .1rem; }

.dm-inline-link { color: var(--orange); text-decoration: none; white-space: nowrap; }
.dm-inline-link:hover { text-decoration: underline; }

/* Lightbox */
#lightbox {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
}
#lightbox.open { display: flex; }
#lb-close, #lb-prev, #lb-next {
  position: absolute; background: rgba(255,255,255,0.1); border: none;
  cursor: pointer; color: white; display: flex; align-items: center;
  justify-content: center; transition: background 0.2s; z-index: 10;
  border-radius: 50%;
}
#lb-close { top: 1.5rem; right: 1.5rem; width: 2.5rem; height: 2.5rem; }
#lb-prev  { left: 1rem; top: 50%; transform: translateY(-50%); width: 3rem; height: 3rem; }
#lb-next  { right: 1rem; top: 50%; transform: translateY(-50%); width: 3rem; height: 3rem; }
@media (min-width: 768px) { #lb-prev { left: 2rem; } #lb-next { right: 2rem; } }
#lb-close:hover, #lb-prev:hover, #lb-next:hover { background: rgba(255,255,255,0.2); }
#lb-content { max-width: 64rem; width: 100%; margin: 0 1rem; }
#lb-img { width: 100%; max-height: 85vh; object-fit: contain; border-radius: 0.75rem; }
#lb-video-wrap { position: relative; width: 100%; padding-bottom: 56.25%; border-radius: 0.75rem; overflow: hidden; }
#lb-video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
#lb-counter {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.5); font-size: 0.875rem;
}

/* ================================================================
   SPEAKERS MARQUEE
   ================================================================ */
#speakers { background: rgba(220,224,230,0.3); }
#speakers h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700; text-align: center; margin-bottom: 1rem;
}
.speakers-intro { text-align: center; max-width: 48rem; margin: 0 auto 2.5rem; }
.speakers-intro .sub { color: var(--muted-text); margin-bottom: 0.75rem; font-size: 1.0625rem; }
.speakers-intro .desc { font-size: 0.9375rem; color: var(--muted-text); line-height: 1.7; }

.marquee-wrap { display: flex; flex-direction: column; gap: 0.75rem; padding-bottom: 2.5rem; }
@media (min-width: 768px) { .marquee-wrap { gap: 1rem; } }
.marquee-row { overflow-x: clip; overflow-y: visible; position: relative; z-index: 1; }
.marquee-row:hover { z-index: 10; }
.marquee-inner {
  display: flex; gap: 0.75rem; width: max-content;
  animation: marquee-left 50s linear infinite;
}
@media (min-width: 768px) { .marquee-inner { gap: 1rem; } }
.marquee-inner.right { animation: marquee-right 50s linear infinite; }
.marquee-row:hover .marquee-inner { animation-play-state: paused; }

@keyframes marquee-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Speaker Avatar */
.sp-av {
  position: relative; width: 4rem; height: 4rem;
  border-radius: 50%; flex-shrink: 0;
  border: 2px solid transparent; transition: border-color 0.3s;
  display: block;
}
@media (min-width: 768px) { .sp-av { width: 5rem; height: 5rem; } }
.sp-av:hover { border-color: rgba(253,105,37,0.6); }
.sp-av img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 50%; display: block; transition: transform 0.3s;
}
.sp-av:hover img { transform: scale(1.05); }

.sp-tooltip {
  position: absolute; top: calc(100% + 6px);
  left: 50%; transform: translateX(-50%) translateY(4px);
  background: rgba(30,35,48,0.9); border-radius: 6px;
  padding: 4px 10px; text-align: center; white-space: nowrap;
  opacity: 0; pointer-events: none; z-index: 20;
  transition: opacity 0.25s, transform 0.25s;
}
.sp-av:hover .sp-tooltip {
  opacity: 1; transform: translateX(-50%) translateY(0);
}
.sp-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.6875rem; font-weight: 600; color: white; line-height: 1.3; display: block;
}
@media (min-width: 768px) { .sp-name { font-size: 0.75rem; } }
.sp-org {
  font-size: 0.5625rem; color: rgba(255,255,255,0.75); line-height: 1.2; display: block;
}
@media (min-width: 768px) { .sp-org { font-size: 0.625rem; } }

/* ================================================================
   PARTNERING / PARTNER WERDEN
   ================================================================ */
#partnering {
  background: linear-gradient(180deg, #dce0e8 0%, #e3e6ec 50%, #eaecf0 100%);
}
#partnering h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700; text-align: center; margin-bottom: 1.25rem;
}
.partnering-intro {
  color: var(--muted-text); text-align: center;
  max-width: 48rem; margin: 0 auto 4rem; font-size: 1.0625rem; line-height: 1.7;
}
.roles-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 5rem;
}
@media (min-width: 640px) { .roles-grid { grid-template-columns: repeat(2, 1fr); } }

.role-card {
  background: rgba(255,255,255,0.8); border-radius: var(--radius);
  border: 1px solid rgba(253,105,37,0.2); padding: 1.75rem;
  display: flex; flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.role-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.1); border-color: rgba(253,105,37,0.4); }
.role-card.green { border-color: rgba(26,158,125,0.2); }
.role-card.green:hover { border-color: rgba(26,158,125,0.4); }
.role-card.blue  { border-color: rgba(46,143,219,0.2); }
.role-card.blue:hover  { border-color: rgba(46,143,219,0.4); }
.role-card.red   { border-color: rgba(208,33,61,0.2); }
.role-card.red:hover   { border-color: rgba(208,33,61,0.4); }

.role-icon-wrap {
  width: 2.5rem; height: 2.5rem; border-radius: 0.5rem;
  background: rgba(253,105,37,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.role-icon-wrap.green { background: rgba(26,158,125,0.1); }
.role-icon-wrap.blue  { background: rgba(46,143,219,0.1); }
.role-icon-wrap.red   { background: rgba(208,33,61,0.1); }
.role-icon-wrap svg { width: 1.25rem; height: 1.25rem; color: var(--orange); }
.role-icon-wrap.green svg { color: var(--green); }
.role-icon-wrap.blue  svg { color: var(--blue); }
.role-icon-wrap.red   svg { color: var(--red); }

.role-header { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; }
.role-title-col { flex: 1; }
.role-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.0625rem; font-weight: 600; }
.role-badge {
  display: inline-block; font-size: 0.6875rem; font-weight: 500;
  background: rgba(46,143,219,0.1); color: var(--blue);
  padding: 0.125rem 0.5rem; border-radius: 9999px; margin-top: 0.25rem;
}
.role-card p { font-size: 0.875rem; color: var(--muted-text); line-height: 1.6; flex: 1; margin-bottom: 1.25rem; }
.btn-role {
  font-family: 'Space Grotesk', sans-serif; font-size: 0.875rem; font-weight: 500;
  padding: 0.5rem 1rem; border-radius: var(--radius);
  border: 1px solid rgba(253,105,37,0.3); color: var(--orange);
  background: transparent; cursor: pointer; display: inline-block;
  transition: background 0.2s; align-self: flex-start;
}
.btn-role:hover { background: rgba(253,105,37,0.1); }
.btn-role.green { border-color: rgba(26,158,125,0.3); color: var(--green); }
.btn-role.green:hover { background: rgba(26,158,125,0.1); }
.btn-role.blue  { border-color: rgba(46,143,219,0.3); color: var(--blue); }
.btn-role.blue:hover  { background: rgba(46,143,219,0.1); }
.btn-role.red   { border-color: rgba(208,33,61,0.3); color: var(--red); }
.btn-role.red:hover   { background: rgba(208,33,61,0.1); }

/* Benefits */
.benefits-h { font-family: 'Space Grotesk', sans-serif; font-size: 1.375rem; font-weight: 700; text-align: center; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .benefits-h { font-size: 1.625rem; } }
.benefits-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 5rem;
}
@media (min-width: 640px)  { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(4, 1fr); } }
.benefit-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.benefit-icon-wrap {
  width: 3rem; height: 3rem; border-radius: 50%;
  background: rgba(253,105,37,0.1);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.benefit-icon-wrap svg { width: 1.5rem; height: 1.5rem; color: var(--orange); }
.benefit-item h4 { font-family: 'Space Grotesk', sans-serif; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.375rem; }
.benefit-item p { font-size: 0.875rem; color: var(--muted-text); line-height: 1.6; }

.partnering-cta { text-align: center; border-top: 1px solid var(--border); padding-top: 3rem; }
.partnering-cta p {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem; font-weight: 700; margin-bottom: 1.25rem;
}
@media (min-width: 768px) { .partnering-cta p { font-size: 1.5rem; } }
.btn-glow {
  background: var(--orange); color: white;
  font-family: 'Space Grotesk', sans-serif; font-size: 1.0625rem; font-weight: 600;
  padding: 0.875rem 2rem; border-radius: 9999px; border: none; cursor: pointer;
  box-shadow: 0 0 20px rgba(253,105,37,0.3);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s; display: inline-block;
}
.btn-glow:hover { background: var(--orange-dark); box-shadow: 0 0 30px rgba(253,105,37,0.45); transform: scale(1.04); }

/* ================================================================
   ÜBER UNS
   ================================================================ */
#about { background: var(--background); }
.about-intro { text-align: center; max-width: 48rem; margin: 0 auto 4rem; }
.about-intro h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 700; margin-bottom: 1.25rem;
}
.about-intro p { color: var(--muted-text); font-size: 1.0625rem; line-height: 1.7; }
.about-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto 1fr auto auto;
    column-gap: 3rem;
    row-gap: 1.5rem;
  }
}

.org-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05); display: flex; flex-direction: column;
}
@media (min-width: 768px) {
  .org-card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 5;
  }
}
.org-logo-wrap { height: 7rem; display: flex; justify-content: center; align-items: center; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .org-logo-wrap { margin-bottom: 0; } }
.org-logo-wrap img { max-height: 5rem; max-width: 100%; object-fit: contain; }
.org-focus { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .org-focus { margin-bottom: 0; } }
.org-focus svg { color: var(--orange); flex-shrink: 0; width: 1rem; height: 1rem; }
.org-focus span { font-family: 'Space Grotesk', sans-serif; font-size: 0.875rem; font-weight: 600; color: var(--orange); text-align: center; }
.org-desc { font-size: 0.875rem; color: var(--muted-text); line-height: 1.7; flex: 1; }
.org-link { display: inline-block; margin-top: 0.75rem; font-size: 0.8rem; color: var(--muted-text); text-decoration: none; opacity: 0.7; transition: opacity .2s; }
.org-link:hover { opacity: 1; color: var(--orange); }
.org-person {
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 1rem;
}
@media (min-width: 768px) { .org-person { margin-top: 0; } }
.org-person img { width: 6rem; height: 6rem; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); flex-shrink: 0; }
.org-person h4 { font-family: 'Space Grotesk', sans-serif; font-size: 0.875rem; font-weight: 600; }
.op-role { font-size: 0.75rem; color: var(--muted-text); margin-bottom: 0.25rem; }
.op-bio  { font-size: 0.75rem; color: var(--muted-text); line-height: 1.5; }
.about-team-note {
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem; text-align: center;
}
.about-team-note svg { color: var(--muted-text); flex-shrink: 0; width: 1.25rem; height: 1.25rem; }
.about-team-note p { font-size: 0.875rem; color: var(--muted-text); font-style: italic; }

/* ================================================================
   KONTAKT
   ================================================================ */
#kontakt {
  background: linear-gradient(180deg, #dce0e8 0%, #e3e6ec 50%, #eaecf0 100%);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 3fr 2fr; } }

.contact-form-box, .contact-person-box {
  background: white; border-radius: 1rem;
  padding: 2rem; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
@media (min-width: 768px) { .contact-form-box, .contact-person-box { padding: 2.5rem; } }

.contact-form-box h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 2rem; line-height: 1.3; }
@media (min-width: 768px) { .contact-form-box h2 { font-size: 1.75rem; } }
.contact-form-box h2 span { color: var(--orange); }

.contact-tabs { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
.c-tab {
  padding: 0.625rem 1.25rem; border-radius: 9999px;
  font-size: 0.875rem; font-weight: 500; cursor: pointer;
  border: 1px solid var(--border);
  background: var(--muted-bg); color: var(--muted-text);
  transition: all 0.3s;
}
.c-tab.active {
  background: var(--orange); color: white; border-color: var(--orange);
  box-shadow: 0 0 16px rgba(253,105,37,0.25);
}
.c-intro { display: none; font-size: 0.875rem; color: var(--muted-text); line-height: 1.7; margin-bottom: 1.5rem; }
.c-intro.active { display: block; }
.c-panel { display: none; }
.c-panel.active { display: block; }
.c-disclaimer { font-size: 0.75rem; color: var(--muted-text); line-height: 1.6; margin-top: 1rem; }
.c-disclaimer a { text-decoration: underline; color: inherit; }
.c-disclaimer a:hover { color: var(--foreground); }
.mc-response { display: none; font-size: 0.875rem; border-radius: var(--radius); padding: 0.75rem 1rem; margin-top: 0.75rem; line-height: 1.5; }
.mc-response.success { display: block; background: #56C02B; color: #fff; border: 1px solid #56C02B; }
.mc-response.error   { display: block; background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* Honeypot */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Kontaktformular: Submit-Zeile & Spinner */
.form-submit-row { display: flex; align-items: center; gap: 1rem; }
.form-spinner { display: none; position: relative; width: 28px; height: 28px; flex-shrink: 0; }
.form-spinner.active { display: block; }
.form-spinner div {
  position: absolute; inset: 0; border-radius: 50%;
  background: var(--orange); opacity: 0.6;
  animation: spinner-bounce 2s ease-in-out infinite;
}
.form-spinner div:last-child { animation-delay: -1s; }
@keyframes spinner-bounce {
  0%, 100% { transform: scale(0); opacity: 0; }
  50%       { transform: scale(1); opacity: 0.6; }
}

/* Kontaktformular: Response-Box (Mitwirkung / Allgemein) */
.form-response { display: none; font-size: 0.875rem; border-radius: var(--radius); padding: 0.75rem 1rem; margin-top: 0.75rem; line-height: 1.5; }
.form-response.success { display: block; background: #56C02B; color: #fff; border: 1px solid #56C02B; }
.form-response.error   { display: block; background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

.fg { margin-bottom: 1rem; }
.fg input, .fg textarea, .fg select {
  width: 100%; padding: 0.75rem 1rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-family: 'Inter', sans-serif; font-size: 0.9375rem;
  background: white; color: var(--foreground); transition: border-color 0.2s;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  outline: none; border-color: var(--orange);
}
.fg textarea { min-height: 7.5rem; resize: vertical; }
.btn-submit {
  width: 100%; padding: 0.75rem; border-radius: var(--radius);
  background: var(--orange); color: white; border: none; cursor: pointer;
  font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 600;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--orange-dark); }

.contact-person-box { display: flex; flex-direction: column; align-items: center; text-align: center; }
.contact-person-box h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.375rem; font-weight: 700; margin-bottom: 1.5rem; }
.cp-photo { width: 7rem; height: 7rem; border-radius: 50%; object-fit: cover; border: 4px solid rgba(253,105,37,0.15); margin-bottom: 1.25rem; }
.cp-name { font-family: 'Space Grotesk', sans-serif; font-size: 1.0625rem; font-weight: 600; }
.cp-role { font-size: 0.875rem; color: var(--muted-text); margin-bottom: 1.5rem; }
.cp-desc { font-size: 0.875rem; color: var(--muted-text); line-height: 1.7; margin-bottom: 2rem; max-width: 18rem; }
.cp-links { width: 100%; max-width: 18rem; display: flex; flex-direction: column; gap: 0.75rem; }
.cp-link {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1rem; border-radius: 0.75rem;
  border: 1px solid var(--border); font-size: 0.875rem; color: var(--foreground);
  transition: border-color 0.2s, color 0.2s;
}
.cp-link:hover { border-color: rgba(253,105,37,0.4); color: var(--orange); }
.cp-link svg { color: var(--orange); flex-shrink: 0; width: 1rem; height: 1rem; }

/* ================================================================
   FOOTER
   ================================================================ */
footer { background: #1a1a1a; color: #9ca3af; }
.footer-main {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding: 3.5rem 0;
}
@media (min-width: 640px)  { .footer-main { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-main { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-logo { height: 2.5rem; margin-bottom: 1.25rem; }
.footer-about { font-size: 0.875rem; line-height: 1.7; color: #9ca3af; }
.footer-about strong { color: white; }
.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif; font-size: 0.8125rem; font-weight: 600;
  color: white; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col ul li a { font-size: 0.875rem; color: #9ca3af; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--orange); }
.f-contact-row { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: #9ca3af; margin-bottom: 0.625rem; }
.f-contact-row svg { flex-shrink: 0; width: 1rem; height: 1rem; }
a.f-contact-row:hover { color: var(--orange); }
.footer-partner-logos { display: flex; align-items: center; gap: 1rem; margin-top: 1.25rem; }
.footer-partner-logos img { height: 2rem; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.5; transition: opacity 0.2s; }
.footer-partner-logos img:hover { opacity: 1; }
.footer-sub { border-top: 1px solid rgba(255,255,255,0.08); padding: 1rem 0; }
.footer-sub-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.75rem; font-size: 0.75rem; color: #6b7280;
}
@media (min-width: 640px) { .footer-sub-inner { flex-direction: row; justify-content: space-between; } }
.footer-legal { display: flex; gap: 1rem; }
.footer-legal a:hover { color: #9ca3af; }

/* ================================================================
   AI IMPACT CONNECT – Modal
   (Overlay, Box und Schließ-Button kommen von .dm-*)
   ================================================================ */
#connect-modal {
  display: none; position: fixed; inset: 0; z-index: 300;
  align-items: center; justify-content: center;
}
#connect-modal.open { display: flex; }

/* Logo statt Headline */
.cm-logo { height: 4.00rem; width: auto; margin-bottom: .5rem; }

/* Fließtext-Beschreibung */
.cm-desc {
  font-size: .9375rem; color: var(--muted-text);
  line-height: 1.75; margin-bottom: 1.75rem;
}

/* Programm-Kacheln (2×2) */
.cm-program-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
  margin-bottom: 1.75rem;
}
@media (min-width: 540px) { .cm-program-grid { grid-template-columns: repeat(2, 1fr); } }

.cm-tile {
  background: var(--muted-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem;
  display: flex; flex-direction: column; gap: .5rem;
}
.cm-tile-head {
  display: flex; align-items: center; gap: .625rem; margin-bottom: .25rem;
}
.cm-tile-icon {
  width: 2rem; height: 2rem; border-radius: .375rem;
  background: rgba(253,105,37,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cm-tile-icon svg { width: 1rem; height: 1rem; color: var(--orange); }
.cm-tile h4 {
  font-family: 'Space Grotesk', sans-serif; font-size: .9375rem;
  font-weight: 600; color: var(--foreground); margin: 0;
}
.cm-tile p {
  font-size: .8375rem; color: var(--muted-text); line-height: 1.65; margin: 0;
}

/* Für-wen-Callout */
.cm-for-whom {
  background: rgba(253,105,37,0.05); border: 1px solid rgba(253,105,37,0.15);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
}
.cm-for-whom h4 {
  font-family: 'Space Grotesk', sans-serif; font-size: .875rem;
  font-weight: 600; color: var(--foreground); margin-bottom: .5rem;
}
.cm-for-whom p {
  font-size: .8375rem; color: var(--muted-text); line-height: 1.65; margin: 0;
}

/* Termine */
.cm-dates-head {
  font-family: 'Space Grotesk', sans-serif; font-size: .875rem;
  font-weight: 600; color: var(--foreground); margin-bottom: .875rem;
}
.cm-dates { display: flex; flex-direction: column; gap: .625rem; margin-bottom: 1.75rem; }
.cm-date-row {
  display: flex; align-items: center; gap: .75rem; flex-wrap: wrap;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: .875rem 1rem;
}
.cm-date-label {
  font-family: 'Space Grotesk', sans-serif; font-size: .9375rem;
  font-weight: 600; color: var(--foreground); flex: 1; min-width: 10rem;
}
.cm-date-detail { font-size: .8125rem; color: var(--muted-text); }
@media (max-width: 479px) { .cm-date-detail { display: none; } }
.cm-date-badge {
  font-size: .6875rem; font-weight: 600; letter-spacing: .04em;
  padding: .2rem .6rem; border-radius: 9999px;
  background: rgba(26,158,125,0.1); color: var(--green);
}
.cm-date-badge.soon { background: var(--muted-bg); color: var(--muted-text); }
.cm-date-cta {
  font-family: 'Space Grotesk', sans-serif; font-size: .8125rem; font-weight: 600;
  color: var(--orange); white-space: nowrap;
  text-decoration: none; transition: opacity .2s;
}
.cm-date-cta:hover { opacity: .7; }

/* CTA-Zeile */
.cm-cta {
  border-top: 1px solid var(--border); padding-top: 1.5rem; text-align: center;
}
.cm-cta p { font-size: .875rem; color: var(--muted-text); margin-bottom: 1rem; }
