/* Athletes marketing: hero + alternating feature bands */
.athlete-page .m-hero__sub {
  text-transform: none;
}

.athlete-bands {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--space-section) clamp(1.25rem, 4vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.athlete-band {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: stretch;
}

.athlete-band__text h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.athlete-band__headline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.75rem;
}

.athlete-band__headline h2 {
  margin: 0;
}

.athlete-band__soon {
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-accent);
  padding: 0.3rem 0.55rem;
  border-radius: 6px;
  line-height: 1;
}

.athlete-band__text p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  max-width: 36rem;
}

.athlete-band__visual .m-panel {
  min-height: 220px;
}

@media (max-width: 899px) {
  .athlete-band__text {
    text-align: left;
    align-self: stretch;
    width: 100%;
  }

  .athlete-band__text p {
    max-width: none;
  }

  /* Visual first in DOM; reverse main axis so copy sits above the gradient panel */
  .athlete-band--reverse {
    flex-direction: column-reverse;
  }
}

.athlete-cta {
  text-align: center;
  padding: 0 clamp(1.25rem, 4vw, 2rem) var(--space-section);
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.athlete-cta h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  width: 100%;
  text-align: center;
}

@media (min-width: 900px) {
  .athlete-band {
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 4vw, 3rem);
  }

  .athlete-band--reverse {
    flex-direction: row;
  }

  .athlete-band__text,
  .athlete-band__visual {
    flex: 1 1 48%;
  }

  .athlete-band__visual .m-panel {
    min-height: 260px;
  }
}
