/* =====================================================
   ÜBER UNS — moderne Vereinschronik
   Hero bleibt global/einheitlich, diese Datei gestaltet die Kapitel darunter.
===================================================== */

:root {
  --ueber-ink: #14100e;
  --ueber-muted: #6d625b;
  --ueber-cream: #fbf3e7;
  --ueber-cream-2: #fff9ef;
  --ueber-paper: rgba(255, 255, 255, 0.82);
  --ueber-red: #d0021b;
  --ueber-red-dark: #8f0013;
  --ueber-gold: #f2c94c;
  --ueber-blue: #0b5fd8;
  --ueber-blue-dark: #073a86;
  --ueber-dark: #100d0b;
  --ueber-radius-lg: 34px;
  --ueber-radius-md: 24px;
  --ueber-radius-sm: 16px;
  --ueber-shadow: 0 28px 70px rgba(43, 24, 14, 0.14);
  --ueber-shadow-soft: 0 16px 42px rgba(43, 24, 14, 0.1);
  --ueber-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

.ueber-page {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 8% 14%, rgba(242, 201, 76, 0.16), transparent 26rem),
    linear-gradient(180deg, var(--ueber-cream-2), var(--ueber-cream));
  color: var(--ueber-ink);
}

.ueber-container {
  width: min(1180px, calc(100% - 44px));
  margin-inline: auto;
}

.ueber-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 4px;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.12);
}

.ueber-progress-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--ueber-red), var(--ueber-gold));
  transform-origin: left center;
  transition: width 0.12s linear;
}

/* ===== Kapitel-Navigation ===== */

