:root {
  --vfl-blue: #2040F0;
  --vfl-blue-dark: #102B5A;
  --vfl-blue-ink: #071B55;
  --vfl-blue-soft: #EEF2FF;
  --vfl-accent: #FFFF40;
  --vfl-accent-soft: #FFFCA8;
  --vfl-text: #20242b;
  --vfl-muted: #667085;
  --vfl-border: #d8dee8;
  --vfl-bg: #F5F7FF;
  --vfl-white: #ffffff;
  --vfl-radius: 8px;
}

.vfl-site {
  min-height: 100vh;
  background:
    linear-gradient(180deg, #F8FAFF 0, var(--vfl-bg) 420px),
    var(--vfl-bg);
}

.vfl-container {
  width: min(1144px, calc(100% - 32px));
  margin: 0 auto;
}

.vfl-topbar {
  background: var(--vfl-blue-ink);
  color: var(--vfl-white);
  font-size: .86rem;
}

.vfl-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .35rem 0;
  color: rgba(255, 255, 255, .88);
}

.vfl-topbar__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .85rem;
  flex-wrap: wrap;
}
.vfl-topbar__right a {
  color: var(--vfl-white);
  font-weight: 700;
  text-decoration: none;
}

.vfl-topbar__right a:hover,
.vfl-topbar__right a:focus {
  color: var(--vfl-accent);
  text-decoration: underline;
}

.vfl-header {
  background: var(--vfl-white);
  color: var(--vfl-blue-ink);
  border-bottom: 1px solid rgba(7, 27, 85, .12);
  box-shadow: 0 10px 30px rgba(7, 27, 85, .12);
}

.vfl-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: .75rem 0;
}

.vfl-brand {
  display: flex;
  align-items: center;
  gap: .95rem;
  color: var(--vfl-blue-ink);
  text-decoration: none;
}

.vfl-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(7, 27, 85, .16);
}

.vfl-brand__title {
  display: block;
  font-family: Teko, Ubuntu, Arial, sans-serif;
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  font-weight: 700;
  line-height: 1;
}

.vfl-brand__subtitle {
  display: block;
  color: var(--vfl-muted);
  font-size: .9rem;
}


.vfl-menu-toggle {
  display: none;
  min-height: 42px;
  padding: .55rem .85rem;
  border: 1px solid rgba(7, 27, 85, .18);
  border-radius: 4px;
  background: var(--vfl-accent);
  color: var(--vfl-blue-ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.vfl-nav {
  display: flex;
  align-items: center;
  gap: .35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.vfl-nav a,
.vfl-nav__toggle {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: .5rem .72rem;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--vfl-blue-ink);
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.vfl-nav a:hover,
.vfl-nav a:focus,
.vfl-nav a.is-active,
.vfl-nav__toggle:hover,
.vfl-nav__toggle:focus {
  background: var(--vfl-blue-soft);
  color: var(--vfl-blue);
}

.vfl-nav__item {
  position: relative;
}

.vfl-nav__toggle::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: .45rem;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

.vfl-nav__submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 20;
  display: grid;
  min-width: 190px;
  padding: .45rem;
  border: 1px solid var(--vfl-border);
  border-radius: 6px;
  background: var(--vfl-white);
  box-shadow: 0 18px 36px rgba(7, 27, 85, .18);
  opacity: 0;
  transform: translateY(-4px);
  visibility: hidden;
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.vfl-nav__item:hover .vfl-nav__submenu,
.vfl-nav__item:focus-within .vfl-nav__submenu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.vfl-nav__submenu a {
  justify-content: flex-start;
  min-height: 36px;
  white-space: nowrap;
}

.vfl-nav a.vfl-nav__cta {
  background: var(--vfl-accent);
  color: var(--vfl-blue-dark);
  box-shadow: 0 8px 18px rgba(255, 255, 64, .38);
}

.vfl-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(7, 27, 85, .94), rgba(32, 64, 240, .90)),
    radial-gradient(circle at 88% 10%, rgba(255, 255, 64, .24), transparent 30%),
    var(--vfl-blue);
  color: var(--vfl-white);
}

.vfl-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  background: linear-gradient(90deg, var(--vfl-accent), rgba(255, 255, 64, .18));
}

.vfl-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: clamp(2rem, 7vw, 5rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.vfl-hero__copy {
  max-width: 720px;
}

.vfl-eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 .85rem;
  padding: .32rem .65rem;
  border: 1px solid rgba(255, 255, 64, .58);
  border-radius: 999px;
  background: rgba(255, 255, 64, .14);
  color: var(--vfl-accent-soft);
  font-size: .9rem;
  font-weight: 800;
}

