@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --red: #b92f2f;
  --red-dark: #8f2222;
  --red-soft: #f8e6e6;
  --ink: #101317;
  --ink-soft: #2f3944;
  --muted: #647184;
  --line: #d8dee7;
  --panel: #ffffff;
  --panel-soft: #f4f7fa;
  --surface: #eef2f6;
  --surface-dark: #0f1724;
  --surface-dark-soft: #172235;
  --white: #ffffff;
  --max: 1200px;
  --shadow: 0 18px 50px rgba(16, 19, 23, 0.12);
  --shadow-soft: 0 12px 30px rgba(16, 19, 23, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.is-menu-open {
  overflow: hidden;
}

body.is-loading {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3,
p,
li,
summary {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: 64px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 22px;
}

p {
  margin: 0;
}

.preloader {
  display: none;
}

.loader-active .preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 22px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 40%, rgba(185, 47, 47, 0.3), transparent 32%),
    linear-gradient(135deg, #090f18, #182234 58%, #8f2222);
  opacity: 1;
  transition: opacity 420ms ease, transform 420ms ease, visibility 420ms ease;
}

.loader-finishing .preloader {
  opacity: 0;
  transform: scale(1.02);
  visibility: hidden;
}

.preloader__stage {
  position: relative;
  width: 170px;
  height: 170px;
  display: grid;
  place-items: center;
}

.preloader__stage::before,
.preloader__stage::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.preloader__stage::after {
  inset: 0;
  border-color: transparent;
  border-top-color: rgba(255, 255, 255, 0.8);
  border-right-color: rgba(185, 47, 47, 0.9);
  animation: loader-spin 950ms linear infinite;
}

.preloader__crest {
  position: relative;
  z-index: 1;
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.preloader__crest img {
  width: 82px;
  height: 82px;
}

.preloader__ball {
  position: absolute;
  right: 12px;
  bottom: 20px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 3px solid #111;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #111 0 17%, transparent 18%),
    linear-gradient(45deg, transparent 45%, #111 46% 52%, transparent 53%),
    linear-gradient(-45deg, transparent 45%, #111 46% 52%, transparent 53%),
    #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
  animation: ball-pop 900ms ease-in-out infinite alternate;
}

.preloader p {
  font-size: 22px;
  font-weight: 800;
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ball-pop {
  to {
    transform: translateY(-12px) rotate(18deg);
  }
}

.skip-link {
  position: absolute;
  top: -999px;
  left: 16px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  width: min(calc(100% - 32px), var(--max));
  min-height: 76px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(16, 19, 23, 0.12);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-color: rgba(185, 47, 47, 0.16);
  box-shadow: 0 12px 30px rgba(16, 19, 23, 0.09);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand strong,
.footer-brand strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
}

.brand small,
.footer-brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.brand img,
.footer-brand img {
  border-radius: 50%;
  background: var(--white);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 11px 13px;
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(185, 47, 47, 0.1);
  color: var(--red);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: end;
  padding: 128px 24px 40px;
  color: var(--white);
  overflow: hidden;
  background: #0d1520;
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(8, 11, 16, 0.84), rgba(8, 11, 16, 0.52) 42%, rgba(185, 47, 47, 0.52)),
    url("assets/hero-header.jpg") center center / cover no-repeat;
  transform: scale(1.03);
}

.hero__shell,
.section__inner,
.footer__inner {
  position: relative;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.hero__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 42px;
  align-items: end;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.84);
}

.hero__lead {
  max-width: 720px;
  margin-top: 20px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.45;
}

.hero__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button--primary {
  background: var(--red);
  color: var(--white);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--red-dark);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button--ghost-light {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.hero__list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero__list li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.hero__list li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.hero__aside {
  display: grid;
  gap: 16px;
}

.hero__stats {
  display: grid;
  gap: 1px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.hero__stats article,
.hero__note {
  background: rgba(10, 14, 21, 0.78);
}

.hero__stats article {
  padding: 22px 22px 20px;
}

.hero__stats strong {
  display: block;
  font-size: 36px;
  line-height: 1;
}

.hero__stats span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
}

.hero__note {
  padding: 24px;
  border-radius: 8px;
}

.hero__note p:last-child {
  color: rgba(255, 255, 255, 0.8);
}

.section {
  padding: 104px 24px;
}

.section--light {
  background: var(--white);
}

.section--story,
.section--widgets {
  background: var(--surface);
}

.section--board {
  color: var(--white);
  background: var(--surface-dark);
}

.section--campus,
.section--sponsors {
  background: var(--white);
}

.section--contact {
  color: var(--white);
  background: #132033;
}

.section-heading {
  max-width: 760px;
}

.section-heading p:last-child {
  margin-top: 18px;
  color: var(--muted);
}

.section--board .section-heading p:last-child,
.section--contact .section-heading p:last-child {
  color: rgba(255, 255, 255, 0.76);
}

.section-heading--center {
  margin: 0 auto;
  text-align: center;
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: end;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
}

.section-heading--sticky {
  position: sticky;
  top: 120px;
  align-self: start;
}

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

.value-card,
.timeline-card,
.widget-card,
.info-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.value-card {
  padding: 26px;
}

.value-card__index {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
}

.value-card p {
  margin-top: 12px;
  color: var(--muted);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: 40px;
  align-items: start;
}

.story-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.story-intro__lead {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 20px;
}

.story-intro__figure {
  margin: 28px 0 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.story-intro__closing {
  margin-top: 16px;
  color: var(--red);
  font-weight: 700;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-card {
  padding: 28px;
}

.timeline-card h3 {
  margin-top: 6px;
}

.timeline-card p {
  margin-top: 14px;
  color: var(--muted);
}

.timeline-card__year {
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.timeline-card--media {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1.2fr);
  gap: 22px;
  align-items: center;
}

.timeline-card--media img,
.timeline-card--closing img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.timeline-card--media img {
  aspect-ratio: 4 / 4.5;
}

.timeline-card--closing {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(220px, 0.95fr);
  gap: 22px;
  align-items: center;
}

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

.person-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.person-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #dfe4ea;
}

.person-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
}

.person-card__image--erguen {
  object-position: center 16%;
}

.person-card__image--ertugrul {
  object-position: center 15%;
}

.person-card__image--goekay {
  object-position: center 10%;
}

.person-card__image--okan {
  object-position: center 14%;
}

.person-card__image--symbol {
  object-position: center center;
}

.person-card__body {
  padding: 16px 16px 18px;
}

.person-card__body h3 {
  font-size: 18px;
}

.person-card__body p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.person-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(16, 19, 23, 0.72);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
}

.campus-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 34px;
  align-items: center;
}

.campus-stage {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.campus-stage img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.campus-copy p:last-of-type {
  margin-top: 18px;
  color: var(--muted);
}

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

.campus-facts article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
}

.campus-facts strong {
  display: block;
  font-size: 16px;
}

.campus-facts span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

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

.widget-card {
  overflow: hidden;
}

.widget-card__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px 14px;
}

.widget-card__head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.widget-shell {
  min-height: 560px;
  padding: 0 8px 8px;
  background: var(--panel);
}

.fussballde_widget {
  min-height: 520px;
}

.sponsors-layout .section-heading {
  max-width: none;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.sponsor-grid a {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.sponsor-grid img {
  max-height: 62px;
  object-fit: contain;
}

.sponsor-grid a:hover,
.sponsor-grid a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(16, 19, 23, 0.1);
  outline: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: start;
}

.contact-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
}

.social-links a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  text-decoration: none;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--white);
  text-decoration: underline;
  outline: none;
}

