/* FSV63 – Nachwuchs Landingpage */

:root {
  --fsv63-blue: #06327a;
  --fsv63-blue-2: #0b4fc1;
  --fsv63-blue-dark: #061632;
  --fsv63-yellow: #ffd200;
  --fsv63-text: #102443;
  --fsv63-muted: #64748b;
  --fsv63-bg: #f3f7fb;
  --fsv63-card: #ffffff;
  --fsv63-border: rgba(10, 37, 76, .12);
  --fsv63-shadow: 0 24px 60px rgba(7, 25, 55, .14);
}

body .fsv63-youth-page {
  background: var(--fsv63-bg);
  color: var(--fsv63-text);
  overflow: hidden;
}

.fsv63-youth-page *,
.fsv63-youth-page *::before,
.fsv63-youth-page *::after {
  box-sizing: border-box;
}

.fsv63-youth-container {
  width: min(1180px, calc(100% - 42px));
  margin: 0 auto;
}

.fsv63-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--fsv63-yellow);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
}

.fsv63-kicker span {
  width: 42px;
  height: 3px;
  border-radius: 99px;
  background: var(--fsv63-yellow);
  display: inline-block;
}

.fsv63-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none !important;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  border: 1px solid transparent;
}

.fsv63-btn:hover {
  transform: translateY(-2px);
}

.fsv63-btn--yellow {
  background: var(--fsv63-yellow);
  color: #061632 !important;
  box-shadow: 0 16px 35px rgba(255, 210, 0, .25);
}

.fsv63-btn--blue {
  background: var(--fsv63-blue);
  color: #fff !important;
  box-shadow: 0 16px 35px rgba(6, 50, 122, .18);
}

.fsv63-btn--ghost {
  background: rgba(255, 255, 255, .11);
  color: #fff !important;
  border-color: rgba(255, 255, 255, .25);
}

/* HERO */
.fsv63-youth-hero {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 80% 30%, rgba(255, 210, 0, .16), transparent 28%),
    linear-gradient(110deg, rgba(2, 17, 50, .96) 0%, rgba(6, 50, 122, .93) 56%, rgba(0, 93, 190, .86) 100%),
    var(--fsv63-youth-hero-image, none),
    linear-gradient(135deg, #061632, #06327a);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.fsv63-youth-hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -120px -8%;
  height: 220px;
  background: var(--fsv63-bg);
  transform: rotate(-3deg);
  transform-origin: left bottom;
  z-index: -1;
}

.fsv63-youth-hero__inner {
  width: min(1180px, calc(100% - 42px));
  margin: 0 auto;
  padding: 95px 0 150px;
}

.fsv63-youth-hero h1 {
  max-width: 860px;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 7vw, 96px);
  line-height: .94;
  letter-spacing: -.06em;
  font-weight: 950;
  text-transform: uppercase;
}

.fsv63-youth-hero__lead {
  max-width: 690px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
  font-weight: 700;
}

.fsv63-youth-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

/* STATS */
.fsv63-youth-section {
  position: relative;
  padding: 70px 0;
}

.fsv63-youth-section--stats {
  padding-top: 0;
  margin-top: -80px;
  z-index: 2;
}

.fsv63-youth-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.fsv63-youth-stat {
  min-height: 142px;
  padding: 28px 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--fsv63-shadow);
  border: 1px solid rgba(255, 255, 255, .75);
  backdrop-filter: blur(12px);
}

.fsv63-youth-stat strong {
  display: block;
  color: var(--fsv63-blue);
  font-size: 46px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.04em;
}

.fsv63-youth-stat span {
  display: block;
  margin-top: 12px;
  color: var(--fsv63-muted);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 12px;
}

/* INTRO */
.fsv63-youth-intro {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 70px;
  align-items: end;
}

.fsv63-youth-intro h2,
.fsv63-youth-section-head h2,
.fsv63-youth-cta h2 {
  margin: 0;
  color: var(--fsv63-text);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 950;
  text-transform: uppercase;
}

.fsv63-youth-intro > p,
.fsv63-youth-cta p {
  margin: 0;
  color: var(--fsv63-muted);
  font-size: 18px;
  line-height: 1.75;
  font-weight: 650;
}

