@charset "UTF-8";
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("../fonts/oswald-200.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/oswald-300.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/oswald-400.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/oswald-600.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/oswald-700.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: calc(64px + 1rem);
}

body {
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-weight: 200;
  letter-spacing: 0.02em;
  color: #222222;
  background: #ffffff;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

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

a {
  color: #172D56;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  color: #172D56;
  text-transform: uppercase;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.6rem;
}

h3 {
  font-size: 1.3rem;
} /* Canonical h3 size; only color overridden in dark areas (e.g. .section--dark, footer) */
p {
  margin-top: 0;
}

ul, ol {
  padding-left: 1.5rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1rem;
  border-radius: 4px;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border: none;
}
.btn--primary {
  background: #172D56;
  color: #ffffff;
}
.btn--primary:hover {
  background: #0C182E;
  text-decoration: none;
  color: #ffffff;
}
.btn--accent {
  background: #F3BF01;
  color: #172D56;
}
.btn--accent:hover {
  background: #d4a601;
  text-decoration: none;
  color: #172D56;
}
.btn--outline {
  background: transparent;
  color: #172D56;
  border: 2px solid #172D56;
}
.btn--outline:hover {
  background: #172D56;
  color: #ffffff;
  text-decoration: none;
}

.section {
  padding: 3rem 0;
}
.section--gray {
  background: #f4f4f4;
}
.section--dark {
  background: #172D56;
  color: #ffffff;
}
.section--dark h2, .section--dark h3 {
  color: #ffffff;
}
.section__actions {
  text-align: center;
  margin-top: 2rem;
}

.section-title {
  text-align: center;
  letter-spacing: 0.03em;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #F3BF01;
  margin: 0.5rem auto 0;
}

.site-header {
  background: #172D56;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.site-logo img {
  height: 44px;
  width: auto;
}
.site-logo span {
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 1.1rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
}
.site-logo:hover {
  text-decoration: none;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.main-nav > ul > li {
  position: relative;
}
.main-nav > ul > li > a {
  display: block;
  padding: 0 1rem;
  height: 64px;
  line-height: 64px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.main-nav > ul > li > a:hover, .main-nav > ul > li > a.active {
  color: #ffffff;
  background: #0C182E;
  text-decoration: none;
}
.main-nav > ul > li > a.active {
  border-bottom: 3px solid #F3BF01;
}
@media (min-width: 901px) {
  .main-nav > ul > li:hover > ul {
    display: block;
  }
}
.main-nav > ul > li > ul {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  background: #0C182E;
  min-width: 210px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 200;
  flex-direction: column;
}
.main-nav > ul > li > ul > li {
  position: relative;
}
.main-nav > ul > li > ul > li > a {
  display: block;
  padding: 0.65rem 1rem;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.main-nav > ul > li > ul > li > a:hover {
  background: #1a3566;
  color: #ffffff;
  text-decoration: none;
}
@media (min-width: 901px) {
  .main-nav > ul > li > ul > li:hover > ul {
    display: block;
  }
}
.main-nav > ul > li > ul > li > ul {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background: #0C182E;
  min-width: 185px;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 201;
  flex-direction: column;
}
.main-nav > ul > li > ul > li > ul li a {
  display: block;
  padding: 0.4rem 1rem;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.main-nav > ul > li > ul > li > ul li a:hover {
  background: #1a3566;
  color: #ffffff;
  text-decoration: none;
}
.main-nav li.has-flyout > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.header-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.4rem;
  align-items: center;
}
.header-social a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  transition: color 0.2s;
}
.header-social a:hover {
  color: #ffffff;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #ffffff;
  font-size: 1.5rem;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }
  .main-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    background: #0C182E;
    padding: 0.5rem 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
  .main-nav.is-open {
    display: block;
  }
  .main-nav ul {
    flex-direction: column;
  }
  .main-nav > ul > li > a {
    height: auto;
    line-height: 1.4;
    padding: 0.75rem 1rem;
  }
  .main-nav > ul > li > a.active {
    border-bottom: none;
    border-left: 4px solid #F3BF01;
  }
  .main-nav > ul > li > ul,
  .main-nav > ul > li > ul > li > ul {
    display: none;
    position: static;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.2);
  }
  .main-nav > ul > li > ul li a,
  .main-nav > ul > li > ul > li > ul li a {
    padding-left: 2rem;
    font-size: 0.85rem;
  }
  .main-nav > ul > li > ul > li > ul li a {
    padding-left: calc(2rem + 1rem);
    font-size: 0.78rem;
  }
  .main-nav li.is-open > ul {
    display: block;
  }
  .header-social {
    display: none;
  }
}
.hero {
  position: relative;
  background: #0C182E;
  color: #ffffff;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.hero > .container {
  width: 100%;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/hero-bg.jpg");
  background-size: cover;
  background-position: left top;
  opacity: 0.8;
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 3rem 0;
  max-width: 500px;
  margin-right: auto;
  margin-left: 0;
}
.hero__eyebrow {
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #F3BF01;
  margin-bottom: 0.5rem;
}
.hero__title {
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 3rem;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero__title span {
  color: #F3BF01;
}
.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin-bottom: 2rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__actions .btn--outline {
  border-color: #ffffff;
  color: #ffffff;
}
.hero__actions .btn--outline:hover {
  border-color: #ffffff;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}

/** Stats-Leiste unter dem Hero (Home) */
.hero-stats {
  background: #F3BF01;
  color: #172D56;
  padding: 1rem 0;
}
.hero-stats .container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
}
.hero-stats__item {
  flex: 0 0 auto;
}
.hero-stats__item-value {
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
}
.hero-stats__item-label {
  font-size: 0.85rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 600px) {
  .hero__title {
    font-size: 2rem;
  }
  .hero {
    min-height: 300px;
  }
  .hero__bg {
    background-position: center top;
    opacity: 0.5;
  }
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

/** Cards als Link (z. B. Mannschaften-Übersicht, Home Team-Teaser) */
a.card {
  text-decoration: none;
}

/** Team-Teaser-Card (nur Body, zentriert, Icon + Titel + Excerpt) */
.card--teaser .card__body {
  text-align: center;
  padding: 2rem 1rem;
}

.card--teaser .card__body .card__title {
  margin-bottom: 0.5rem;
}

.card--teaser .card__excerpt {
  margin: 0;
  font-size: 0.85rem;
}

.card--teaser .card__icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.card {
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
  transform: translateY(-2px);
}
.card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #e0e0e0;
}
.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.card__image:hover img {
  transform: scale(1.04);
}
.card__image-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #172D56 0%, #0C182E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card__image-placeholder svg {
  color: rgba(255, 255, 255, 0.3);
  width: 48px;
  height: 48px;
}
.card__body {
  padding: 0.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card__meta {
  font-size: 0.8rem;
  color: #555555;
  margin-bottom: 0.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.card__meta .tag {
  background: #f4f4f4;
  padding: 2px 8px;
  border-radius: 2px;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
.card__title {
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 1.3rem;
  color: #172D56;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 0;
  line-height: 1.3;
}
.card__excerpt {
  font-size: 0.9rem;
  flex: 1;
  margin-bottom: 1rem;
}
.card__footer {
  margin-top: auto;
}
.card__footer .btn {
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
}

.sponsors__top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}
@media (max-width: 700px) {
  .sponsors__top-row {
    grid-template-columns: 1fr;
  }
}
.sponsors__top-row .sponsors__grid {
  grid-template-columns: 1fr;
  margin-top: 1rem;
}
.sponsors__top-row .sponsors__item-wrap {
  width: 100%;
}
.sponsors__top-row .sponsors__item {
  width: 100%;
  min-height: 130px;
  height: auto;
  padding: 2rem;
}
.sponsors__top-row .sponsors__item img {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.sponsors__top-row-col .sponsors__group-title {
  margin-top: 0;
}
.sponsors__group-title {
  font-size: 1.3rem;
  color: #172D56;
  margin-top: 1.6rem;
  margin-bottom: 0.5rem;
}
.sponsors__group-title:first-child {
  margin-top: 0;
}
.sponsors__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}
.sponsors__grid--3col {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  min-width: 0;
}
.sponsors__grid--3col .sponsors__item-wrap {
  min-width: 0;
}
@media (max-width: 560px) {
  .sponsors__grid--3col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .sponsors__grid--3col {
    grid-template-columns: minmax(0, 1fr);
  }
}
.sponsors__grid--4col {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  min-width: 0;
}
.sponsors__grid--4col .sponsors__item-wrap {
  min-width: 0;
}
@media (max-width: 800px) {
  .sponsors__grid--4col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .sponsors__grid--4col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .sponsors__grid--4col {
    grid-template-columns: minmax(0, 1fr);
  }
}
.sponsors__item-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  min-width: 0;
}
.sponsors__item-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  width: 100%;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}
.sponsors__item-link:hover {
  color: inherit;
  text-decoration: none;
}
.sponsors__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  min-width: 0;
  width: 100%;
  height: 130px;
  min-height: 130px;
  transition: box-shadow 0.2s;
}
.sponsors__item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.sponsors__item img {
  max-height: 100px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(40%);
  transition: filter 0.2s;
}
.sponsors__item:hover img {
  filter: grayscale(0%);
}
.sponsors__item-placeholder {
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 0.85rem;
  color: #555555;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.sponsors__item-name {
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #172D56;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.sponsors__item-caption {
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: #888;
  font-style: italic;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: 0;
}