.vfl-hero h1,
.vfl-pagehead h1 {
  margin: 0 0 .75rem;
  font-family: Teko, Ubuntu, Arial, sans-serif;
  font-size: clamp(3rem, 7vw, 5.4rem);
  font-weight: 700;
  line-height: .95;
}

.vfl-hero p {
  max-width: 680px;
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.vfl-hero__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(1rem, 3vw, 1.35rem);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 55px rgba(0, 0, 0, .24);
}

.vfl-hero__logo img {
  width: min(240px, 100%);
  max-height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(7, 27, 85, .18));
}

.vfl-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.vfl-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.4rem;
}

.vfl-hero__facts span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: .25rem .65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .88);
  font-weight: 700;
  font-size: .92rem;
}

.vfl-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .72rem 1.05rem;
  border-radius: 4px;
  background: var(--vfl-accent);
  color: var(--vfl-blue-dark);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 22px rgba(0, 0, 0, .18);
}

.vfl-button--light {
  background: var(--vfl-white);
  color: var(--vfl-blue);
  box-shadow: none;
}

.vfl-main {
  padding: 2.4rem 0 3.75rem;
}

.vfl-section {
  margin-bottom: 2.4rem;
}

.vfl-section + .vfl-section {
  margin-top: 2.2rem;
}

.vfl-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 1rem;
  border-bottom: 1px solid var(--vfl-border);
  padding-bottom: .75rem;
}

.vfl-section__title {
  margin: 0;
  color: var(--vfl-blue);
  font-family: Teko, Ubuntu, Arial, sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1;
}

.vfl-section__head span {
  color: var(--vfl-muted);
  font-weight: 700;
}

.vfl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.15rem;
}

.vfl-card {
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 1.25rem;
  border: 1px solid var(--vfl-border);
  border-radius: var(--vfl-radius);
  background: var(--vfl-white);
  box-shadow: 0 10px 28px rgba(7, 27, 85, .08);
  border-top: 4px solid var(--vfl-accent);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.vfl-card:hover {
  transform: translateY(-3px);
  border-color: rgba(32, 64, 240, .22);
  box-shadow: 0 16px 38px rgba(7, 27, 85, .12);
}

.vfl-card h2,
.vfl-card h3 {
  margin: 0 0 .5rem;
  color: var(--vfl-blue);
  font-family: Teko, Ubuntu, Arial, sans-serif;
  font-size: 1.65rem;
  line-height: 1.05;
}

.vfl-card p {
  margin: 0 0 1.05rem;
  color: #364154;
}

.vfl-card a[href]:last-child {
  margin-top: auto;
  align-self: flex-start;
  padding-top: .25rem;
}

.vfl-sponsors {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.vfl-sponsor {
  display: flex;
  flex-direction: column;
  min-height: 185px;
  padding: 1.05rem;
  border: 1px solid var(--vfl-border);
  border-top: 4px solid var(--vfl-accent);
  border-radius: 6px;
  background: #F8FAFF;
  color: var(--vfl-blue-ink);
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(7, 27, 85, .08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.vfl-sponsor:hover,
.vfl-sponsor:focus {
  transform: translateY(-2px);
  border-color: rgba(32, 64, 240, .25);
  color: var(--vfl-blue);
  box-shadow: 0 16px 38px rgba(7, 27, 85, .12);
}

.vfl-sponsor__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-height: 118px;
  margin-bottom: .65rem;
  padding: .35rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, .42);
}

.vfl-sponsor__logo img {
  display: block;
  max-width: 100%;
  max-height: 108px;
  width: auto;
  height: auto;
}

.vfl-sponsor__name {
  display: block;
  min-height: 2.5em;
  color: var(--vfl-blue);
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.vfl-department-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 300px);
  gap: 1.4rem;
  align-items: start;
}

.vfl-department-main {
  min-width: 0;
}

.vfl-note,
.vfl-sidebar-box {
  padding: 1rem;
  border: 1px solid var(--vfl-border);
  border-left: 4px solid var(--vfl-accent);
  border-radius: 6px;
  background: #F8FAFF;
}

.vfl-note {
  margin: 1.2rem 0 1.5rem;
}

.vfl-note > strong,
.vfl-sidebar-box > strong {
  display: block;
  margin-bottom: .35rem;
  color: var(--vfl-blue);
  font-family: var(--vfl-font-display);
  font-size: 1.18rem;
  line-height: 1.2;
}

.vfl-note p,
.vfl-sidebar-box p {
  margin: .35rem 0 .7rem;
}

.vfl-team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.vfl-team-card {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border: 1px solid var(--vfl-border);
  border-top: 4px solid var(--vfl-accent);
  border-radius: 6px;
  background: var(--vfl-white);
  box-shadow: 0 12px 30px rgba(7, 27, 85, .08);
}

.vfl-team-card > a[href]:last-child {
  align-self: flex-start;
  margin-top: auto;
}

.vfl-team-card h3 {
  margin-top: 0;
  color: var(--vfl-blue);
}

.vfl-team-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  margin: -.25rem -.25rem 1rem;
  border-radius: 4px;
  background: #F8FAFF;
}