/* PATH */
.fsv63-youth-section--path {
  padding-top: 18px;
}

.fsv63-youth-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.fsv63-youth-path-card {
  position: relative;
  min-height: 275px;
  padding: 34px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--fsv63-border);
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(6, 22, 50, .08);
}

.fsv63-youth-path-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 50, 122, .09), rgba(255, 210, 0, .13));
  opacity: 0;
  transition: opacity .2s ease;
}

.fsv63-youth-path-card:hover::before {
  opacity: 1;
}

.fsv63-youth-path-card__number {
  position: absolute;
  right: 24px;
  top: 18px;
  color: rgba(6, 50, 122, .1);
  font-size: 72px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.08em;
}

.fsv63-youth-path-card p,
.fsv63-youth-path-card h3,
.fsv63-youth-path-card span:last-child {
  position: relative;
  z-index: 1;
}

.fsv63-youth-path-card p {
  margin: 0 0 44px;
  color: var(--fsv63-blue);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}

.fsv63-youth-path-card h3 {
  margin: 0 0 18px;
  color: var(--fsv63-text);
  font-size: 28px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -.03em;
}

.fsv63-youth-path-card span:last-child {
  color: var(--fsv63-muted);
  line-height: 1.65;
  font-weight: 650;
}

/* TEAMS */
.fsv63-youth-section--teams {
  padding-top: 20px;
}

.fsv63-youth-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.fsv63-youth-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.fsv63-youth-filter button {
  border: 1px solid var(--fsv63-border);
  background: #fff;
  color: var(--fsv63-text);
  border-radius: 999px;
  padding: 11px 16px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.fsv63-youth-filter button:hover,
.fsv63-youth-filter button.is-active {
  background: var(--fsv63-blue);
  color: #fff;
  border-color: var(--fsv63-blue);
  transform: translateY(-1px);
}

.fsv63-youth-team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.fsv63-youth-team-card {
  min-height: 245px;
}

.fsv63-youth-team-card.is-hidden {
  display: none;
}

.fsv63-youth-team-card a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 245px;
  padding: 24px;
  border-radius: 28px;
  text-decoration: none !important;
  overflow: hidden;
  color: #fff !important;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 210, 0, .2), transparent 32%),
    linear-gradient(145deg, var(--fsv63-blue-dark), var(--fsv63-blue));
  box-shadow: 0 20px 48px rgba(6, 22, 50, .17);
  transition: transform .2s ease, box-shadow .2s ease;
}

.fsv63-youth-team-card a::before {
  content: "FSV";
  position: absolute;
  right: -8px;
  bottom: 20px;
  color: rgba(255,255,255,.055);
  font-size: 82px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.08em;
}

.fsv63-youth-team-card a:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(6, 22, 50, .24);
}

.fsv63-youth-team-card__top,
.fsv63-youth-team-card__body,
.fsv63-youth-team-card__link {
  position: relative;
  z-index: 1;
}

.fsv63-youth-team-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.fsv63-youth-team-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  color: rgba(255,255,255,.82);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.fsv63-youth-team-card__top strong {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: inline-grid;
  place-items: center;
  background: var(--fsv63-yellow);
  color: var(--fsv63-blue-dark);
  font-size: 18px;
  font-weight: 950;
  box-shadow: 0 16px 35px rgba(255, 210, 0, .25);
}

.fsv63-youth-team-card h3 {
  margin: 54px 0 8px;
  color: #fff;
  font-size: 28px;
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -.04em;
}

.fsv63-youth-team-card p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-weight: 800;
}

.fsv63-youth-team-card__link {
  color: var(--fsv63-yellow);
  font-weight: 950;
  margin-top: 24px;
}

/* CTA */
.fsv63-youth-section--cta {
  padding-top: 80px;
}

.fsv63-youth-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 38px;
  align-items: center;
  padding: 46px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 95% 20%, rgba(255, 210, 0, .18), transparent 28%),
    linear-gradient(135deg, var(--fsv63-blue-dark), var(--fsv63-blue));
  color: #fff;
  box-shadow: var(--fsv63-shadow);
}

.fsv63-youth-cta h2 {
  color: #fff;
  max-width: 780px;
}

