@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("fonts/barlow-condensed-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

body,
button,
input,
select,
textarea {
  font-family: "Manrope", Arial, sans-serif;
}

h1,
h2,
h3,
.match-pair b,
.event-card time b,
.event-list-card time b,
.fact-grid b {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  letter-spacing: .01em;
}

/* Ruhigere Akzentfarbe */
.eyebrow {
  color: #17613f;
}

.hero .eyebrow,
.sub-hero .eyebrow,
.partner-cta .eyebrow,
.social-home .eyebrow {
  color: #d6e7dd;
}

/* Navigation */
.site-header {
  transition: height .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.site-header.scrolled {
  height: 70px;
  box-shadow: 0 12px 35px rgba(7, 55, 33, .1);
}

.site-header nav > a,
.nav-dropdown > summary {
  position: relative;
}

.site-header nav > a::after,
.nav-dropdown > summary::before {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--green);
  transition: transform .25s ease;
}

.site-header nav > a:hover::after,
.nav-dropdown > summary:hover::before {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  cursor: pointer;
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: " ▾";
  font-size: .75em;
}

.nav-dropdown > div {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  min-width: 190px;
  padding: 10px;
  transform: translateX(-50%);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.nav-dropdown > div::before {
  content: "";
  position: absolute;
  height: 18px;
  left: 0;
  right: 0;
  top: -18px;
}

.nav-dropdown > div a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  white-space: nowrap;
}

.nav-dropdown > div a:hover {
  background: #edf3ef;
}

/* Animationen */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

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

.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }

.home-hero {
  min-height: min(760px, calc(100vh - 86px));
  background-image: linear-gradient(90deg, rgba(2, 29, 18, .86) 0%, rgba(2, 29, 18, .55) 43%, rgba(2, 29, 18, .12) 72%), var(--home-hero);
  background-position: center, center 63%;
  background-size: cover;
  animation: heroFocus 12s ease-out both;
}

@keyframes heroFocus {
  from { background-position: center, center 56%; }
  to { background-position: center, center 63%; }
}

.hero-sequence > * {
  opacity: 0;
  transform: translateY(20px);
  animation: heroEntrance .7s cubic-bezier(.2,.75,.25,1) forwards;
}

.hero-sequence > :nth-child(2) { animation-delay: .12s; }
.hero-sequence > :nth-child(3) { animation-delay: .24s; }
.hero-sequence > :nth-child(4) { animation-delay: .36s; }

@keyframes heroEntrance {
  to { opacity: 1; transform: none; }
}

.card,
.news-card,
.gateway-card,
.social-card,
.person-card,
.contact-card,
.sponsor,
.team-card-grid > a {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.news-card:hover,
.gateway-card:hover,
.social-card:hover,
.person-card:hover,
.contact-card:hover,
.sponsor:hover,
.team-card-grid > a:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(7, 55, 33, .12);
  border-color: #b9cec0;
}

.news-card img,
.featured-news img,
.person-card img,
.timeline-entry img {
  transition: transform .5s ease;
}

.news-card:hover img,
.featured-news:hover img,
.person-card:hover img {
  transform: scale(1.035);
}

/* Neuigkeiten */
.news-overview {
  background: #fff;
}

.featured-news {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  min-height: 480px;
  margin-bottom: 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #f2f6f3;
}

.featured-media,
.news-card-media {
  overflow: hidden;
  background: #dce8e0;
}

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

.featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.featured-copy h2 {
  margin: 18px 0;
  font-size: clamp(34px, 4vw, 54px);
}

.featured-copy p {
  color: var(--muted);
  font-size: 18px;
}

.featured-copy b,
.news-card b {
  margin-top: auto;
  color: var(--green);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.news-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.news-card-media {
  height: 230px;
}

.news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.news-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: rgba(7, 91, 52, .16);
  font-size: 78px;
  font-weight: 900;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 46px;
}

/* Spiel, Termine und Schnellzugänge */
.matchday {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: center;
  gap: 26px;
  max-width: 1180px;
  margin: -52px auto 0;
  padding: 26px 32px;
  position: relative;
  z-index: 3;
  color: #fff;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  background: #063e28;
  box-shadow: 0 24px 55px rgba(2,29,18,.23);
}