.site-footer__permanent-sponsors {
  background: #f4f4f4;
  padding: 3rem 0;
  border-top: 2px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.04);
}
.site-footer__permanent-sponsors .section-title {
  margin-top: 0;
}
.site-footer__permanent-sponsors .sponsors__grid--permanent-sponsors {
  display: grid;
  grid-template-columns: repeat(var(--permanent-cols, 4), minmax(0, 1fr));
  align-items: start;
  min-width: 0;
  gap: 2rem;
  margin-top: 0;
}
.site-footer__permanent-sponsors .sponsors__grid--permanent-sponsors .sponsors__item-wrap {
  min-width: 0;
}
@media (max-width: 560px) {
  .site-footer__permanent-sponsors .sponsors__grid--permanent-sponsors {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 380px) {
  .site-footer__permanent-sponsors .sponsors__grid--permanent-sponsors {
    grid-template-columns: minmax(0, 1fr);
  }
}

.site-footer {
  background: #0C182E;
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0 1rem;
}
.site-footer h3 {
  color: #ffffff;
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-top: 2rem;
  margin-bottom: 0.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #F3BF01;
  display: block;
  width: fit-content;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.7);
}
.site-footer a:hover {
  color: #ffffff;
  text-decoration: none;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}
.site-footer__col p {
  margin-top: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
}
.site-footer__col p:last-child {
  margin-bottom: 0;
}
.site-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer__col ul li {
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
}
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}
.site-footer__bottom a {
  color: rgba(255, 255, 255, 0.6);
}
.site-footer__hash {
  font-size: 0.7rem;
  opacity: 0.85;
}
.site-footer__social {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.site-footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}
.site-footer__social a svg {
  width: 18px;
  height: 18px;
}
.site-footer__social a:hover {
  color: #ffffff;
}

