/* =============================================================
   SOCIAL PROOF — athletes testimonials + partner clubs
   ============================================================= */

.social-proof {
  background: var(--color-surface, #F5F3F2);
  padding: 100px 0;
}

.social-proof + .social-proof {
  /* Two stacked sections share the same gray; collapse the seam. */
  padding-top: 0;
}

.social-proof__header {
  text-align: center;
  margin-bottom: 56px;
}

.social-proof__headline {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0;
}

/* ── Athlete cards ── */
.social-proof__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}

.sp-testimonial {
  background: #fff;
  border-radius: 24px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sp-testimonial__quote-wrap {
  flex: 1;
  display: flex;
  align-items: center;
}

.sp-testimonial__quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
  font-style: italic;
  margin: 0;
}

.sp-testimonial__quote::before {
  content: "“";
  font-size: 2rem;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 4px;
  color: var(--color-text-muted);
}

.sp-testimonial__attrib {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid #ececec;
}

.sp-testimonial__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  background: var(--color-surface, #f5f3f2);
}

.sp-testimonial__name {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.sp-testimonial__role {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.sp-testimonial__link {
  margin-left: auto;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.sp-testimonial__link:hover {
  color: var(--color-text);
}

/* ── Club cards ── */
.sp-clubs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 640px;
  margin: 0 auto;
}

.sp-club {
  background: #fff;
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.sp-club__logo {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  color: #191919;
  border: 1px solid #ececec;
  overflow: hidden;
}

.sp-club__logo--round {
  border-radius: 50%;
  border: none;
  background: transparent;
}

.sp-club__logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sp-club__name {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.sp-club__sport {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ── Link to full testimonials page ── */
.social-proof__more {
  text-align: center;
  margin-top: 40px;
}

.social-proof__more-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 0.15s;
}

.social-proof__more-link:hover {
  opacity: 0.6;
}

/* =============================================================
   FEATURED variant — sport-specific landing pages
   Single large quote on top, row of badges (club + podcasts) below.
   ============================================================= */

.sp-featured {
  background: #fff;
  border-radius: 28px;
  padding: 48px 56px;
  max-width: 760px;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
}

.sp-featured__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--color-surface, #f5f3f2);
}

.sp-featured__quote {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.6;
  color: var(--color-text);
  font-style: italic;
  margin: 0 0 18px;
}

.sp-featured__quote::before {
  content: "“";
  font-size: 2.4rem;
  line-height: 0;
  vertical-align: -0.5em;
  margin-right: 4px;
  color: var(--color-text-muted);
}

.sp-featured__name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}

.sp-featured__role {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* ── Row of badge cards ── */
.sp-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}

.sp-badge {
  background: #fff;
  border-radius: 18px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  text-align: center;
  transition: transform 0.2s ease;
}

.sp-badge:hover {
  transform: translateY(-2px);
}

.sp-badge__logo {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface, #f5f3f2);
  color: #191919;
  overflow: hidden;
}

.sp-badge__logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sp-badge__icon {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background: #191919;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-badge__icon svg {
  width: 22px;
  height: 22px;
}

.sp-badge__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.sp-badge__name {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.25;
  color: var(--color-text);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .social-proof__cards,
  .sp-clubs {
    grid-template-columns: 1fr;
  }

  .social-proof {
    padding: 72px 0;
  }

  .sp-featured {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    text-align: center;
  }

  .sp-featured__photo {
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .sp-row {
    grid-template-columns: 1fr;
  }
}