.ueber-chapter-nav {
  display: none;
  position: sticky;
  top: var(--mvo-header-height, 80px);
  z-index: 40;
  margin-top: -1px;
  padding: 12px 0;
  background: rgba(255, 249, 239, 0.78);
  border-bottom: 1px solid rgba(91, 64, 45, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.ueber-chapter-nav-inner {
  width: min(1180px, calc(100% - 44px));
  margin-inline: auto;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.ueber-chapter-nav-inner::-webkit-scrollbar {
  display: none;
}

.ueber-chapter-nav-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(91, 64, 45, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(20, 16, 14, 0.72);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 26px rgba(40, 22, 11, 0.05);
  transition: transform 0.25s var(--ueber-ease), border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.ueber-chapter-nav-link span {
  color: var(--ueber-red);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.ueber-chapter-nav-link:hover,
.ueber-chapter-nav-link:focus-visible,
.ueber-chapter-nav-link.is-active {
  transform: translateY(-2px);
  border-color: rgba(208, 2, 27, 0.34);
  background: #ffffff;
  color: var(--ueber-ink);
  outline: none;
}

/* ===== Grundsektionen ===== */

.ueber-section {
  position: relative;
  padding: clamp(84px, 10vw, 142px) 0;
  isolation: isolate;
}

.ueber-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.ueber-section-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--ueber-red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ueber-section-meta-light {
  color: rgba(255, 255, 255, 0.9);
}

.ueber-meta-index {
  font-variant-numeric: tabular-nums;
  color: currentColor;
}

.ueber-meta-line {
  width: 54px;
  height: 1px;
  background: currentColor;
  opacity: 0.52;
}

.ueber-section-title {
  max-width: 840px;
  margin: 0;
  color: var(--ueber-ink);
  font-size: clamp(2.5rem, 6vw, 5.8rem);
  line-height: 0.88;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.ueber-section-title br {
  display: block;
  content: "";
  margin-top: -0.16em;
}

.ueber-text-accent {
  position: relative;
  z-index: 0;
  color: var(--ueber-red);
  font-style: italic;
  font-weight: 800;
}

.ueber-text-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.04em;
  z-index: -1;
  height: 0.1em;
  background: linear-gradient(90deg, var(--ueber-gold), transparent);
  opacity: 0.45;
}

.ueber-text-accent.is-soft {
  color: var(--ueber-blue);
  font-style: normal;
}

.ueber-page .mvo-accent-red {
  color: var(--ueber-red);
  font-style: italic;
  font-weight: 800;
}

.ueber-page .mvo-accent-gold {
  color: #806018;
  font-weight: 800;
}

.ueber-page .mvo-accent-blue {
  color: #1759a6;
  font-weight: 800;
}

.ueber-page u {
  text-decoration-color: rgba(208, 2, 27, 0.42);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

.ueber-section-title-light {
  color: #fff;
}

.ueber-section-lead {
  max-width: 710px;
  margin: 26px 0 0;
  color: var(--ueber-muted);
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  line-height: 1.72;
}

.ueber-section-lead-light {
  color: rgba(255, 255, 255, 0.78);
}

.ueber-card-kicker {
  display: inline-flex;
  align-items: center;
  color: var(--ueber-red);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ===== 01 Der Anfang ===== */

.ueber-section-anfang::before {
  background:
    radial-gradient(circle at 94% 8%, rgba(208, 2, 27, 0.1), transparent 28rem),
    linear-gradient(180deg, var(--ueber-cream-2), var(--ueber-cream));
}

.ueber-anfang-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.72fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.ueber-copy-block {
  min-width: 0;
}

.ueber-anfang-card {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(91, 64, 45, 0.12);
  border-radius: var(--ueber-radius-lg);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.92), rgba(255, 245, 229, 0.82)),
    radial-gradient(circle at 84% 12%, rgba(242, 201, 76, 0.42), transparent 18rem);
  box-shadow: var(--ueber-shadow);
}

.ueber-anfang-card::before {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -18%;
  width: 320px;
  aspect-ratio: 1;
  border-radius: 999px;
  border: 1px solid rgba(208, 2, 27, 0.16);
}

.ueber-anfang-year {
  display: block;
  margin: 18px 0 22px;
  color: var(--ueber-red);
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  cursor: pointer;
}

.ueber-anfang-card h3 {
  max-width: 360px;
  margin: 0;
  color: var(--ueber-ink);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.12;
}

.ueber-anfang-card p {
  max-width: 390px;
  margin: 18px 0 0;
  color: var(--ueber-muted);
  line-height: 1.65;
}

.ueber-anfang-facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ueber-mini-fact {
  padding: 24px;
  border: 1px solid rgba(91, 64, 45, 0.1);
  border-radius: var(--ueber-radius-md);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--ueber-shadow-soft);
}

.ueber-mini-fact strong {
  display: block;
  color: var(--ueber-red);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  cursor: pointer;
}

.ueber-mini-fact span {
  display: block;
  margin-top: 10px;
  color: var(--ueber-muted);
  font-weight: 800;
}

/* ===== 02 Über die Zeit ===== */

.ueber-section-zeit {
  background: #fffaf2;
  overflow: visible;
  padding-bottom: clamp(120px, 12vw, 190px);
}

.ueber-section-zeit::before {
  background:
    linear-gradient(rgba(91, 64, 45, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 64, 45, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
  opacity: 0.9;
}

.ueber-section-head {
  margin-bottom: clamp(36px, 6vw, 70px);
}

.ueber-section-head-centered {
  text-align: left;
}

.ueber-section-head-centered {
  max-width: 840px;
}

.ueber-section-head-centered .ueber-section-title,
.ueber-section-head-centered .ueber-section-lead {
  margin-inline: 0;
  text-align: left;
}

.ueber-storyline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.ueber-storyline::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(208, 2, 27, 0.55), rgba(242, 201, 76, 0.7), transparent);
  z-index: -1;
}

.ueber-story-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 360px;
  height: 100%;
  padding: 26px 26px 42px;
  border: 1px solid rgba(91, 64, 45, 0.12);
  border-radius: var(--ueber-radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 249, 239, 0.82));
  box-shadow: var(--ueber-shadow-soft);
  transition: border-color 0.35s var(--ueber-ease), box-shadow 0.35s var(--ueber-ease), transform 0.35s var(--ueber-ease);
}

.ueber-story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: inherit;
  background:
    linear-gradient(#fffaf2, #fffaf2) padding-box,
    linear-gradient(135deg, var(--ueber-red), var(--ueber-gold)) border-box;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ueber-ease);
}

.ueber-story-card:hover,
.ueber-story-card:focus-within {
  border-color: transparent;
  box-shadow: 0 24px 60px rgba(43, 24, 14, 0.14);
  transform: translateY(-2px);
}

.ueber-story-card:hover::after,
.ueber-story-card:focus-within::after {
  opacity: 1;
}

.ueber-story-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--ueber-red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.ueber-story-year {
  display: block;
  color: var(--ueber-red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ueber-story-card h3 {
  margin: 14px 0 16px;
  color: var(--ueber-ink);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.ueber-story-card p {
  margin: 0;
  color: var(--ueber-muted);
  line-height: 1.64;
}

/* ===== 03 Aktuell im Takt ===== */

.ueber-section-aktuell {
  background:
    radial-gradient(circle at 16% 22%, rgba(208, 2, 27, 0.12), transparent 22rem),
    linear-gradient(180deg, #fffaf2, var(--ueber-cream));
}

.ueber-aktuell-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.74fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.ueber-aktuell-intro .ueber-section-meta,
.ueber-aktuell-intro .ueber-section-title {
  grid-column: 1;
}

.ueber-aktuell-intro .ueber-section-lead {
  grid-column: 2;
  margin-top: 0;
}

.ueber-rhythm-grid {
  display: grid;
  grid-template-columns: 1.05fr repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ueber-rhythm-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(91, 64, 45, 0.11);
  border-radius: var(--ueber-radius-md);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--ueber-shadow-soft);
  transition: transform 0.35s var(--ueber-ease), box-shadow 0.35s var(--ueber-ease), background 0.35s ease;
}

.ueber-rhythm-card:first-child {
  grid-row: span 2;
  min-height: 536px;
  background:
    linear-gradient(145deg, rgba(20, 16, 14, 0.94), rgba(69, 18, 20, 0.92)),
    radial-gradient(circle at 100% 0%, rgba(242, 201, 76, 0.24), transparent 18rem);
  color: #fff;
}

.ueber-rhythm-card:first-child .ueber-card-kicker,
.ueber-rhythm-card:first-child em,
.ueber-rhythm-card:first-child p {
  color: rgba(255, 255, 255, 0.72);
}

.ueber-rhythm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(43, 24, 14, 0.16);
  background: #fff;
}

.ueber-rhythm-card strong {
  display: block;
  margin-top: 18px;
  color: currentColor;
  font-size: clamp(2rem, 4vw, 4.3rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.ueber-rhythm-card em {
  display: block;
  margin-top: 12px;
  color: var(--ueber-red);
  font-style: normal;
  font-weight: 900;
}

.ueber-rhythm-card p {
  margin: 18px 0 0;
  color: var(--ueber-muted);
  line-height: 1.6;
}

/* ===== 04 Jugendarbeit ===== */

.ueber-section-jugend {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 255, 255, 0.24), transparent 24rem),
    linear-gradient(135deg, var(--ueber-blue-dark), var(--ueber-blue));
  color: #fff;
}

.ueber-section-jugend::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 24px),
    radial-gradient(circle at 16% 80%, rgba(242, 201, 76, 0.18), transparent 20rem);
  opacity: 0.84;
}

.ueber-jugend-glow {
  position: absolute;
  inset: 12% auto auto 6%;
  width: 300px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(242, 201, 76, 0.2);
  filter: blur(58px);
  pointer-events: none;
}

.ueber-jugend-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(310px, 0.8fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
}

.ueber-jugend-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.ueber-jugend-fact {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--ueber-radius-sm);
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(14px);
}