.page-header {
  background: #172D56;
  color: #ffffff;
  padding: 2rem 0;
}
.page-header h1 {
  color: #ffffff;
  margin-bottom: 0;
  font-size: 2rem;
}
.page-header__breadcrumb {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}
.page-header__breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}
.page-header__breadcrumb span {
  margin: 0 6px;
}
.page-header__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.lead--page-intro {
  font-size: 1.15rem;
  color: #555555;
  margin-bottom: 2rem;
}

.team-page__foto {
  margin: 2.8rem 0 1.5rem 0;
  line-height: 0;
}
.page-content .container > .team-page__foto:first-child {
  margin-top: 0;
}
.team-page__foto-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.team-page__jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.team-page__jump .btn--header {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0.45rem 0.85rem;
  font-size: 0.8rem;
}
.team-page__jump .btn--header:hover {
  background: rgba(255, 255, 255, 0.35);
  color: #ffffff;
  text-decoration: none;
  border-color: rgba(255, 255, 255, 0.7);
}

.page-content {
  padding: 3rem 0;
}
.page-content h2 {
  margin-top: 2.8rem;
  margin-bottom: 0.5rem;
}
.page-content h2:first-child {
  margin-top: 0;
}
.page-content h3:not(.card__title), .page-content h4 {
  margin-top: 1.6rem;
  margin-bottom: 0.25rem;
}
.page-content h2 + .cards {
  margin-top: 1rem;
}
.page-content {
  /** Zentrierter Archiv-Link unter Neuigkeiten-Cards */
}
.page-content__archiv-row {
  margin-top: 1.5rem;
  text-align: center;
}
.page-content {
  /** Abstand für Zurück-/Alle-Link unter Inhalt */
}
.page-content__back-row {
  margin-top: 2rem;
}
.page-content .lead--tight {
  margin-bottom: 0;
}
.page-content .content-area {
  max-width: 800px;
}
.page-content .content-area h2:first-child,
.page-content .content-area h3:first-child,
.page-content .content-area h4:first-child {
  margin-top: 0;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 700px) {
  .split-grid {
    grid-template-columns: 1fr;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}
.contact-grid__form {
  grid-column: span 2;
}
@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid__form {
    grid-column: span 2;
  }
}
@media (max-width: 560px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid__form {
    grid-column: span 1;
  }
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}
.contact-info__item svg {
  width: 20px;
  height: 20px;
  color: #F3BF01;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info__label {
  display: block;
  font-weight: 700;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #172D56;
}
.contact-info__value {
  color: #222222;
}