.vfl-team-card__image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.vfl-slider {
  overflow: hidden;
  margin: 0 0 1.6rem;
  border: 1px solid var(--vfl-border);
  border-radius: 6px;
  background: #F8FAFF;
  box-shadow: 0 12px 30px rgba(7, 27, 85, .08);
}

.vfl-slider__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.vfl-slider__slide {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 250px;
  color: var(--vfl-white);
  scroll-snap-align: start;
}

.vfl-slider__slide img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  transition: transform .22s ease;
}

.vfl-slider__slide:hover img,
.vfl-slider__slide:focus img {
  transform: scale(1.025);
}

.vfl-slider__slide span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: .55rem .75rem;
  border-left: 4px solid var(--vfl-accent);
  border-radius: 4px;
  background: rgba(13, 35, 72, .86);
  color: var(--vfl-white);
  font-weight: 800;
}

.vfl-image-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1rem 0 1.6rem;
}

.vfl-image-gallery a {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--vfl-border);
  border-radius: 6px;
  background: #F8FAFF;
  box-shadow: 0 12px 30px rgba(7, 27, 85, .08);
}

.vfl-image-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.vfl-info-list {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: .35rem .8rem;
  margin: .9rem 0 0;
}

.vfl-info-list dt {
  color: var(--vfl-blue);
  font-weight: 800;
}

.vfl-info-list dd {
  margin: 0;
}

.vfl-team-sidebar {
  position: sticky;
  top: 1rem;
  padding: 1rem;
  border: 1px solid var(--vfl-border);
  border-radius: 6px;
  background: var(--vfl-white);
  box-shadow: 0 12px 30px rgba(7, 27, 85, .08);
}

.vfl-team-sidebar h3 {
  margin-top: 0;
  color: var(--vfl-blue);
}

.vfl-team-sidebar h3 + .vfl-team-nav,
.vfl-team-sidebar h3 + p {
  margin-top: -.2rem;
}

.vfl-team-sidebar h3:not(:first-child) {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--vfl-border);
}

.vfl-team-nav {
  display: grid;
  gap: .45rem;
  margin-bottom: 1rem;
}

.vfl-team-nav a {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: .48rem .62rem;
  border-radius: 4px;
  background: var(--vfl-blue-soft);
  color: var(--vfl-blue);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.vfl-team-nav a:hover,
.vfl-team-nav a:focus {
  background: #EEF2FF;
  color: var(--vfl-blue-dark);
}

.vfl-team-nav--compact a {
  align-items: flex-start;
  min-height: 0;
  line-height: 1.35;
}

.vfl-team-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 320px);
  gap: 1.4rem;
  align-items: start;
}

.vfl-team-page--wide {
  grid-template-columns: minmax(0, 1fr) minmax(210px, 280px);
}

.vfl-team-page__main,
.vfl-team-page__side {
  min-width: 0;
}

.vfl-team-page__side {
  display: grid;
  gap: 1rem;
}

.vfl-team-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  padding: 1.25rem;
  border: 1px dashed rgba(32, 64, 240, .35);
  border-radius: 6px;
  background: #F8FAFF;
  color: var(--vfl-muted);
  font-weight: 800;
  text-align: center;
}

.vfl-team-hero {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 1.2rem 0 1.35rem;
  border-radius: 6px;
  background: #F8FAFF;
  box-shadow: 0 14px 36px rgba(7, 27, 85, .12);
}

.vfl-team-hero img {
  display: block;
  width: 100%;
  height: auto;
}

.vfl-zoom {
  cursor: zoom-in;
}

