/*
 * FSV 63 Luckenwalde – Nachwuchs Teamseite
 * Ein Template für A- bis G-Jugend, Inhalte pro Seite über Backend-Felder.
 */

.fsv-youth-team {
  --fsv-youth-navy: #021126;
  --fsv-youth-navy-2: #031b3a;
  --fsv-youth-blue: #07468f;
  --fsv-youth-yellow: #f7c600;
  --fsv-youth-text: #ffffff;
  --fsv-youth-soft: rgba(255, 255, 255, 0.78);
  --fsv-youth-muted: rgba(255, 255, 255, 0.6);
  --fsv-youth-border: rgba(255, 255, 255, 0.16);
  --fsv-youth-panel: linear-gradient(145deg, rgba(6, 31, 68, 0.97), rgba(2, 17, 39, 0.99));
  --fsv-youth-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  position: relative;
  overflow: hidden;
  color: var(--fsv-youth-text);
  background:
    radial-gradient(circle at 24% 32%, rgba(7, 70, 143, 0.55), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(247, 198, 0, 0.1), transparent 30%),
    linear-gradient(135deg, #020b19 0%, #062b61 45%, #021126 100%);
}

.fsv-youth-team * {
  box-sizing: border-box;
}

.fsv-youth-team a {
  color: inherit;
  text-decoration: none;
}

.fsv-youth-container {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.fsv-youth-hero {
  position: relative;
  min-height: clamp(430px, 54vw, 650px);
  display: flex;
  align-items: flex-end;
  padding: clamp(80px, 10vw, 128px) 0 clamp(52px, 7vw, 88px);
  isolation: isolate;
  overflow: hidden;
}

.fsv-youth-hero__media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: var(--fsv-youth-hero-image) center center / cover no-repeat;
  transform: scale(1.02);
}

.fsv-youth-hero::before,
.fsv-youth-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fsv-youth-hero::before {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 8, 20, 0.94) 0%, rgba(2, 12, 28, 0.8) 42%, rgba(2, 12, 28, 0.38) 100%),
    linear-gradient(0deg, rgba(2, 10, 24, 0.88) 0%, rgba(2, 10, 24, 0.1) 45%);
}

.fsv-youth-hero::after {
  z-index: -1;
  background: linear-gradient(180deg, rgba(2, 10, 24, 0.2), rgba(2, 10, 24, 0.82));
  border-bottom: 1px solid rgba(247, 198, 0, 0.45);
}

.fsv-youth-hero__inner {
  position: relative;
  z-index: 1;
}

.fsv-youth-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fsv-youth-breadcrumb a {
  color: var(--fsv-youth-yellow);
}

.fsv-youth-breadcrumb strong,
.fsv-youth-breadcrumb span {
  color: rgba(255, 255, 255, 0.86);
}

.fsv-youth-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 6.2vw, 6.5rem);
  line-height: 0.93;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.fsv-youth-hero__league {
  position: relative;
  display: inline-flex;
  margin: 18px 0 0;
  padding-bottom: 15px;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.04em;
  color: var(--fsv-youth-yellow);
}

.fsv-youth-hero__league::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: var(--fsv-youth-yellow);
}

.fsv-youth-hero__intro {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.7;
}

.fsv-youth-content {
  position: relative;
  padding: 0 0 54px;
  margin-top: -58px;
  z-index: 3;
}

.fsv-youth-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(340px, 0.9fr);
  gap: 20px;
  align-items: start;
}

.fsv-youth-maincol,
.fsv-youth-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fsv-youth-panel,
.fsv-youth-team-photo {
  border: 1px solid var(--fsv-youth-border);
  border-radius: 16px;
  background: var(--fsv-youth-panel);
  box-shadow: var(--fsv-youth-shadow);
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.fsv-youth-panel {
  padding: 24px;
}

.fsv-youth-panel h2 {
  position: relative;
  margin: 0 0 22px;
  padding-bottom: 11px;
  font-size: 1.12rem;
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
}

.fsv-youth-panel h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 3px;
  border-radius: 999px;
  background: var(--fsv-youth-yellow);
}