.contact-map iframe {
  min-height: 280px;
}
.contact-map__link {
  margin-top: 1rem;
}

.about-teaser__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 3rem;
  align-items: start;
}
@media (max-width: 700px) {
  .about-teaser__grid {
    grid-template-columns: 1fr;
  }
}

.cards--teams {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .cards--teams {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .cards--teams {
    grid-template-columns: 1fr;
  }
}

.page-content__block {
  margin-top: 2rem;
}

/** Leerer Zustand (z. B. keine Neuigkeiten) */
.page-content__empty {
  color: #555555;
}

.sponsoren-page__top {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
  min-width: 0;
}
.sponsoren-page__top > *:first-child {
  grid-column: 1/-1;
}
.sponsoren-page__top--with-card > .content-area {
  grid-column: span 2;
}
.sponsoren-page__top--with-card > .sponsoren-kontakt-card {
  grid-column: span 1;
  min-width: 0;
}
@media (max-width: 560px) {
  .sponsoren-page__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sponsoren-page__top--with-card > .content-area {
    grid-column: span 1;
  }
  .sponsoren-page__top--with-card > .sponsoren-kontakt-card {
    grid-column: span 1;
  }
}
@media (max-width: 480px) {
  .sponsoren-page__top {
    grid-template-columns: minmax(0, 1fr);
  }
  .sponsoren-page__top--with-card > .content-area {
    grid-column: span 1;
  }
  .sponsoren-page__top--with-card > .sponsoren-kontakt-card {
    grid-column: span 1;
  }
}

.sponsoren-kontakt-card .card {
  width: 100%;
  min-width: 0;
}
.sponsoren-kontakt-card .card__title:first-child {
  margin-top: 0;
}
.sponsoren-kontakt-card .contact-info__item:first-child {
  margin-top: 0;
}

.achievements {
  list-style: none;
  padding: 0;
  margin-top: 0;
}
.achievements li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 0.95rem;
}
.achievements li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #F3BF01;
  border-radius: 50%;
  flex-shrink: 0;
}

/** Kalenderwochen-Navigation (Neuigkeiten pro KW) */
.neuigkeiten-week-nav {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
  align-items: center;
}
.neuigkeiten-week-nav__prev {
  justify-self: start;
}
.neuigkeiten-week-nav__center {
  justify-self: center;
}
.neuigkeiten-week-nav__next {
  justify-self: end;
}

.team-table {
  width: 100%;
  border-collapse: collapse;
}
.team-table th {
  background: #172D56;
  color: #ffffff;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.6rem 1rem;
  text-align: left;
}
.team-table td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid #e0e0e0;
}
.team-table td:first-child {
  font-weight: 600;
}
.team-table tr:nth-child(even) td {
  background: #f4f4f4;
}

.page-content h2 + .team-table {
  margin-top: 1rem;
}

.post-gallery {
  margin-bottom: 2rem;
}
.post-gallery.cards {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .post-gallery.cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .post-gallery.cards {
    grid-template-columns: 1fr;
  }
}
.post-gallery__card {
  margin: 0;
}
.post-gallery__card .card__body {
  padding-top: 0.25rem;
}
.post-gallery__caption {
  font-size: 0.9rem;
  color: #555555;
  margin: 0.5rem 0 0 0.25rem;
}

.lightbox-trigger {
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.lightbox-trigger img {
  border-radius: 4px;
  width: 100%;
}

.content-area > .lightbox-trigger {
  margin-bottom: 1.5rem;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.9);
}
.lightbox:target {
  display: flex;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lightbox__img {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}
.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: #ffffff;
  font-size: 1.75rem;
  line-height: 0;
  padding: 0;
  opacity: 0.85;
  text-decoration: none;
  border-radius: 50%;
  transition: opacity 0.2s, background 0.2s, transform 0.2s;
  transform: translateY(0.06em); /* optical center for × */
}
.lightbox__close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(0.06em) scale(1.1);
  text-decoration: none;
}

body:has(.lightbox:target) {
  overflow: hidden;
}