.matchday p { margin: 5px 0 0; color: #cce1d5; }
.matchday > :last-child { display: grid; justify-items: end; gap: 5px; }
.matchday a { color: #fff; font-weight: 800; }
.match-pair { display: flex; align-items: center; justify-content: center; gap: 20px; text-align: center; }
.match-pair b { font-size: clamp(24px,3vw,38px); line-height: 1; }
.match-pair span { color: #8fbea4; font-size: 28px; }

.event-grid,
.event-list { display: grid; gap: 18px; }
.event-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
.event-card,
.event-list-card {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.event-card time,
.event-list-card time {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 88px;
  color: #fff;
  border-radius: 14px;
  background: #075b34;
}
.event-card time b,
.event-list-card time b { font-size: 38px; line-height: .9; }
.event-card time span,
.event-list-card time span { margin-top: 7px; font-size: 11px; font-weight: 800; }
.event-card h3,
.event-list-card h2 { margin: 8px 0; }
.event-list-card { grid-template-columns: minmax(0,260px) 90px 1fr; align-items: center; padding: 0; overflow: hidden; }
.event-list-card > img { width: 100%; height: 100%; min-height: 250px; object-fit: cover; }
.event-list-card > time { margin: 24px 0; }
.event-list-card > div { padding: 28px 30px 28px 0; }

.home-gateways {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.home-gateways > a {
  position: relative;
  min-height: 330px;
  padding: 42px;
  overflow: hidden;
  color: #fff;
  border-radius: 22px;
  background: linear-gradient(140deg,#075b34,#022d1c);
  transition: transform .3s ease, box-shadow .3s ease;
}
.home-gateways > a:nth-child(2) { background: linear-gradient(140deg,#1f2d26,#07140e); }
.home-gateways > a::after {
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  bottom: -110px;
  content: "";
  border: 35px solid rgba(255,255,255,.06);
  border-radius: 50%;
  transition: transform .5s ease;
}
.home-gateways > a:hover { transform: translateY(-6px); box-shadow: 0 25px 55px rgba(7,55,33,.22); }
.home-gateways > a:hover::after { transform: scale(1.2); }
.home-gateways h2 { font-size: clamp(38px,5vw,60px); margin: 18px 0 8px; }
.home-gateways p { max-width: 520px; color: #dce9e1; }

/* Training, Formulare und Detailbereiche */
.tab-content:not([hidden]) { animation: panelIn .35s ease both; }
@keyframes panelIn { from { opacity: 0; transform: translateY(10px); } }
.training-panel { padding: clamp(26px,5vw,58px); }
.training-list { display: grid; gap: 12px; margin: 28px 0; }
.training-list article {
  display: grid;
  grid-template-columns: 150px 170px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 12px;
  background: #edf4ef;
}
.training-list article b { color: var(--green); }
.training-list article small { color: var(--muted); }
.team-contacts { padding: clamp(26px,5vw,58px); }
.person-card a { display: block; overflow-wrap: anywhere; }
.person-card .whatsapp-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  margin: 10px 0 5px;
  color: #08723d;
  font-weight: 800;
  white-space: nowrap;
}
.person-card .whatsapp-link svg {
  display: block;
  width: 18px;
  min-width: 18px;
  max-width: 18px;
  height: 18px;
  min-height: 18px;
  max-height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.person-card .whatsapp-link svg .fill { fill: currentColor; stroke: none; }

.form-page,
.membership-layout {
  display: grid;
  max-width: 1100px;
  gap: clamp(35px,7vw,90px);
}
.form-page { grid-template-columns: .72fr 1.28fr; align-items: start; }
.membership-layout { grid-template-columns: .8fr 1.2fr; }
.form-info {
  position: sticky;
  top: 120px;
  padding: clamp(26px,4vw,42px);
  color: #fff;
  border-radius: 22px;
  background: linear-gradient(145deg,#075b34,#032c1b);
}
.form-info h2 { margin: 12px 0 24px; }
.form-info ol { display: grid; gap: 13px; padding-left: 22px; }
.form-info p { color: #d5e5dc; }
.form-info a { display: inline-block; margin-top: 10px; color: #fff; font-weight: 800; overflow-wrap: anywhere; }
.public-form,
.success-card {
  padding: clamp(26px,4vw,44px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(7,55,33,.08);
}
.public-form > label,
.public-form .form-grid > label { display: grid; gap: 7px; font-weight: 750; }
.public-form input,
.public-form select,
.public-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #b9c7be;
  border-radius: 10px;
  background: #fff;
  font: inherit;
}
.public-form textarea { min-height: 130px; resize: vertical; }
.public-form.compact { display: grid; gap: 15px; }
.public-form .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.public-form .full { grid-column: 1/-1; }
.privacy-check { display: flex !important; align-items: flex-start; gap: 9px !important; margin: 20px 0; font-size: 14px; }
.privacy-check input { width: auto; margin-top: 3px; }
.honeypot { position: absolute !important; left: -9999px !important; }
.feature-list { display: grid; gap: 12px; padding: 0; list-style: none; }
.feature-list li { position: relative; padding: 16px 16px 16px 46px; border-radius: 12px; background: #edf4ef; }
.feature-list li::before { position: absolute; left: 17px; content: "✓"; color: var(--green); font-weight: 900; }

/* Galerie */
.photo-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 15px; }
.gallery-item {
  position: relative;
  min-height: 270px;
  padding: 0;
  overflow: hidden;
  color: #fff;
  border: 0;
  border-radius: 16px;
  cursor: zoom-in;
  background: #dce8e0;
}
.gallery-item img { width: 100%; height: 100%; min-height: 270px; object-fit: cover; transition: transform .5s ease; }
.gallery-item span { position: absolute; right: 0; bottom: 0; left: 0; padding: 38px 18px 16px; text-align: left; background: linear-gradient(transparent,rgba(0,0,0,.75)); }
.gallery-item:hover img { transform: scale(1.05); }
.lightbox { width: min(1100px,92vw); padding: 0; overflow: visible; border: 0; border-radius: 18px; background: transparent; }
.lightbox::backdrop { background: rgba(2,18,11,.88); backdrop-filter: blur(5px); }
.lightbox img { display: block; width: 100%; max-height: 80vh; object-fit: contain; border-radius: 18px; }
.lightbox p { color: #fff; text-align: center; }
.lightbox-close { position: absolute; top: -44px; right: 0; width: 38px; height: 38px; color: #fff; border: 0; border-radius: 50%; cursor: pointer; background: rgba(255,255,255,.16); font-size: 26px; }

/* Suche, Hinweise und Rechtliches */
.notice { padding: 11px 24px; color: #fff; text-align: center; font-weight: 750; background: #075b34; }
.notice.notice-gold { color: #1c241f; background: #d9ba68; }
.notice.notice-dark { background: #17251e; }
.search-page { max-width: 1000px; }
.search-form { display: grid; grid-template-columns: 1fr auto; gap: 12px; margin: 28px 0; }
.search-form input { min-width: 0; padding: 15px; border: 1px solid #b9c7be; border-radius: 11px; font: inherit; }
.search-results { display: grid; gap: 12px; }
.search-results > a { padding: 23px; border: 1px solid var(--line); border-radius: 14px; background: #fff; transition: transform .2s ease,border-color .2s ease; }
.search-results > a:hover { transform: translateX(5px); border-color: #8cb39b; }
.search-results h2 { margin: 6px 0; }
.legal-hero { padding-bottom: 45px; }
.imprint-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; padding-top: 0; }
.legal-card { padding: clamp(26px,4vw,42px); border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.legal-card h2 { margin: 10px 0 22px; }
.legal-card dl { display: grid; gap: 15px; }
.legal-card dl div { display: grid; grid-template-columns: 150px 1fr; gap: 15px; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.legal-card dt { color: var(--muted); }
.legal-card dd { margin: 0; font-weight: 800; }
.legal-note { padding: 15px; color: #46574e; border-left: 3px solid #7ea78c; background: #edf4ef; font-size: 14px; }
.legal-wide { max-width: 950px; }
.privacy-layout { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; padding-top: 0; }
.privacy-card { padding: clamp(26px,4vw,42px); border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.privacy-card-wide { grid-column: 1 / -1; }
.privacy-card h2 { margin: 9px 0 18px; font-size: clamp(27px,3vw,38px); }
.privacy-card p { margin: 0; color: var(--muted); }
.privacy-card a { color: var(--green); font-weight: 800; }

/* Zeitlinie: Jahr darf nicht von der Linie verdeckt werden */
.timeline::before { z-index: 0; }
.timeline-entry { position: relative; z-index: 1; scroll-margin-top: 100px; }
.timeline-period { position: relative; z-index: 2; padding: 8px 34px 8px 0; background: #fff; }
.timeline-entry::before { z-index: 3; }

@media (max-width: 900px) {
  .matchday { grid-template-columns: 1fr; margin: 0; border-radius: 0; text-align: center; }
  .matchday > :last-child { justify-items: center; }
  .event-grid,
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .event-list-card { grid-template-columns: 90px 1fr; padding: 20px; }
  .event-list-card > img { grid-column: 1/-1; height: 260px; min-height: 0; border-radius: 12px; }
  .event-list-card > time { margin: 0; }
  .event-list-card > div { padding: 0; }
  .form-page,
  .membership-layout { grid-template-columns: 1fr; }
  .form-info { position: static; }
}

@media (max-width: 680px) {
  .home-hero { min-height: 620px; background-position: center, 56% center; }
  .home-gateways,
  .event-grid,
  .photo-grid,
  .imprint-grid { grid-template-columns: 1fr; }
  .home-gateways > a { min-height: 280px; padding: 30px; }
  .public-form .form-grid { grid-template-columns: 1fr; }
  .public-form .full { grid-column: auto; }
  .training-list article { grid-template-columns: 1fr; gap: 5px; }
  .legal-card dl div { grid-template-columns: 1fr; gap: 4px; }
  .gallery-item,
  .gallery-item img { min-height: 240px; }
}

.pagination a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  font-weight: 800;
}

.pagination a.active {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.news-detail {
  max-width: 920px;
  margin: 0 auto;
  padding: 90px 24px;
}

.news-detail header {
  max-width: 800px;
  margin-bottom: 38px;
}

.news-detail h1 {
  margin: 16px 0 24px;
  color: var(--green);
  font-size: clamp(44px, 7vw, 76px);
}

.news-detail .lead {
  color: var(--muted);
  font-size: 21px;
}

.back-link.dark {
  display: inline-block;
  margin: 0 0 28px;
  color: var(--green);
}

.news-detail-image {
  width: 100%;
  height: auto;
  max-height: none;
  margin-bottom: 42px;
  border-radius: 22px;
  object-fit: contain;
}

.news-detail-body {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.85;
}

.share-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.share-row a {
  padding: 8px 13px;
  border-radius: 999px;
  background: #e8f0eb;
  color: var(--green);
  font-weight: 800;
}

/* Vereinsseiten */
.gateway-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gateway-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.gateway-card span,
.gateway-card b {
  color: var(--green);
  font-weight: 800;
}

.gateway-card h3 {
  margin: 18px 0 5px;
  font-size: 34px;
}

.gateway-card p {
  color: var(--muted);
}

.gateway-card b {
  margin-top: auto;
}

.timeline {
  position: relative;
  max-width: 1060px;
  margin: auto;
  padding-right: 24px;
  padding-left: 24px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 88px;
  bottom: 88px;
  left: 194px;
  width: 2px;
  background: #c9d9cf;
}

.timeline-entry {
  position: relative;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 70px;
  padding: 54px 0;
}

.timeline-entry::before {
  content: "";
  position: absolute;
  top: 65px;
  left: 159px;
  width: 14px;
  height: 14px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 1px var(--green);
}

.timeline-period {
  color: var(--green);
  font-size: 18px;
  font-weight: 900;
  padding-right: 28px;
  text-align: right;
}

.timeline-content {
  max-width: 720px;
}

.timeline-content h2 {
  margin-bottom: 24px;
}

.timeline-content ul,
.feature-list {
  padding: 0;
  list-style: none;
}

.timeline-content li,
.feature-list li {
  position: relative;
  margin: 10px 0;
  padding-left: 22px;
  color: var(--muted);
}

.timeline-content li::before,
.feature-list li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.timeline-content img {
  width: 100%;
  max-height: 480px;
  margin-top: 28px;
  border-radius: 18px;
  filter: grayscale(100%);
  object-fit: cover;
}

.people-grid,
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.person-card,
.social-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.person-card img,
.person-placeholder {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.person-placeholder {
  display: grid;
  place-items: center;
  background: #e3ece6;
  color: #a3b8ab;
  font-size: 80px;
  font-weight: 900;
}

.person-card > div:last-child {
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.person-card h2 {
  margin: 8px 0 20px;
  font-size: 29px;
}

.person-card a,
.contact-card a {
  color: var(--green);
}

.sport-hero {
  position: relative;
  background: linear-gradient(90deg,rgba(4,55,31,.92),rgba(4,55,31,.45)),var(--sport-image) center/cover;
}

.sport-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 8vw;
  align-items: start;
  background: #fff;
}

.sport-layout > div > p {
  max-width: 700px;
  color: var(--muted);
  font-size: 18px;
}

.location-card {
  padding: 36px;
  border-radius: 20px;
  background: #e8f0eb;
}

.location-card h3 {
  margin: 12px 0;
  font-size: 28px;
}

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

.social-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  min-height: 240px;
  padding: 28px;
}

.social-mark {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border-radius: 22px;
  background: var(--green);
  color: #fff;
  font-size: 25px;
  font-weight: 900;
}

.social-mark svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.social-mark svg .fill {
  fill: currentColor;
  stroke: none;
}

.social-mark svg .cut {
  fill: var(--green);
  stroke: none;
}

.social-card h2 {
  margin: 7px 0 10px;
  font-size: 33px;
}

.social-card p {
  color: var(--muted);
}

.social-card b {
  color: var(--green);
}

.social-home {
  display: grid;
  grid-template-columns: minmax(280px,.75fr) minmax(0,1.25fr);
  gap: 5vw;
  align-items: center;
  background: var(--green);
  color: #fff;
}

.social-home p {
  color: #c7ded0;
  font-size: 18px;
}

.social-home-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 10px;
}

.social-home-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 12px;
  font-weight: 800;
  white-space: nowrap;
  transition: background .2s ease;
}

.social-home-icon {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
}

.social-home-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.social-home-icon svg .fill {
  fill: currentColor;
  stroke: none;
}

.social-home-icon svg .cut {
  fill: var(--green);
  stroke: none;
}

.social-home-links a:hover {
  background: rgba(255,255,255,.1);
}

/* Kontakte */
.team-contact-panel {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  min-height: 420px;
  padding: 48px;
  background: #f2f6f3;
}

.team-contact-panel img,
.contact-badge {
  width: 280px;
  height: 280px;
  border-radius: 20px;
  object-fit: cover;
}

.contact-badge {
  display: grid;
  place-items: center;
  background: #dce8e0;
  color: rgba(7,91,52,.22);
  font-size: 70px;
  font-weight: 900;
}

.team-contact-panel h2 {
  margin: 10px 0 5px;
}

.team-contact-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 22px;
}

.team-contact-actions > a:not(.button) {
  color: var(--green);
  font-weight: 800;
}

.contact-page {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 8vw;
  background: #fff;
}

.contact-intro p {
  color: var(--muted);
  font-size: 17px;
}

.address-block {
  margin-top: 34px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.contact-list {
  display: grid;
  gap: 15px;
}

.contact-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.contact-card img {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  object-fit: cover;
}

.contact-card h3 {
  margin: 5px 0;
  font-size: 24px;
}

.contact-card a {
  display: block;
}

@media (hover:hover) and (min-width:801px) {
  .nav-dropdown:not([open]):hover > div {
    display: block;
  }
}

@media (max-width: 800px) {
  .site-header.scrolled {
    height: 64px;
  }

  .site-header nav {
    max-height: calc(100vh - 64px);
    overflow: auto;
  }

  .nav-dropdown > div {
    position: static;
    min-width: 0;
    padding: 8px 0 0 14px;
    transform: none;
    border: 0;
    box-shadow: none;
  }

  .featured-news,
  .news-grid,
  .gateway-grid,
  .people-grid,
  .social-grid,
  .sport-layout,
  .social-home,
  .contact-page,
  .team-contact-panel {
    grid-template-columns: 1fr;
  }

  .featured-news {
    min-height: 0;
  }

  .featured-media {
    height: 280px;
  }

  .featured-copy {
    padding: 30px;
  }

  .timeline::before {
    left: 35px;
  }

  .timeline-entry {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-left: 55px;
  }

  .timeline-entry::before {
    left: 1px;
  }

  .timeline-period {
    padding-right: 0;
    text-align: left;
  }

  .team-contact-panel {
    padding: 28px;
  }

  .team-contact-panel img,
  .contact-badge {
    width: 100%;
    height: 260px;
  }

  .social-home-links {
    grid-template-columns: 1fr;
  }
  .privacy-layout {
    grid-template-columns: 1fr;
  }
  .privacy-card-wide {
    grid-column: auto;
  }
}

/* Startseite: fokussierte Platzanlage, Wappen und klare Aktionen */
.home-hero {
  min-height: min(760px, calc(100vh - 84px));
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(2, 29, 18, .90) 0%, rgba(2, 29, 18, .70) 39%, rgba(2, 29, 18, .20) 73%),
    var(--home-hero);
  background-position: center, 68% 62%;
  background-size: 100% 100%, 118% auto;
  background-repeat: no-repeat;
  animation: none;
}

.home-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, .8fr);
  align-items: center;
  gap: clamp(34px, 6vw, 88px);
  width: 100%;
}

.home-hero .hero-content {
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  margin-top: 30px;
}

.hero-actions .button {
  flex: 0 0 auto;
}

.hero-text-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 8px;
  color: #fff;
  font-weight: 800;
}

.hero-text-link:hover {
  color: var(--lime);
}

.hero-crest {
  width: min(320px, 26vw);
  max-height: 390px;
  justify-self: end;
  object-fit: contain;
  opacity: .83;
  filter: drop-shadow(0 22px 36px rgba(0, 0, 0, .38));
  animation: crestEntrance .9s .28s cubic-bezier(.2,.75,.25,1) both;
}

@keyframes crestEntrance {
  from { opacity: 0; transform: translateY(24px) scale(.94); }
  to { opacity: .83; transform: none; }
}

/* Unser Verein */
.club-hero {
  position: relative;
  display: flex;
  min-height: 590px;
  align-items: flex-end;
  justify-content: space-between;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(2, 35, 20, .94), rgba(2, 35, 20, .48) 55%, rgba(2, 35, 20, .12)),
    var(--club-hero) center 88% / cover no-repeat;
}

.club-hero::after {
  position: absolute;
  right: -6vw;
  bottom: -12vw;
  width: 32vw;
  height: 32vw;
  content: "";
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}

.club-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.club-hero-copy h1 {
  margin-bottom: 22px;
}

.club-hero-copy p {
  max-width: 680px;
  color: #dce9e1;
  font-size: clamp(18px, 2vw, 24px);
}

.club-hero-year {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.18);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(110px, 18vw, 250px);
  font-weight: 800;
  line-height: .68;
}

.club-story {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(42px, 8vw, 110px);
  background: #fff;
}

.club-story-image {
  position: relative;
}

.club-story-image::before {
  position: absolute;
  top: -22px;
  right: -22px;
  bottom: 22px;
  left: 22px;
  z-index: 0;
  content: "";
  border: 1px solid #a9c1b1;
  border-radius: 26px;
}

.club-story-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 560px;
  border-radius: 26px;
  object-fit: cover;
}

.club-story-copy p {
  color: var(--muted);
  font-size: 18px;
}

.text-arrow {
  display: inline-block;
  margin-top: 16px;
  color: var(--green);
  font-weight: 850;
}

.club-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  color: #fff;
  background: #1b6842;
}

.club-facts > div {
  padding: clamp(38px, 5vw, 70px);
  text-align: center;
  background: #075b34;
}

.club-facts b {
  display: block;
  color: var(--lime);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(58px, 8vw, 96px);
  line-height: .9;
}

.club-facts span {
  display: block;
  margin-top: 12px;
  font-weight: 750;
}

.club-values-modern {
  background: #eef4f0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.value-grid article {
  min-height: 300px;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid #d2dfd7;
  border-radius: 22px;
  background: #fff;
}

.value-grid article > span,
.partner-benefits article > span {
  color: #2f7350;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
}

.value-grid h3 {
  margin: 68px 0 14px;
  font-size: 30px;
}

.value-grid p {
  color: var(--muted);
}

.club-discover {
  background: #fff;
}

.club-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.club-link-card {
  position: relative;
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 34px;
  color: #fff;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(2,42,24,.14), rgba(2,42,24,.96)),
    var(--card-image, linear-gradient(135deg,#0a6b3f,#043b23)) center / cover no-repeat;
  transition: transform .25s ease, box-shadow .25s ease;
}

.club-link-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(4,47,27,.22);
}

.club-link-card span {
  color: #b8df58;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.club-link-card h3 {
  margin: 9px 0 22px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
}

.club-link-card b {
  font-size: 14px;
}

.club-join {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(38px, 8vw, 110px);
  color: #fff;
  background: #063a23;
}

.club-join p {
  color: #c8ddd0;
  font-size: 18px;
}

.club-join-actions,
.partner-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 26px;
}

/* Partner und Sponsoren */
.partner-hero {
  position: relative;
  display: grid;
  min-height: 500px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 83% 50%, rgba(184,223,88,.20), transparent 27%),
    #075b34;
}

.partner-hero > div {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.partner-hero h1 {
  margin-bottom: 24px;
}

.partner-hero p {
  max-width: 690px;
  color: #d3e4d9;
  font-size: 19px;
}

.partner-hero .button {
  margin-top: 16px;
}

.partner-hero-mark {
  color: rgba(255,255,255,.09);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(180px, 25vw, 360px);
  font-weight: 900;
  line-height: .7;
}

.partner-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: clamp(38px, 8vw, 100px);
  padding-bottom: 42px;
  background: #fff;
}

.partner-intro p {
  color: var(--muted);
  font-size: 18px;
}

.partner-groups {
  display: grid;
  gap: 68px;
  padding-top: 30px;
  background: #fff;
}

.sponsor-group-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.sponsor-group-head h2 {
  font-size: clamp(30px, 4vw, 46px);
}

.sponsor-group-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.sponsor-modern-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.sponsor-modern-grid.featured {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sponsor-modern-card {
  display: grid;
  grid-template-rows: 190px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 32px rgba(7,55,33,.05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.sponsor-modern-card:hover {
  transform: translateY(-6px);
  border-color: #b1cab9;
  box-shadow: 0 22px 50px rgba(7,55,33,.12);
}

.sponsor-modern-grid.featured .sponsor-modern-card {
  grid-template-rows: 230px 1fr;
}

.sponsor-logo {
  display: grid;
  place-items: center;
  padding: 30px;
  background: #f7f9f7;
}

.sponsor-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sponsor-logo b {
  color: var(--green);
  font-size: 24px;
  text-align: center;
}

.sponsor-copy {
  padding: 27px;
  border-top: 1px solid var(--line);
}

.sponsor-copy span {
  color: #2f7350;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.sponsor-copy h3 {
  margin: 8px 0 10px;
  font-size: 24px;
  line-height: 1.15;
}

.sponsor-copy p {
  color: var(--muted);
}

.sponsor-copy > b {
  display: inline-block;
  margin-top: 8px;
  color: var(--green);
  font-size: 13px;
}

.partner-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  color: #fff;
  background: #28714d;
}

.partner-benefits > div {
  min-height: 250px;
  padding: clamp(34px, 5vw, 58px);
  background: #075b34;
}

.partner-benefits > div > span {
  color: var(--lime);
  font-weight: 900;
  letter-spacing: .16em;
}

.partner-benefits h3 {
  margin: 48px 0 12px;
  font-size: 28px;
}

.partner-benefits p {
  color: #c9ddd1;
}

.partner-cta {
  align-items: center;
}

.document-link {
  color: #fff;
  font-weight: 800;
}

/* Vollständige Terminposter und echte Hochformat-Porträts */
.event-list-card {
  align-items: center;
  gap: 24px;
  padding: 22px;
  overflow: visible;
}

.event-list-card.has-image {
  grid-template-columns: minmax(300px, 360px) 90px minmax(0, 1fr);
}

.event-list-card.no-image {
  grid-template-columns: 90px minmax(0, 1fr);
}

.event-list-card > img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: 620px;
  border-radius: 14px;
  background: #eef2ef;
  object-fit: contain;
}

.event-list-card > time {
  margin: 0;
}

.event-list-card > div {
  min-width: 0;
  padding: 10px 12px 10px 0;
}

.person-card img,
.person-placeholder {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
}

.person-card img {
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 1000px) {
  .home-hero {
    background-size: 100% 100%, cover;
    background-position: center, 61% center;
  }

  .home-hero-layout {
    grid-template-columns: minmax(0, 1fr) 190px;
  }

  .hero-crest {
    width: 180px;
  }

  .club-link-grid,
  .sponsor-modern-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-list-card.has-image {
    grid-template-columns: minmax(240px, 300px) 80px minmax(0, 1fr);
  }
}

@media (max-width: 800px) {
  .home-hero {
    min-height: 680px;
    align-items: end;
    background-position: center, 63% center;
  }

  .home-hero-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero-crest {
    width: 130px;
    max-height: 150px;
    justify-self: start;
    grid-row: 2;
  }

  .hero-actions {
    gap: 18px 22px;
  }

  .club-hero,
  .club-story,
  .club-join,
  .partner-hero,
  .partner-intro {
    grid-template-columns: 1fr;
  }

  .club-hero-year,
  .partner-hero-mark {
    display: none;
  }

  .club-story-image img {
    height: 400px;
  }

  .club-facts,
  .value-grid,
  .partner-benefits {
    grid-template-columns: 1fr;
  }

  .club-facts > div,
  .partner-benefits > div {
    min-height: 0;
    padding: 40px 24px;
  }

  .value-grid h3,
  .partner-benefits h3 {
    margin-top: 34px;
  }

  .club-link-grid,
  .sponsor-modern-grid,
  .sponsor-modern-grid.featured {
    grid-template-columns: 1fr;
  }

  .event-list-card.has-image,
  .event-list-card.no-image {
    grid-template-columns: 82px minmax(0, 1fr);
    padding: 20px;
  }

  .event-list-card > img {
    grid-column: 1 / -1;
    width: 100%;
    height: auto;
    max-height: none;
    border-radius: 12px;
    object-fit: contain;
  }

  .event-list-card > div {
    padding: 0;
  }
}

@media (max-width: 520px) {
  .home-hero {
    background-position: center, 64% center;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-text-link {
    padding-left: 4px;
  }

  .club-story-image::before {
    display: none;
  }

  .club-story-image img {
    height: 330px;
  }

  .sponsor-group-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Breite Formulare, flexible Termine und Partnerlaufband */
.form-page,
.membership-layout {
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
}

.membership-layout {
  grid-template-columns: minmax(300px, .7fr) minmax(0, 1.3fr);
}

.membership-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 18px;
}

.membership-form > label {
  display: grid;
  gap: 7px;
  font-weight: 750;
}

.membership-form .full {
  grid-column: 1 / -1;
}

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

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

.event-grid-count-1 .event-card {
  grid-template-columns: 110px minmax(0, 1fr);
  align-items: center;
  padding: 30px;
}

.event-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 18px;
}

.event-card-actions a {
  color: var(--green);
  font-weight: 800;
}

.event-card-actions a:last-child {
  color: var(--muted);
}

.event-card {
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.event-card:hover,
.event-card:focus-visible {
  transform: translateY(-4px);
  border-color: #a8c4b2;
  box-shadow: 0 18px 44px rgba(7,55,33,.12);
  outline: none;
}

.event-card-actions span {
  color: var(--green);
  font-weight: 800;
}

.sponsor-carousel {
  width: 100%;
  overflow: hidden;
  padding: 10px 0 18px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.sponsor-track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: sponsorLoop 34s linear infinite;
}

.sponsor-carousel:hover .sponsor-track,
.sponsor-carousel:focus-within .sponsor-track {
  animation-play-state: paused;
}

.sponsor-slide {
  display: grid;
  width: 240px;
  min-height: 155px;
  flex: 0 0 240px;
  place-items: center;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}

.sponsor-slide:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(7,55,33,.12);
}

.sponsor-slide img {
  width: 100%;
  height: 85px;
  object-fit: contain;
}

.sponsor-slide span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

@keyframes sponsorLoop {
  to { transform: translateX(calc(-50% - 10px)); }
}

/* Jugendmannschaften und manueller Kader */
.teams-overview {
  display: grid;
  gap: 80px;
}

.team-group,
.youth-overview {
  display: grid;
  gap: 26px;
}

.team-group .section-head,
.youth-overview .section-head {
  margin-bottom: 0;
}

.youth-overview {
  padding-top: 10px;
}

.youth-group-card {
  display: grid;
  grid-template-columns: minmax(190px, .35fr) minmax(0, 1fr);
  align-items: center;
  gap: 36px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.youth-group-card h3 {
  margin: 6px 0 0;
  font-size: 38px;
}

.youth-team-tabs,
.sibling-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.youth-team-tabs a {
  display: grid;
  min-width: 130px;
  gap: 2px;
  padding: 17px 22px;
  color: #fff;
  border-radius: 14px;
  background: var(--green);
  font-size: 20px;
  font-weight: 850;
}

.youth-team-tabs small {
  color: #c9ddd1;
  font-size: 11px;
}

.sibling-tabs {
  max-width: 1100px;
  margin: 0 auto 28px;
}

.sibling-tabs a {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 800;
}

.sibling-tabs a.active {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}

.squad-panel {
  padding: clamp(26px,5vw,58px);
}

.player-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
  margin-top: 30px;
}

.player-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.player-card img,
.player-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.player-placeholder {
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.7);
  background: linear-gradient(145deg,#0b7546,#04341f);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 72px;
}

.player-card > div:last-child {
  padding: 18px;
}

.player-card h3 {
  margin: 5px 0;
  font-size: 24px;
}

.fussballde-widget {
  min-height: 420px;
  padding: 18px;
  overflow-x: auto;
  background: #fff;
}

@media (max-width: 900px) {
  .form-page,
  .membership-layout {
    grid-template-columns: 1fr;
  }

  .event-grid.event-grid-count-2 {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .membership-form {
    grid-template-columns: 1fr;
  }

  .membership-form > * {
    grid-column: 1 / -1;
  }

  .event-grid-count-1 .event-card {
    grid-template-columns: 82px minmax(0,1fr);
    padding: 20px;
  }

  .sponsor-carousel {
    overflow-x: auto;
    padding-bottom: 14px;
    scroll-snap-type: x proximity;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .sponsor-track {
    animation: none;
  }

  .sponsor-slide {
    width: 210px;
    flex-basis: 210px;
    scroll-snap-align: start;
  }

  .youth-group-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }

  .player-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sponsor-track {
    animation: none;
  }
}

.rich-text p,
.event-detail-body p { margin: 0 0 1.15em; }
.rich-text h2,
.event-detail-body h2 { font-size: clamp(28px, 4vw, 42px); margin: 1.3em 0 .45em; }
.rich-text h3,
.event-detail-body h3 { font-size: 24px; margin: 1.2em 0 .4em; }
.rich-text ul,
.event-detail-body ul { padding-left: 22px; }
.rich-text a,
.event-detail-body a { color: var(--green); text-decoration: underline; }
.squad-group { padding: 26px 0; }
.squad-group > h3 { font-size: 25px; color: var(--green); border-bottom: 1px solid var(--line); padding-bottom: 10px; }
.event-detail { max-width: 1000px; margin: auto; padding: 80px 24px; }
.event-detail header { max-width: 850px; }
.event-detail h1 { color: var(--green); font-size: clamp(46px, 7vw, 78px); }
.event-detail-image { width: 100%; max-height: 650px; object-fit: contain; background: #edf3ef; border-radius: var(--radius); margin: 35px 0; }
.event-detail-body { font-size: 18px; max-width: 820px; }
.event-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 36px; }
.event-actions > a:not(.button) { color: var(--green); font-weight: 800; }
.board-groups { display: grid; gap: 72px; }
.board-group + .board-group { padding-top: 64px; border-top: 1px solid var(--line); }