.vfl-zoom::after {
  content: "Bild \0000f6 ffnen";
  position: absolute;
  right: .7rem;
  bottom: .7rem;
  padding: .32rem .55rem;
  border-radius: 4px;
  background: rgba(13, 35, 72, .82);
  color: var(--vfl-white);
  font-size: .82rem;
  font-weight: 800;
  opacity: 0;
  transition: opacity .16s ease;
}

.vfl-zoom:hover::after,
.vfl-zoom:focus::after {
  opacity: 1;
}

.vfl-team-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1rem 0 1.25rem;
}

.vfl-roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
  gap: 1rem;
  margin: 1rem 0 1.6rem;
}

.vfl-roster-grid--staff {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.vfl-roster-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 220px;
  border: 1px solid var(--vfl-border);
  border-radius: 6px;
  background: var(--vfl-white);
  color: var(--vfl-blue);
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(7, 27, 85, .08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.vfl-roster-card:hover,
.vfl-roster-card:focus {
  transform: translateY(-2px);
  border-color: rgba(32, 64, 240, .25);
  box-shadow: 0 16px 38px rgba(7, 27, 85, .12);
}

.vfl-roster-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #F8FAFF;
}

.vfl-roster-card span,
.vfl-roster-card em {
  display: block;
  padding: .65rem .7rem;
  text-align: center;
}

.vfl-roster-card span {
  color: var(--vfl-blue);
  font-weight: 800;
  line-height: 1.2;
}

.vfl-roster-card em {
  margin-top: -.65rem;
  color: var(--vfl-muted);
  font-size: .9rem;
  font-style: normal;
}

.vfl-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(5, 12, 24, .88);
}

body.vfl-lightbox-open {
  overflow: hidden;
}

.vfl-lightbox.is-open {
  display: flex;
}

.vfl-lightbox img {
  display: block;
  max-width: min(100%, 1180px);
  max-height: calc(100vh - 5rem);
  border-radius: 6px;
  background: var(--vfl-white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
  cursor: default;
}

.vfl-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10000;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 4px;
  background: var(--vfl-accent);
  color: var(--vfl-blue-dark);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.vfl-content {
  padding: 1.5rem;
  border: 1px solid var(--vfl-border);
  border-radius: var(--vfl-radius);
  background: var(--vfl-white);
  box-shadow: 0 10px 28px rgba(7, 27, 85, .06);
}

.vfl-content table {
  width: 100%;
  margin: 1rem 0 1.5rem;
  border-collapse: collapse;
  border: 1px solid var(--vfl-border);
  background: var(--vfl-white);
}

.vfl-content td,
.vfl-content th {
  padding: .65rem .75rem;
  border-bottom: 1px solid var(--vfl-border);
  vertical-align: top;
  text-align: left;
}

.vfl-content tr:last-child td {
  border-bottom: 0;
}

.vfl-content tr:nth-child(even) {
  background: #F8FAFF;
}

.vfl-content .zcontent_main_table {
  width: 100%;
  margin: 0 0 1.25rem;
  border: 0;
  background: transparent;
}

.vfl-content .zcontent_main_table td {
  padding: 0;
  border: 0;
}

.vfl-content .zcontent_main_table:first-child {
  margin-bottom: 1rem;
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--vfl-border);
}

.vfl-content .zcontent_main_table:first-child td {
  text-align: left;
}

.vfl-content .zcontent_news {
  display: block;
  padding: 1.15rem;
  border: 1px solid var(--vfl-border);
  border-top: 4px solid var(--vfl-accent);
  border-radius: 6px;
  background: var(--vfl-white);
  box-shadow: 0 14px 34px rgba(7, 27, 85, .08);
}

.vfl-content .zcontent_news tbody,
.vfl-content .zcontent_news tr,
.vfl-content .zcontent_news td {
  display: block;
  width: 100%;
}

.vfl-content .zcontent_news .kategorie {
  display: inline-flex;
  margin-bottom: .45rem;
  color: var(--vfl-blue);
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
}


.vfl-content .zcontent_news .bild {
  width: min(220px, 42vw);
  height: auto;
  margin: .15rem 1rem .7rem 0;
  border-radius: 5px;
  box-shadow: 0 10px 24px rgba(7, 27, 85, .12);
}

.vfl-content .zcontent_news p {
  margin: .25rem 0 0;
}

.vfl-content .zcontent_news .kurz {
  color: var(--vfl-blue-ink);
  line-height: 1.65;
}


.vfl-content .zcontent_news a[href] {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  margin-top: .7rem;
  padding: .38rem .62rem;
  border: 1px solid rgba(32, 64, 240, .18);
  border-radius: 4px;
  background: var(--vfl-blue-soft);
  color: var(--vfl-blue);
  line-height: 1.2;
  text-decoration: none;
  box-shadow: none;
}