.ueber-jugend-fact strong {
  display: block;
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.ueber-jugend-fact span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.ueber-jugend-media {
  position: relative;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--ueber-radius-lg);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 16, 64, 0.32);
}

.ueber-jugend-media::before {
  content: "";
  position: absolute;
  inset: auto auto -20px -20px;
  width: 110px;
  aspect-ratio: 1;
  border-radius: 28px;
  background: var(--ueber-red);
  z-index: -1;
}

.ueber-jugend-media img {
  display: block;
  width: 100%;
  height: clamp(360px, 46vw, 560px);
  object-fit: cover;
  border-radius: 26px;
}

.ueber-jugend-media figcaption {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  display: inline-flex;
  width: fit-content;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(16, 13, 11, 0.68);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

/* ===== 05 Mitmachen ===== */

.ueber-section-join {
  background:
    radial-gradient(circle at 76% 14%, rgba(208, 2, 27, 0.26), transparent 24rem),
    linear-gradient(155deg, #1c1510, var(--ueber-dark));
  color: #fff;
}

.ueber-section-join::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.5;
  mask-image: linear-gradient(180deg, #000, transparent 90%);
}

.ueber-join-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.64fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.ueber-join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.ueber-join-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid rgba(242, 201, 76, 0.55);
  border-radius: 999px;
  background: var(--ueber-gold);
  color: #1a1208;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(242, 201, 76, 0.18);
  transition: transform 0.28s var(--ueber-ease), background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

.ueber-join-button.is-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.ueber-join-button:hover,
.ueber-join-button:focus-visible {
  transform: translateY(-3px);
  background: #fff;
  color: var(--ueber-ink);
  border-color: #fff;
  outline: none;
}

.ueber-join-cards {
  display: grid;
  gap: 16px;
}

.ueber-join-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--ueber-radius-md);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.ueber-join-card .ueber-card-kicker {
  color: var(--ueber-gold);
}

.ueber-join-card strong {
  display: block;
  margin-top: 14px;
  color: #fff;
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.ueber-join-card p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.62;
}

.ueber-join-address {
  font-weight: 800;
}

/* ===== Animationen ===== */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ueber-ease), transform 0.8s var(--ueber-ease);
}

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