.post-content img {
  border-radius: 4px;
  margin: 1rem 0;
}
.post-content h2, .post-content h3 {
  margin-top: 2rem;
}
.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
  position: relative;
}
.post-content .heading-anchor {
  position: absolute;
  left: -0.75em;
  top: 0;
  text-decoration: none;
  color: #F3BF01;
  font-weight: 400;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.post-content .heading-anchor:hover {
  opacity: 1;
  color: #F3BF01;
}
.post-content h1:hover .heading-anchor,
.post-content h2:hover .heading-anchor,
.post-content h3:hover .heading-anchor,
.post-content h4:hover .heading-anchor,
.post-content h5:hover .heading-anchor,
.post-content h6:hover .heading-anchor,
.post-content .heading-anchor:focus {
  opacity: 1;
}
.post-content blockquote {
  border-left: 4px solid #F3BF01;
  padding-left: 1rem;
  color: #555555;
  font-style: italic;
  margin: 2rem 0;
}

.post-content__footer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
}

.post-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  color: #555555;
  font-size: 0.85rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0;
}
.post-meta .tag {
  background: #f4f4f4;
  padding: 2px 10px;
  border-radius: 2px;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nachwuchs-groups {
  margin-bottom: 3rem;
}

.nachwuchs-group {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e0e0e0;
}
.nachwuchs-group__label {
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #172D56;
  width: 7rem;
  flex-shrink: 0;
  padding-top: 0.6rem;
}
.nachwuchs-group__teams {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  flex: 1;
}

.nachwuchs-card {
  flex-shrink: 0;
  width: 100px;
  aspect-ratio: 1;
  text-decoration: none;
}
.nachwuchs-card .card__body {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem !important;
  gap: 0.2rem;
}
.nachwuchs-card .nachwuchs-card__age {
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #172D56;
  line-height: 1;
}
.nachwuchs-card .nachwuchs-card__name {
  font-size: 0.72rem;
  color: #555555;
  text-align: center;
  line-height: 1.2;
  white-space: normal;
}

.ansprechpartner-layout__obmann-row {
  margin-bottom: 3rem;
}
.ansprechpartner-layout__obmann-row > h2 {
  margin-top: 2.8rem;
  margin-bottom: 0.25rem;
}

.person-grid__spacer {
  min-height: 0;
}

.person-grid__kontakt {
  display: flex;
  align-self: stretch;
}
.person-grid__kontakt .sponsoren-kontakt-card {
  flex: 1;
  min-width: 0;
}

.person-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .person-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .person-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.person-card {
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
}
.person-card__photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.person-card__placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: #172D56;
  display: flex;
  align-items: center;
  justify-content: center;
}
.person-card__placeholder svg {
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.3);
}
.person-card__body {
  padding: 1rem 0.5rem;
}
.person-card__role {
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #172D56;
  background: #F3BF01;
  display: inline-block;
  padding: 2px 8px;
  border-radius: 2px;
  margin-bottom: 0.5rem;
}
.person-card__name {
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #172D56;
  margin-bottom: 0.25rem;
}
.person-card__email {
  font-size: 0.8rem;
  word-break: break-all;
}
.person-card__email a {
  color: #555555;
}
.person-card__email a:hover {
  color: #172D56;
}

.downloads-list {
  list-style: none;
  padding: 0;
}
.downloads-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  background: #ffffff;
  transition: box-shadow 0.2s;
}
.downloads-list li:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.downloads-list li svg {
  color: #F3BF01;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.downloads-list li a {
  font-weight: 600;
  font-size: 0.95rem;
}
.downloads-list li span {
  font-size: 0.8rem;
  color: #555555;
  margin-left: auto;
}

.form-page {
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 1rem;
  color: #222222;
}

.form-page__inner {
  padding: 0.75rem 0 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-form__success-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1rem;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 4px;
  color: #2e7d32;
}
.contact-form__success-icon {
  flex-shrink: 0;
  display: inline-flex;
  color: #2e7d32;
}
.contact-form__success-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.contact-form__success {
  margin: 0;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.4;
}
.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.contact-form__group input[type=text],
.contact-form__group input[type=email],
.contact-form__group textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.55rem 0.75rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-weight: 200;
  font-size: 0.95rem;
  letter-spacing: 0.03rem;
  color: #222222;
  background: #ffffff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.contact-form__group input[type=text]:focus,