.vfl-content .zcontent_news a[href]:hover,
.vfl-content .zcontent_news a[href]:focus {
  border-color: rgba(32, 64, 240, .32);
  background: #EEF2FF;
  color: var(--vfl-blue-dark);
}

.vfl-content .contract_new > div:first-child {
  margin-bottom: 1rem;
}

.vfl-content .contract_new > div:first-child a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: .5rem .8rem;
  border-radius: 4px;
  background: var(--vfl-blue-soft);
  color: var(--vfl-blue);
  text-decoration: none;
}


.vfl-content .contract_new p {
  margin: 0 0 1rem;
}

.vfl-content .contract_new img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 14px 36px rgba(7, 27, 85, .12);
}

.vfl-contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(320px, 1.15fr);
  gap: 1.6rem;
  align-items: stretch;
}

.vfl-contact-info,
.vfl-contact-form {
  border: 1px solid var(--vfl-border);
  border-radius: 6px;
  background: var(--vfl-white);
  box-shadow: 0 16px 40px rgba(7, 27, 85, .12);
}

.vfl-contact-info {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-top: 4px solid var(--vfl-accent);
}

.vfl-contact-logo {
  width: 112px;
  height: 112px;
  object-fit: contain;
  margin: 0 0 1rem;
}

.vfl-contact-info h2 {
  margin-top: 0;
  color: var(--vfl-blue);
}

.vfl-contact-info a {
  color: var(--vfl-blue);
  font-weight: 700;
}

.vfl-contact-map {
  overflow: hidden;
  flex: 1 1 auto;
  min-height: 320px;
  margin-top: 1.3rem;
  border: 1px solid var(--vfl-border);
  border-radius: 6px;
  background: var(--vfl-bg);
}

.vfl-contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.vfl-contact-form {
  padding: 1.5rem;
  overflow: hidden;
}

.vfl-contact-form form,
.vfl-contact-form form table,
.vfl-contact-form .vfl-form-fields {
  max-width: 100%;
  margin-bottom: 0;
}

.vfl-form-fields {
  display: grid;
  gap: .95rem;
}

.vfl-form-intro {
  margin: 0 0 .55rem;
  color: var(--vfl-blue-ink);
}

.vfl-field {
  display: grid;
  gap: .3rem;
}

.vfl-field label {
  color: var(--vfl-blue-ink);
  font-weight: 800;
}

.vfl-required {
  color: #b42318;
}

.vfl-field input,
.vfl-field textarea {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  padding: .62rem .75rem;
  border: 1px solid var(--vfl-border);
  border-radius: 4px;
  background: var(--vfl-white);
  color: var(--vfl-blue-ink);
  font: inherit;
}

.vfl-field input {
  height: 44px;
  min-height: 44px;
}

.vfl-field textarea {
  min-height: 180px;
  resize: vertical;
}

.vfl-contact-form input:not([type]),
.vfl-contact-form input[type="text"],
.vfl-contact-form input[type="email"],
.vfl-contact-form input[type="tel"],
.vfl-contact-form input[type="number"],
.vfl-contact-form input[type="url"],
.vfl-contact-form input[type="date"] {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  height: 44px;
  min-height: 44px;
}

.vfl-contact-form textarea {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}

.vfl-field input:focus,
.vfl-field textarea:focus {
  border-color: var(--vfl-blue);
  outline: 3px solid rgba(32, 64, 240, .14);
}

.vfl-contact-form .g-recaptcha {
  margin: 1rem 0 .9rem;
}

.vfl-contact-form input[type="submit"],
.vfl-contact-form button[type="submit"],
.vfl-contact-form button:not([type]),
.vfl-contact-form .button,
.vfl-contact-form .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .72rem 1.25rem;
  border: 0;
  border-radius: 4px;
  background: var(--vfl-blue);
  color: var(--vfl-white);
  font: inherit;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(32, 64, 240, .22);
}

.vfl-contact-form input[type="submit"]:hover,
.vfl-contact-form input[type="submit"]:focus,
.vfl-contact-form button[type="submit"]:hover,
.vfl-contact-form button[type="submit"]:focus,
.vfl-contact-form button:not([type]):hover,
.vfl-contact-form button:not([type]):focus,
.vfl-contact-form .button:hover,
.vfl-contact-form .button:focus,
.vfl-contact-form .btn:hover,
.vfl-contact-form .btn:focus {
  background: var(--vfl-blue-dark);
  color: var(--vfl-white);
}