.fsv-youth-team-photo {
  min-height: 390px;
  background: #06172e;
}

.fsv-youth-team-photo > img {
  display: block;
  width: 100%;
  height: clamp(360px, 36vw, 500px);
  object-fit: cover;
}

.fsv-youth-team-photo__placeholder {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 44px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(2, 12, 27, 0.35), rgba(2, 12, 27, 0.9)),
    var(--fsv-youth-hero-image) center center / cover no-repeat;
}

.fsv-youth-team-photo__placeholder img {
  width: 96px;
  height: auto;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.4));
}

.fsv-youth-team-photo__placeholder span {
  color: var(--fsv-youth-yellow);
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fsv-youth-team-photo__placeholder strong {
  font-size: clamp(2.1rem, 4.4vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.fsv-youth-roster {
  padding: clamp(22px, 3vw, 30px);
}

.fsv-youth-roster h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  text-transform: none;
  letter-spacing: -0.04em;
}

.fsv-youth-roster__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.fsv-youth-roster__col {
  min-width: 0;
  padding: 0 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.fsv-youth-roster__col:first-child {
  padding-left: 0;
  border-left: 0;
}

.fsv-youth-roster__col h3 {
  margin: 0 0 13px;
  font-size: 0.92rem;
  color: var(--fsv-youth-yellow);
  text-transform: uppercase;
  font-weight: 950;
}

.fsv-youth-roster ul,
.fsv-youth-pair-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fsv-youth-roster li,
.fsv-youth-roster p {
  margin: 0 0 7px;
  color: var(--fsv-youth-soft);
  font-size: 0.98rem;
  line-height: 1.42;
}

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

.fsv-youth-small {
  min-height: 232px;
  position: relative;
}

.fsv-youth-card-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  border-radius: 50%;
  color: var(--fsv-youth-yellow);
  background: rgba(247, 198, 0, 0.1);
}

.fsv-youth-card-icon .fsv63-fa-icon {
  font-size: 1.35rem;
}

.fsv-youth-small h2 {
  margin-bottom: 16px;
}

.fsv-youth-small p,
.fsv-youth-pair-list li {
  color: var(--fsv-youth-soft);
  font-size: 0.94rem;
  line-height: 1.55;
}

.fsv-youth-small__headline {
  display: block;
  margin: 0 0 8px;
  color: #fff;
  font-weight: 900;
}

.fsv-youth-pair-list li {
  display: grid;
  grid-template-columns: minmax(92px, 0.78fr) minmax(0, 1fr);
  gap: 10px;
  margin-bottom: 8px;
}

.fsv-youth-pair-list li span {
  color: rgba(255, 255, 255, 0.66);
}

.fsv-youth-pair-list li strong {
  color: #fff;
  font-weight: 700;
}

.fsv-youth-pair-list--training li {
  grid-template-columns: minmax(86px, 0.72fr) minmax(0, 1fr);
}

.fsv-youth-outline-btn,
.fsv-youth-primary-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.fsv-youth-outline-btn {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.fsv-youth-outline-btn--full,
.fsv-youth-primary-btn {
  width: 100%;
}

.fsv-youth-primary-btn {
  color: #041329;
  background: var(--fsv-youth-yellow);
  box-shadow: 0 12px 28px rgba(247, 198, 0, 0.24);
}

.fsv-youth-outline-btn:hover,
.fsv-youth-primary-btn:hover {
  transform: translateY(-2px);
}

.fsv-youth-outline-btn:hover {
  border-color: rgba(247, 198, 0, 0.75);
}

.fsv-youth-contact__body {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.fsv-youth-contact__avatar {
  flex: 0 0 92px;
  width: 92px;
  height: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  color: var(--fsv-youth-yellow);
  background: linear-gradient(145deg, rgba(247, 198, 0, 0.16), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(247, 198, 0, 0.4);
}

.fsv-youth-contact__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fsv-youth-contact__avatar .fsv63-fa-icon {
  font-size: 2rem;
}

.fsv-youth-contact__info strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 950;
}

.fsv-youth-contact__info span {
  color: var(--fsv-youth-soft);
  line-height: 1.35;
}

.fsv-youth-contact__links {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.fsv-youth-contact__links a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--fsv-youth-soft);
  line-height: 1.35;
}

.fsv-youth-contact__links .fsv63-fa-icon {
  width: 22px;
  color: var(--fsv-youth-yellow);
}

.fsv-youth-sponsor__box {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.fsv-youth-sponsor__box img {
  max-width: 220px;
  max-height: 105px;
  object-fit: contain;
}

.fsv-youth-sponsor__box strong {
  color: rgba(255, 255, 255, 0.54);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fsv-youth-sponsor__box p {
  max-width: 240px;
  margin: 0;
  color: var(--fsv-youth-soft);
  line-height: 1.55;
}

.fsv-youth-table__subtitle {
  margin: -10px 0 16px;
  color: var(--fsv-youth-soft);
}

.fsv-youth-table__wrap {
  overflow-x: auto;
}

.fsv-youth-table table {
  width: 100%;
  border-collapse: collapse;
  color: #fff;
  font-size: 0.92rem;
}

.fsv-youth-table th,
.fsv-youth-table td {
  padding: 10px 8px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.fsv-youth-table th {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fsv-youth-table td:nth-child(1),
.fsv-youth-table th:nth-child(1),
.fsv-youth-table td:nth-child(3),
.fsv-youth-table th:nth-child(3),
.fsv-youth-table td:nth-child(4),
.fsv-youth-table th:nth-child(4) {
  text-align: center;
  white-space: nowrap;
}

.fsv-youth-table tr.is-active td {
  color: var(--fsv-youth-yellow);
  background: rgba(247, 198, 0, 0.08);
  font-weight: 900;
}

.fsv-youth-table__shortcode {
  overflow-x: auto;
}

.fsv-youth-table__shortcode table {
  width: 100%;
}

.fsv-youth-empty {
  padding: 18px;
  border-radius: 10px;
  color: var(--fsv-youth-soft);
  background: rgba(255, 255, 255, 0.05);
}

.fsv-youth-editor-content {
  margin-top: 22px;
  color: #fff;
}

.fsv-youth-editor-content :where(p, li) {
  color: var(--fsv-youth-soft);
  line-height: 1.7;
}

.fsv-youth-featurebar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(90deg, rgba(3, 20, 44, 0.98), rgba(5, 38, 82, 0.98));
}

.fsv-youth-featurebar__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 28px 0;
}

.fsv-youth-featurebar__grid div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: center;
}

.fsv-youth-featurebar__grid span {
  grid-row: 1 / 3;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--fsv-youth-yellow);
  background: rgba(247, 198, 0, 0.1);
}

.fsv-youth-featurebar__grid span .fsv63-fa-icon {
  font-size: 1.6rem;
}

.fsv-youth-featurebar__grid strong {
  color: var(--fsv-youth-yellow);
  font-size: 0.92rem;
  font-weight: 950;
  text-transform: uppercase;
}

.fsv-youth-featurebar__grid p {
  margin: 3px 0 0;
  color: var(--fsv-youth-soft);
  font-size: 0.9rem;
  line-height: 1.42;
}

@media (max-width: 1120px) {
  .fsv-youth-layout {
    grid-template-columns: 1fr;
  }

  .fsv-youth-sidebar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .fsv-youth-contact__body {
    align-items: flex-start;
  }
}

@media (max-width: 920px) {
  .fsv-youth-content {
    margin-top: -34px;
  }

  .fsv-youth-roster__grid,
  .fsv-youth-info-grid,
  .fsv-youth-sidebar,
  .fsv-youth-featurebar__grid {
    grid-template-columns: 1fr 1fr;
  }

  .fsv-youth-roster__col:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .fsv-youth-roster__col:nth-child(n+3) {
    margin-top: 24px;
  }
}

@media (max-width: 680px) {
  .fsv-youth-container {
    width: min(100% - 28px, 1240px);
  }

  .fsv-youth-hero {
    min-height: 460px;
    padding-top: 72px;
  }

  .fsv-youth-hero h1 {
    font-size: clamp(2.55rem, 14vw, 4.2rem);
  }

  .fsv-youth-roster__grid,
  .fsv-youth-info-grid,
  .fsv-youth-sidebar,
  .fsv-youth-featurebar__grid {
    grid-template-columns: 1fr;
  }

  .fsv-youth-roster__col,
  .fsv-youth-roster__col:nth-child(odd) {
    padding: 18px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .fsv-youth-roster__col:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .fsv-youth-roster__col:nth-child(n+3) {
    margin-top: 0;
  }

  .fsv-youth-contact__body {
    flex-direction: column;
  }

  .fsv-youth-panel {
    padding: 20px;
  }

  .fsv-youth-featurebar__grid div {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .fsv-youth-featurebar__grid span {
    width: 46px;
    height: 46px;
  }
}


.fsv-youth-photo-caption {
  padding: 24px 26px;
}

.fsv-youth-photo-caption h2 {
  margin-bottom: 18px;
}

.fsv-youth-photo-caption__content {
  display: grid;
  gap: 14px;
}

.fsv-youth-photo-caption__content p {
  margin: 0;
  color: var(--fsv-youth-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.fsv-youth-photo-caption__content strong {
  color: #fff;
  font-weight: 900;
}

/* ------------------------------------------------------------
   FSV63 Nachwuchs Teamseiten – finaler Mobile-/Detail-Feinschliff
------------------------------------------------------------ */

.fsv-youth-team {
  overflow-x: clip;
}

.fsv-youth-team :where(h1, h2, h3, p, a, strong, span, li, td, th) {
  overflow-wrap: anywhere;
}

.fsv-youth-layout,
.fsv-youth-maincol,
.fsv-youth-sidebar,
.fsv-youth-panel,
.fsv-youth-team-photo,
.fsv-youth-info-grid > *,
.fsv-youth-featurebar__grid > * {
  min-width: 0;
}

.fsv-youth-team-photo {
  background:
    radial-gradient(circle at 20% 10%, rgba(247, 198, 0, .08), transparent 32%),
    linear-gradient(145deg, rgba(6, 31, 68, .98), rgba(2, 17, 39, .99));
}

.fsv-youth-team-photo > img {
  height: auto;
  min-height: clamp(300px, 30vw, 440px);
  max-height: clamp(420px, 48vw, 620px);
  object-fit: contain;
  object-position: center center;
  background:
    linear-gradient(180deg, rgba(2, 12, 27, .2), rgba(2, 12, 27, .72)),
    #06172e;
}

.fsv-youth-team.is-photo-focus .fsv-youth-layout {
  grid-template-columns: minmax(0, 1.75fr) minmax(320px, .8fr);
}

.fsv-youth-team.is-photo-focus .fsv-youth-team-photo > img {
  min-height: clamp(330px, 34vw, 500px);
  max-height: none;
}

.fsv-youth-photo-caption {
  border-color: rgba(247, 198, 0, .24);
}

.fsv-youth-photo-caption__content p {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .09);
}

.fsv-youth-photo-caption__content strong {
  color: var(--fsv-youth-yellow);
}

.fsv-youth-contact__links a span,
.fsv-youth-outline-btn,
.fsv-youth-primary-btn {
  min-width: 0;
}

.fsv-youth-sponsor__box img {
  width: auto;
  height: auto;
}

.fsv-youth-table__wrap,
.fsv-youth-table__shortcode {
  border-radius: 12px;
  -webkit-overflow-scrolling: touch;
}

.fsv-youth-table table {
  min-width: 420px;
}

.fsv-youth-editor-content :where(img, iframe, table) {
  max-width: 100%;
}

.fsv-youth-editor-content table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 1120px) {
  .fsv-youth-team.is-photo-focus .fsv-youth-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .fsv-youth-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fsv-youth-team-photo > img,
  .fsv-youth-team.is-photo-focus .fsv-youth-team-photo > img {
    min-height: 0;
    max-height: none;
  }
}

@media (max-width: 680px) {
  .fsv-youth-hero {
    min-height: 390px;
    padding: 70px 0 56px;
  }

  .fsv-youth-hero::before {
    background:
      linear-gradient(90deg, rgba(2, 8, 20, .94) 0%, rgba(2, 12, 28, .82) 60%, rgba(2, 12, 28, .62) 100%),
      linear-gradient(0deg, rgba(2, 10, 24, .9) 0%, rgba(2, 10, 24, .24) 54%);
  }

  .fsv-youth-breadcrumb {
    flex-wrap: wrap;
    gap: 7px;
    font-size: .76rem;
  }

  .fsv-youth-hero h1 {
    letter-spacing: -.05em;
    line-height: .98;
  }

  .fsv-youth-hero__league {
    font-size: clamp(1.25rem, 7vw, 1.8rem);
  }

  .fsv-youth-hero__intro {
    font-size: .98rem;
    line-height: 1.58;
  }

  .fsv-youth-content {
    margin-top: -24px;
  }

  .fsv-youth-team-photo {
    min-height: auto;
    border-radius: 14px;
  }

  .fsv-youth-team-photo > img {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
  }

  .fsv-youth-panel h2 {
    font-size: 1.02rem;
    line-height: 1.25;
  }

  .fsv-youth-pair-list li,
  .fsv-youth-pair-list--training li {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 10px 0;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .fsv-youth-pair-list li:last-child,
  .fsv-youth-pair-list--training li:last-child {
    border-bottom: 0;
  }

  .fsv-youth-contact__body {
    gap: 12px;
  }

  .fsv-youth-contact__avatar {
    width: 78px;
    height: 78px;
    flex-basis: 78px;
  }

  .fsv-youth-outline-btn,
  .fsv-youth-primary-btn {
    min-height: 48px;
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
    text-align: center;
  }

  .fsv-youth-photo-caption {
    padding: 20px;
  }

  .fsv-youth-photo-caption__content {
    gap: 10px;
  }

  .fsv-youth-featurebar__grid {
    padding: 22px 0;
  }
}

@media (max-width: 420px) {
  .fsv-youth-container {
    width: min(100% - 22px, 1240px);
  }

  .fsv-youth-panel {
    padding: 18px;
  }

  .fsv-youth-hero h1 {
    font-size: clamp(2.2rem, 13vw, 3.25rem);
  }
}


/* ------------------------------------------------------------
   Patch 09 – Schnuppertraining-CTA und Backend-Feinschliff
------------------------------------------------------------ */

.fsv-youth-trial-cta {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: clamp(22px, 3vw, 30px);
  border-color: rgba(247, 198, 0, .32);
  background:
    radial-gradient(circle at 12% 20%, rgba(247, 198, 0, .15), transparent 30%),
    linear-gradient(145deg, rgba(7, 70, 143, .95), rgba(2, 17, 39, .98));
}

.fsv-youth-trial-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(247, 198, 0, .18), transparent 38%);
  opacity: .7;
}

.fsv-youth-trial-cta > * {
  position: relative;
  z-index: 1;
}

.fsv-youth-trial-cta__icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #041329;
  background: var(--fsv-youth-yellow);
  box-shadow: 0 16px 32px rgba(247, 198, 0, .22);
}

.fsv-youth-trial-cta__icon .fsv63-fa-icon {
  font-size: 1.65rem;
}

.fsv-youth-trial-cta h2 {
  margin: 0 0 7px;
  padding: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.05;
  letter-spacing: -.035em;
  text-transform: none;
}

.fsv-youth-trial-cta h2::after {
  display: none;
}

.fsv-youth-trial-cta p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  line-height: 1.58;
}

.fsv-youth-trial-cta__button {
  width: auto;
  min-width: 210px;
  margin-top: 0;
  white-space: nowrap;
}

@media (max-width: 920px) {
  .fsv-youth-trial-cta {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .fsv-youth-trial-cta__button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .fsv-youth-trial-cta {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .fsv-youth-trial-cta__icon {
    width: 52px;
    height: 52px;
  }
}