[data-stagger-group] [data-reveal]:nth-child(2) { transition-delay: 0.08s; }
[data-stagger-group] [data-reveal]:nth-child(3) { transition-delay: 0.16s; }
[data-stagger-group] [data-reveal]:nth-child(4) { transition-delay: 0.24s; }
[data-stagger-group] [data-reveal]:nth-child(5) { transition-delay: 0.32s; }

[data-reveal-media] {
  transform: translateY(28px) scale(0.97);
}

[data-reveal-media].is-visible {
  transform: translateY(0) scale(1);
}

[data-depth-card] {
  will-change: transform;
}

/* ===== Back-to-top Kompatibilität ===== */

.back-to-top-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
}

/* ===== Tablet & Mobile ===== */

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

  .ueber-storyline::before {
    display: none;
  }

  .ueber-rhythm-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ueber-rhythm-card:first-child {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 320px;
  }
}

@media (max-width: 900px) {
  .ueber-container,
  .ueber-chapter-nav-inner {
    width: min(100% - 32px, 1180px);
  }

  .ueber-chapter-nav {
    top: 70px;
    padding: 10px 0;
  }

  .ueber-section {
    padding: 78px 0;
  }

  .ueber-anfang-grid,
  .ueber-aktuell-intro,
  .ueber-jugend-grid,
  .ueber-join-grid {
    grid-template-columns: 1fr;
  }

  .ueber-aktuell-intro .ueber-section-meta,
  .ueber-aktuell-intro .ueber-section-title,
  .ueber-aktuell-intro .ueber-section-lead {
    grid-column: auto;
  }

  .ueber-aktuell-intro .ueber-section-lead {
    margin-top: 22px;
  }

  .ueber-anfang-card {
    min-height: 0;
  }

  .ueber-anfang-facts {
    grid-template-columns: 1fr;
  }

  .ueber-jugend-media {
    order: -1;
  }
}

@media (max-width: 680px) {
  .ueber-progress-bar {
    height: 3px;
  }

  .ueber-chapter-nav-link {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.76rem;
  }

  .ueber-section-title {
    font-size: clamp(2.35rem, 13vw, 3.65rem);
    letter-spacing: -0.065em;
  }

  .ueber-section-lead {
    font-size: 1rem;
    line-height: 1.65;
  }

  .ueber-section-meta {
    gap: 10px;
    margin-bottom: 18px;
    font-size: 0.7rem;
  }

  .ueber-meta-line {
    width: 34px;
  }

  .ueber-storyline,
  .ueber-rhythm-grid,
  .ueber-jugend-facts {
    grid-template-columns: 1fr;
  }

  .ueber-story-card,
  .ueber-rhythm-card,
  .ueber-mini-fact,
  .ueber-join-card,
  .ueber-jugend-fact {
    padding: 22px;
    border-radius: 22px;
  }

  .ueber-story-card {
    min-height: 0;
  }

  .ueber-rhythm-card,
  .ueber-rhythm-card:first-child {
    min-height: 0;
  }

  .ueber-anfang-year {
    font-size: clamp(4rem, 25vw, 6.2rem);
  }

  .ueber-jugend-media img {
    height: min(96vw, 420px);
  }

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

  .ueber-join-button {
    width: 100%;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