.contact-form__group input[type=email]:focus,
.contact-form__group textarea:focus {
  outline: none;
  border-color: #172D56;
  box-shadow: 0 0 0 3px rgba(23, 45, 86, 0.12);
}
.contact-form__group input[type=text]::placeholder,
.contact-form__group input[type=email]::placeholder,
.contact-form__group textarea::placeholder {
  color: #aaa;
}
.contact-form__group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form__group--checkbox {
  margin-top: 0.25rem;
}
.contact-form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-weight: 200 !important;
  font-size: 0.9rem;
  cursor: pointer;
}
.contact-form__checkbox-label input[type=checkbox] {
  margin-top: 0.25rem;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  accent-color: #172D56;
  cursor: pointer;
}
.contact-form__checkbox-label a {
  color: #172D56;
  text-decoration: underline;
}
.contact-form__required {
  color: #c0392b;
  margin-left: 0.1rem;
}
.contact-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}
.contact-form__hint {
  font-size: 0.8rem;
  color: #555555;
  margin: 0;
}

.team-statistik {
  margin-top: 2.8rem;
}
.team-statistik > h2 {
  margin-top: 0;
}
.team-statistik__col-spiele > h3:first-child {
  margin-top: 0;
}
.team-statistik__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: start;
  margin-top: 1rem;
  margin-bottom: 2rem;
  min-width: 0;
}
@media (max-width: 800px) {
  .team-statistik__grid {
    grid-template-columns: 1fr;
  }
}
.team-statistik__col-spiele {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.team-statistik__col-spiele .spiel-tabelle:first-of-type {
  margin-top: 0.5rem;
}
.team-statistik__liga {
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-weight: 200;
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: 0;
  color: #555555;
  margin-left: 0.5rem;
}
.team-statistik__tabelle-wrapper {
  overflow-x: auto;
}
.team-statistik__hinweis {
  font-size: 0.78rem;
  color: #555555;
  margin-top: 0.5rem;
  text-align: left;
}

.spiel-tabelle {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.spiel-tabelle td {
  padding: 0.55rem 0.4rem 0.55rem 0;
  vertical-align: middle;
  border-bottom: 1px solid #e0e0e0;
}
.spiel-tabelle tr:last-child td {
  border-bottom: none;
}
.spiel-tabelle__row--abgesagt {
  opacity: 0.45;
}
.spiel-tabelle__row--abgesagt .spiel-tabelle__ergebnis,
.spiel-tabelle__row--abgesagt .spiel-tabelle__uhrzeit {
  text-decoration: line-through;
}
.spiel-tabelle__datum {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  color: #172D56;
  width: 1%;
}
.spiel-tabelle__uhrzeit {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-weight: 200;
  font-size: 0.8rem;
  color: #555555;
  width: 1%;
  text-align: right;
}
.spiel-tabelle__team {
  overflow-wrap: break-word;
  word-break: break-word;
}
.spiel-tabelle__team--gast {
  text-align: right;
}
.spiel-tabelle__ergebnis {
  font-variant-numeric: tabular-nums;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #172D56;
  text-align: center;
  width: 1%;
  white-space: nowrap;
}
.spiel-tabelle__trenner {
  color: #555555;
  text-align: center;
  width: 1%;
}

.tabelle {
  font-size: 0.88rem;
  font-variant-numeric: tabular-nums;
}
.tabelle__logo {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 0.5rem;
  margin-top: -0.15rem;
  border-radius: 4px;
}
@media (max-width: 480px) {
  .tabelle__logo {
    display: none;
  }
}
.tabelle th, .tabelle td {
  text-align: center;
}
.tabelle__col-name {
  text-align: left !important;
}
th:not(.tabelle__col-name), td:not(.tabelle__col-name) {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.tabelle th:nth-child(1), .tabelle td:nth-child(1) {
  padding-left: 0.4rem;
}
.tabelle th:nth-child(1), .tabelle td:nth-child(1),
.tabelle th:nth-child(3), .tabelle th:nth-child(4), .tabelle th:nth-child(5), .tabelle th:nth-child(6),
.tabelle td:nth-child(3), .tabelle td:nth-child(4), .tabelle td:nth-child(5), .tabelle td:nth-child(6) {
  width: 1%;
  white-space: nowrap;
}
.tabelle__eigene td {
  background: rgba(243, 191, 1, 0.18) !important;
  font-weight: 600;
  color: #172D56;
}
.tabelle strong {
  color: #172D56;
}
.tabelle__diff--pos {
  color: #2e7d32;
}
.tabelle__diff--neg {
  color: #c62828;
}

/*# sourceMappingURL=main.css.map */