.vfl-section--join {
  margin-top: 2.8rem;
}

.vfl-section--join .vfl-section__title {
  margin-bottom: .85rem;
}

.vfl-join {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 1.5rem;
  border-left: 5px solid var(--vfl-accent);
}

.vfl-join p {
  margin: 0;
}

.vfl-join p + p {
  margin-top: .35rem;
  color: #4b5565;
}

.vfl-join__lead {
  color: var(--vfl-blue-ink);
  font-weight: 800;
}

.vfl-join a[href] {
  flex: 0 0 auto;
}

.vfl-pagehead {
  background: var(--vfl-blue);
  color: var(--vfl-white);
}

.vfl-pagehead__inner {
  padding: 2rem 0;
}

.vfl-pagehead p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, .88);
}

.vfl-footer {
  background: var(--vfl-blue-dark);
  color: var(--vfl-white);
}

.vfl-footer__inner {
  display: grid;
  grid-template-columns: minmax(210px, 1.2fr) minmax(170px, .8fr) minmax(190px, .9fr) minmax(220px, 1fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: start;
  padding: 2.25rem 0 2.5rem;
}

.vfl-footer a {
  color: var(--vfl-white);
  text-decoration-color: rgba(255, 255, 255, .35);
}

.vfl-footer a:hover,
.vfl-footer a:focus {
  color: var(--vfl-accent-soft);
  text-decoration-color: var(--vfl-accent-soft);
}

.vfl-footer__brand {
  max-width: 300px;
}

.vfl-footer__logo {
  display: block;
  width: min(112px, 42vw);
  height: auto;
  margin: 0 0 .9rem;
}

.vfl-footer__brand-name {
  margin: 0 0 .55rem;
  color: var(--vfl-white);
  font-weight: 800;
}

.vfl-footer__brand p {
  margin: 0 0 .6rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, .86);
}

.vfl-footer h2,
.vfl-footer h3 {
  margin: 0 0 .75rem;
  color: var(--vfl-accent);
  font-size: 1.1rem;
}

.vfl-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vfl-footer li {
  margin: .32rem 0;
}

.vfl-footer__meta {
  margin-top: 1rem;
  padding-top: .9rem;
  border-top: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .82);
  font-size: .9rem;
}

.vfl-footer__meta table {
  margin: .35rem 0;
}

.vfl-footer__meta td {
  color: inherit;
}

.vfl-footer__bottom {
  padding: 1rem 0 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .82);
  font-size: .9rem;
  text-align: center;
}

.vfl-footer__bottom p {
  margin: 0;
}