.contact-stack {
  display: grid;
  gap: 16px;
}

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

.info-card {
  padding: 20px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.info-card h3 {
  font-size: 18px;
}

.info-card p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
}

.map-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 320px;
  border: 0;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  padding: 0 20px 18px;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  padding: 36px 24px;
  color: rgba(255, 255, 255, 0.86);
  background: #0c1320;
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 24px;
  align-items: center;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: var(--white);
  outline: none;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.62);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

.legal-hero {
  padding: 164px 24px 44px;
  background: var(--surface);
}

.legal-hero__inner,
.legal-content {
  width: min(100%, 920px);
  margin: 0 auto;
}

.legal-content {
  padding: 0 24px 88px;
}

.legal-content h1,
.legal-content h2,
.legal-content h3 {
  color: var(--ink);
}

.legal-content h1 {
  margin-top: 0;
  font-size: 30px;
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 28px;
}

.legal-content h3 {
  margin-top: 24px;
  font-size: 20px;
}

.legal-content p,
.legal-content ul,
.legal-content ol,
.legal-content address {
  margin-top: 14px;
  color: var(--ink-soft);
}

.legal-content address {
  font-style: normal;
}

.legal-content a {
  color: var(--red-dark);
}

.legal-content nav[aria-label="Inhaltsverzeichnis"] ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
}

.legal-content section {
  scroll-margin-top: 110px;
}

.satzung-full p {
  margin-top: 18px;
}

.satzung-full strong {
  color: var(--ink);
}

@media (max-width: 1180px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 38px;
  }

  .hero__shell,
  .story-grid,
  .campus-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-heading--sticky,
  .story-intro {
    position: static;
  }

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

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

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

@media (max-width: 920px) {
  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 20px;
  }

  .site-nav {
    position: fixed;
    top: 104px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    border: 1px solid rgba(185, 47, 47, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 13px 14px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .value-grid,
  .widget-grid,
  .board-grid,
  .sponsor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .section-heading--split,
  .timeline-card--media,
  .timeline-card--closing,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    align-items: start;
  }

  .hero {
    min-height: auto;
    padding-bottom: 34px;
  }

  .hero__lead {
    font-size: 22px;
  }

  .campus-stage img {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 18px;
  }

  .site-header {
    top: 12px;
    width: calc(100% - 20px);
    min-height: 70px;
  }

  .hero,
  .section,
  .site-footer,
  .legal-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .hero {
    padding-top: 122px;
  }

  .hero__shell,
  .intro-grid,
  .story-grid,
  .campus-grid,
  .contact-grid {
    gap: 24px;
  }

  .hero__lead {
    font-size: 20px;
  }

  .hero__stats article {
    padding: 18px;
  }

  .value-grid,
  .campus-facts,
  .widget-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .sponsor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .sponsor-grid a {
    min-height: 82px;
    padding: 10px;
  }

  .sponsor-grid img {
    max-height: 42px;
  }

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

  .person-card__media {
    aspect-ratio: 1 / 1.04;
  }

  .person-card__body {
    padding: 12px;
  }

  .person-card__body h3 {
    font-size: 16px;
  }

  .person-card__body p {
    font-size: 13px;
  }

  .widget-shell {
    min-height: 520px;
  }

  .fussballde_widget {
    min-height: 480px;
  }

  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .legal-content {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 72px;
  }
}
