/* Athlete Programs page — extras */

/* The intro media on this page is a static image, not a video. */
.athlete-intro-image {
  align-self: stretch;
}
.athlete-intro-image {
  background: rgba(255, 255, 255, 0.02);
}
.athlete-intro-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  aspect-ratio: 4 / 5;
}
@media (max-width: 900px) {
  .athlete-intro-image img {
    aspect-ratio: 16 / 10;
  }
}

/* Inline form inside the intro copy column */
.athlete-inline-form {
  margin-top: 14px;
}

/* Eyebrow / heading centering helpers (used by testimonials) */
.eyebrow.center,
.section-heading.center {
  text-align: center;
}
.section-heading {
  font-family: "Anton", "Inter", sans-serif;
  font-size: calc(clamp(28px, 4vw, 48px) * var(--fs-scale, 1));
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  margin: 6px 0 14px;
  line-height: 1.1;
}
.testimonials-header {
  margin-bottom: 38px;
}

/* Coaches — vertical-name layout */
.coaches {
  padding: 90px 0 30px;
}
.coaches-title {
  font-family: "Anton", "Inter", sans-serif;
  font-size: calc(clamp(28px, 4vw, 48px) * var(--fs-scale, 1));
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  margin: 0 0 48px;
  position: relative;
  display: block;
}
.coaches-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #00d4f0;
  border-radius: 2px;
  margin: 16px auto 0;
}

.coach-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
  align-items: stretch;
  margin: 0 0 56px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.coach-card:hover {
  border-color: rgba(0, 212, 240, 0.35);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
}

.coach-photo {
  position: relative;
  background: #0b0b0b;
  min-height: 460px;
}
.coach-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.coach-body {
  padding: 36px 36px 36px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: calc(18.5px * var(--fs-scale, 1));
  line-height: 1.8;
}
.coach-name {
  font-family: "Anton", "Inter", sans-serif;
  font-size: calc(clamp(24px, 3vw, 34px) * var(--fs-scale, 1));
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 18px;
  line-height: 1.1;
}
.coach-name::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  background: #00d4f0;
  border-radius: 2px;
  margin: 14px 0 0;
}
.coach-body p {
  margin: 0 0 12px;
}
.coach-body p:last-of-type {
  margin-bottom: 18px;
}
.coach-sub {
  font-family: "Anton", "Inter", sans-serif;
  font-size: calc(18px * var(--fs-scale, 1));
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin: 24px 0 12px;
}
.coach-list {
  margin: 0;
  padding: 0 0 0 22px;
  list-style: disc;
}
.coach-list li {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: calc(18px * var(--fs-scale, 1));
  line-height: 1.6;
}
.coach-list li::marker {
  color: #00d4f0;
}

@media (max-width: 900px) {
  .coach-card {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .coach-photo {
    min-height: 340px;
  }
  .coach-body {
    padding: 28px 24px 32px;
  }
}

/* --- Casual download deterrent (mounted via NoDownloadGuard) --- */
body.no-download img {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
body.no-download {
  -webkit-user-select: none;
  user-select: none;
}

/* ─────────── FAQ accordion (faq block — styles mirror youth-agility-foundations-page.css
   so the shared `faq` block renders correctly on this page too) ─────────── */
.yaf-faq {
  padding-block: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.yaf-faq-head {
  text-align: center;
  margin-bottom: 40px;
}
.yaf-faq-head h2 {
  font-family: "Anton", "Inter", sans-serif;
  font-size: calc(clamp(28px, 3.6vw, 42px) * var(--fs-scale, 1));
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 10px;
}
.yaf-faq-head p {
  color: rgba(255, 255, 255, 0.6);
  font-size: calc(18.5px * var(--fs-scale, 1));
  margin: 0;
}
.yaf-faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.yaf-faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.yaf-faq-item[open] {
  border-color: rgba(0, 212, 240, 0.45);
  background: rgba(0, 212, 240, 0.05);
}
.yaf-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
  font: 600 16px/1.4 "Inter", sans-serif; font-size: calc(16px * var(--fs-scale, 1));
}
.yaf-faq-item summary::-webkit-details-marker {
  display: none;
}
.yaf-faq-item summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 240, 0.35);
  color: #00d4f0;
  font-weight: 700;
  font-size: calc(18px * var(--fs-scale, 1));
  transition: transform 0.2s ease, background 0.2s ease;
}
.yaf-faq-item[open] summary::after {
  content: "−";
  background: rgba(0, 212, 240, 0.15);
}
.yaf-faq-body {
  padding: 0 26px 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: calc(18px * var(--fs-scale, 1));
  line-height: 1.75;
}
.yaf-faq-body p {
  margin: 0 0 10px;
}
.yaf-faq-body p:last-child {
  margin-bottom: 0;
}
.yaf-faq-body ul {
  margin: 8px 0 0;
  padding-left: 22px;
}
.yaf-faq-body ul li {
  margin: 4px 0;
}
@media (max-width: 600px) {
  .yaf-faq {
    padding-block: 56px;
  }
  .yaf-faq-item summary {
    padding: 18px 20px;
    font-size: calc(15px * var(--fs-scale, 1));
  }
  .yaf-faq-body {
    padding: 0 20px 20px;
  }
}

/* ── Athlete Showcase (block: athleteShowcase) — photo or clip per athlete ─── */
.athlete-showcase {
  padding-block: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
/* Match .elite-coaches — the site's other people-card section. Without this
   the grid runs at the full 1600px container while the richText above and
   the FAQ below sit at 880px. */
.athlete-showcase .container {
  max-width: 1180px;
}
.as-head {
  text-align: center;
  margin-bottom: 40px;
}
.as-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: calc(12px * var(--fs-scale, 1));
  font-weight: 700;
  color: #00d4f0;
  margin: 0 0 10px;
}
.as-title {
  font-family: "Anton", "Inter", sans-serif;
  font-size: calc(clamp(28px, 3.6vw, 42px) * var(--fs-scale, 1));
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 10px;
}
.as-title .accent {
  color: #00d4f0;
}
.as-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: calc(18.5px * var(--fs-scale, 1));
  margin: 0;
}
/* auto-fit, not auto-fill: with 4 cards auto-fill materialised a 5th empty
   track and left a dead gap on the right. gap matches .class-card-grid. */
.as-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.as-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.as-card:hover {
  border-color: rgba(0, 212, 240, 0.45);
  transform: translateY(-3px);
}
/* Fixed-ratio box so photos and clips line up in the same grid. */
.as-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.as-media img,
.as-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.as-meta {
  padding: 16px 18px 18px;
}
.as-sport {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: calc(11px * var(--fs-scale, 1));
  font-weight: 700;
  color: #00d4f0;
  margin-bottom: 6px;
}
.as-name {
  font-family: "Anton", "Inter", sans-serif;
  font-size: calc(20px * var(--fs-scale, 1));
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 6px;
}
.as-note {
  color: rgba(255, 255, 255, 0.62);
  font-size: calc(15px * var(--fs-scale, 1));
  line-height: 1.6;
  margin: 0;
}
@media (prefers-reduced-motion: reduce) {
  .as-card {
    transition: none;
  }
  .as-card:hover {
    transform: none;
  }
}
/* Site-standard card rhythm (see .class-card-grid): 960 -> 2-up, 600 -> 1-up.
   The old single 640px/150px rule left 3 tiny columns on phones while every
   other page had already collapsed to one. */
@media (max-width: 960px) {
  .as-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .athlete-showcase {
    padding-block: 56px;
  }
  .as-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