.vfl-scrollup {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: none;
  z-index: 20;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 4px;
  background: var(--vfl-accent);
  color: var(--vfl-blue-dark);
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 900px) {
  .vfl-header__inner,
  .vfl-topbar__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .vfl-topbar__right {
    justify-content: flex-start;
  }

  
.vfl-nav {
    justify-content: flex-start;
  }

  .vfl-nav__submenu {
    right: auto;
    left: 0;
  }

  .vfl-hero__inner {
    grid-template-columns: 1fr;
  }

  .vfl-hero__logo {
    justify-content: flex-start;
    width: fit-content;
  }

  .vfl-grid,
  .vfl-contact-layout,
  .vfl-department-layout,
  .vfl-team-page,
  .vfl-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

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

  .vfl-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .vfl-container {
    width: min(100% - 24px, 1120px);
  }

  .vfl-brand img {
    width: 56px;
    height: 56px;
  }

  
.vfl-nav {
    width: 100%;
  }

  .vfl-nav a,
  .vfl-nav__item,
  .vfl-nav__toggle {
    width: 100%;
  }

  .vfl-nav__toggle {
    justify-content: space-between;
  }

  .vfl-nav__submenu {
    position: static;
    width: 100%;
    margin: -.15rem 0 .2rem;
    border-color: rgba(13, 35, 72, .12);
    box-shadow: none;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .vfl-section__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .vfl-grid,
  .vfl-contact-layout,
  .vfl-department-layout,
  .vfl-image-gallery,
  .vfl-team-page,
  .vfl-team-facts,
  .vfl-team-grid,
  .vfl-footer__inner {
    grid-template-columns: 1fr;
  }

  .vfl-team-sidebar {
    position: static;
  }

  .vfl-slider__track {
    grid-auto-columns: minmax(240px, 88%);
  }

  .vfl-sponsors {
    grid-template-columns: 1fr;
  }

  .vfl-join {
    align-items: flex-start;
    flex-direction: column;
  }

  .vfl-footer__logo {
    width: 128px;
  }

  .vfl-content {
    padding: 1rem;
  }

  .vfl-content .zcontent_news .bild {
    float: none !important;
    width: 100%;
    margin: .25rem 0 .85rem;
  }

  .vfl-content .zcontent_news a[href] {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
.kachel-raster,
.cms-sportgruppen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 1.25rem;
  margin: 1.5rem 0 0;
}

.kachel,
.cms-sportgruppe-card {
  padding: 1.25rem;
  border: 1px solid var(--vfl-border);
  border-top: 4px solid var(--vfl-accent);
  background: var(--vfl-white);
  box-shadow: 0 12px 28px rgba(16, 43, 90, .08);
}

.kachel p:last-child,
.cms-sportgruppe-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .kachel-raster,
.cms-sportgruppen-grid {
    grid-template-columns: 1fr;
  }
}
.vfl-content-image--lightbox {
  cursor: zoom-in;
}
/* Mobile Gesamtansicht */
@media (max-width: 620px) {
  .vfl-site {
    overflow-x: hidden;
  }

  .vfl-container {
    width: min(100% - 20px, 1120px);
  }

  .vfl-topbar__inner {
    gap: .45rem;
    padding: .55rem 0;
  }

  .vfl-topbar__right {
    width: 100%;
    justify-content: flex-start;
  }

  .vfl-topbar__right a {
    display: inline-block;
    max-width: 100%;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .vfl-header__inner {
    gap: .85rem;
    padding: .85rem 0 1rem;
  }

  .vfl-brand {
    width: 100%;
    gap: .8rem;
  }

  .vfl-brand img {
    flex: 0 0 56px;
  }

  .vfl-brand__title {
    font-size: clamp(1.75rem, 10vw, 2.35rem);
  }

  .vfl-brand__subtitle {
    font-size: .86rem;
  }

  
.vfl-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .45rem;
    width: 100%;
  }

  .vfl-nav a,
  .vfl-nav__item,
  .vfl-nav__toggle {
    width: 100%;
    min-height: 42px;
  }

  .vfl-nav a,
  .vfl-nav__toggle {
    justify-content: center;
    padding: .55rem .6rem;
    text-align: center;
  }

  .vfl-nav__item {
    display: block;
    grid-column: 1 / -1;
  }

  .vfl-nav__toggle {
    justify-content: space-between;
    padding-inline: .8rem;
  }

  .vfl-nav__submenu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .35rem;
    width: 100%;
    margin: .35rem 0 0;
    padding: .45rem;
  }

  .vfl-nav__submenu a {
    justify-content: flex-start;
    min-height: 38px;
    padding: .45rem .55rem;
    text-align: left;
  }

  .vfl-nav a.vfl-nav__cta {
    grid-column: 1 / -1;
  }

  .vfl-pagehead__inner {
    padding: 2.2rem 0 2rem;
  }

  .vfl-pagehead h1 {
    font-size: clamp(2.4rem, 16vw, 3.4rem);
  }

  .vfl-main {
    padding: 1.35rem 0 2.25rem;
  }

  .vfl-content {
    padding: .95rem;
  }

  .info-box,
  .kachel,
  .cms-sportgruppe-card {
    padding: 1rem;
  }

  .img-16x9 {
    aspect-ratio: 4 / 3;
  }

  .vfl-footer__inner {
    gap: 1.4rem;
    padding: 1.75rem 0 1.6rem;
  }

  .vfl-footer__brand,
  .vfl-footer__links {
    max-width: none;
  }

  .vfl-footer__bottom {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .vfl-nav,
  .vfl-nav__submenu {
    grid-template-columns: 1fr;
  }

  .vfl-brand__title {
    font-size: clamp(1.55rem, 12vw, 2rem);
  }
}
/* Mobile Klappnavigation */
@media (max-width: 620px) {
  .vfl-topbar {
    display: none;
  }

  .vfl-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: .75rem;
    padding: .8rem 0;
  }

  .vfl-brand {
    width: auto;
    min-width: 0;
  }

  .vfl-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .vfl-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: .65rem;
  }

  .vfl-nav.is-open {
    display: grid;
    grid-template-columns: 1fr;
    gap: .4rem;
  }

  .vfl-nav a,
  .vfl-nav__item,
  .vfl-nav__toggle,
  .vfl-nav a.vfl-nav__cta {
    width: 100%;
  }

  .vfl-nav a,
  .vfl-nav__toggle {
    justify-content: space-between;
    min-height: 42px;
    padding: .6rem .75rem;
    text-align: left;
  }

  .vfl-nav__submenu {
    display: grid;
    grid-template-columns: 1fr;
    gap: .25rem;
    margin: .25rem 0 .45rem;
    padding: .35rem;
    position: static;
    width: 100%;
    border-color: rgba(13, 35, 72, .12);
    box-shadow: none;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .vfl-nav__submenu a {
    justify-content: flex-start;
    min-height: 38px;
  }
}
/* Mobile Navigation: finaler Klappmenue-Zustand */
@media (min-width: 621px) {
  .vfl-menu-toggle {
    display: none !important;
  }
}