.fsv63-youth-cta p {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(255,255,255,.78);
}

.fsv63-youth-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
}

/* NEWS */
.fsv63-youth-news-more {
  color: var(--fsv63-blue) !important;
  font-weight: 950;
  text-decoration: none !important;
}

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

.fsv63-youth-news-card a {
  display: block;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  color: var(--fsv63-text) !important;
  text-decoration: none !important;
  border: 1px solid var(--fsv63-border);
  box-shadow: 0 16px 45px rgba(6, 22, 50, .08);
}

.fsv63-youth-news-card__image {
  height: 190px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--fsv63-blue-dark), var(--fsv63-blue));
}

.fsv63-youth-news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .25s ease;
}

.fsv63-youth-news-card a:hover img {
  transform: scale(1.04);
}

.fsv63-youth-news-card__content {
  padding: 24px;
}

.fsv63-youth-news-card time {
  display: block;
  color: var(--fsv63-blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 10px;
}

.fsv63-youth-news-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.16;
  font-weight: 950;
  letter-spacing: -.03em;
}

.fsv63-youth-news-card p {
  margin: 0;
  color: var(--fsv63-muted);
  line-height: 1.55;
  font-weight: 650;
}

/* Theme cleanup for this template */
.fsv63-youth-page .entry-header,
.fsv63-youth-page .entry-title,
.fsv63-youth-page .sidebar,
.fsv63-youth-page aside {
  display: none !important;
}

@media (max-width: 1100px) {
  .fsv63-youth-team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fsv63-youth-intro,
  .fsv63-youth-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .fsv63-youth-hero {
    min-height: 540px;
  }

  .fsv63-youth-hero__inner {
    padding: 78px 0 130px;
  }

  .fsv63-youth-stats,
  .fsv63-youth-path-grid,
  .fsv63-youth-news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fsv63-youth-team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fsv63-youth-section-head {
    display: block;
  }

  .fsv63-youth-filter {
    justify-content: flex-start;
    margin-top: 20px;
  }
}

@media (max-width: 620px) {
  .fsv63-youth-container,
  .fsv63-youth-hero__inner {
    width: min(100% - 28px, 1180px);
  }

  .fsv63-youth-stats,
  .fsv63-youth-path-grid,
  .fsv63-youth-team-grid,
  .fsv63-youth-news-grid {
    grid-template-columns: 1fr;
  }

  .fsv63-youth-hero h1 {
    font-size: clamp(42px, 14vw, 64px);
  }

  .fsv63-youth-section {
    padding: 50px 0;
  }

  .fsv63-youth-section--stats {
    padding-top: 0;
  }

  .fsv63-youth-stat,
  .fsv63-youth-path-card,
  .fsv63-youth-team-card a,
  .fsv63-youth-cta {
    border-radius: 22px;
  }

  .fsv63-youth-cta {
    padding: 30px 22px;
  }

  .fsv63-youth-hero__actions,
  .fsv63-youth-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .fsv63-btn {
    width: 100%;
  }
}

/* Update V2: Feinschliff Nachwuchsseite */
.fsv63-youth-cta .fsv63-btn--light {
  background: rgba(255, 255, 255, .96);
  color: var(--fsv63-blue-dark) !important;
  border-color: rgba(255, 255, 255, .7);
  box-shadow: 0 16px 35px rgba(0, 0, 0, .12);
}

.fsv63-youth-cta .fsv63-btn--light:hover {
  background: #fff;
}

.fsv63-youth-news-card__image--fallback {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 210, 0, .2), transparent 30%),
    linear-gradient(135deg, var(--fsv63-blue-dark), var(--fsv63-blue));
}

.fsv63-youth-news-card__image--fallback span {
  color: rgba(255, 255, 255, .72);
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.06em;
}

.fsv63-youth-team-card h3,
.fsv63-youth-news-card h3,
.fsv63-youth-cta h2,
.fsv63-youth-section-head h2 {
  text-wrap: balance;
}

.fsv63-youth-team-card__link,
.fsv63-youth-news-more {
  white-space: nowrap;
}

@media (min-width: 861px) {
  .fsv63-youth-section--news {
    padding-top: 40px;
  }
}