@media (max-width: 620px) {
  .vfl-topbar {
    display: none !important;
  }

  .vfl-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
    gap: .75rem;
    padding: .8rem 0;
  }

  .vfl-brand {
    width: auto;
    min-width: 0;
  }

  .vfl-brand img {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
  }

  .vfl-brand__title {
    font-size: clamp(1.65rem, 9vw, 2.15rem);
  }

  .vfl-menu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    border: 0;
    border-radius: 4px;
    background: var(--vfl-blue-ink);
    color: var(--vfl-white);
    box-shadow: none;
  }

  .vfl-menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .vfl-nav {
    display: none !important;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: .6rem;
    padding-top: .55rem;
    border-top: 1px solid rgba(7, 27, 85, .12);
  }

  .vfl-nav.is-open {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: .35rem;
  }

  .vfl-nav a,
  .vfl-nav__item,
  .vfl-nav__toggle,
  .vfl-nav a.vfl-nav__cta {
    width: 100%;
  }

  .vfl-nav a,
  .vfl-nav__toggle {
    justify-content: space-between;
    min-height: 44px;
    padding: .7rem .85rem;
    border-radius: 4px;
    text-align: left;
  }

  .vfl-nav__submenu {
    display: none !important;
    position: static;
    width: 100%;
    min-width: 0;
    margin: .25rem 0 .4rem;
    padding: .25rem 0 .25rem .75rem;
    border: 0;
    border-left: 3px solid var(--vfl-accent);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .vfl-nav__item.is-open .vfl-nav__submenu {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: .2rem;
  }

  .vfl-nav__submenu a {
    min-height: 40px;
    padding: .55rem .75rem;
  }
}
/* Mobile Navigation: Korrektur Fallback-Icon und Startseitenlink */
.vfl-section__more {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--vfl-muted);
  font-weight: 700;
  text-decoration: none;
}

.vfl-section__more:hover,
.vfl-section__more:focus {
  color: var(--vfl-blue);
  text-decoration: underline;
}

.vfl-section__more span {
  color: var(--vfl-blue);
  font-size: 1.1em;
  line-height: 1;
}

@media (min-width: 621px) {
  .vfl-menu-toggle {
    display: none !important;
  }
}

@media (max-width: 620px) {
  .vfl-topbar {
    display: none !important;
  }

  .vfl-header__inner {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 46px;
    align-items: center;
    gap: .75rem;
    padding: .85rem 0;
  }

  .vfl-menu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    min-height: 46px;
    padding: 0;
    border: 0;
    border-radius: 4px;
    background: var(--vfl-blue-ink);
    color: var(--vfl-white);
    box-shadow: none;
    cursor: pointer;
  }

  .vfl-menu-toggle .vfl-menu-toggle__icon {
    display: block;
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    color: inherit;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.55rem;
    font-weight: 900;
    line-height: 1;
  }

  .vfl-nav {
    display: none !important;
  }

  .vfl-nav.is-open {
    display: grid !important;
  }

  .vfl-nav__submenu {
    display: none !important;
  }

  .vfl-nav__item.is-open .vfl-nav__submenu {
    display: grid !important;
  }
}
/* Mobile Navigation: Logo und Hamburger zentrieren */
@media (max-width: 620px) {
  .vfl-header__inner {
    grid-template-columns: minmax(0, 1fr) 46px;
  }

  .vfl-brand {
    align-items: center;
    justify-content: center;
    justify-self: center;
    text-align: left;
  }

  .vfl-menu-toggle {
    align-self: center;
    justify-self: end;
    line-height: 1;
  }

  .vfl-menu-toggle .vfl-menu-toggle__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    line-height: 1;
    transform: translateY(-1px);
  }
}
