/**
 * ============================================================================
 *  SPORTS PAGE
 * ============================================================================
 *  Hero intro, a dark "classes & services" panel, then a grid of credential
 *  cards that open a detail modal on click.
 * ============================================================================
 */

/* -------------------------------------------------------------------------- */
/*  HERO                                                                       */
/* -------------------------------------------------------------------------- */
.nh-sports-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 84px) clamp(18px, 5vw, 44px);
}

.nh-sports-hero__inner {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.nh-sports-hero__copy {
  flex: 1 1 360px;
  min-width: 280px;
}

.nh-sports-hero__title {
  font-family: var(--nh-serif);
  font-weight: 500;
  font-size: clamp(36px, 6vw, 62px);
  line-height: 1.05;
  color: var(--nh-ink);
  margin-bottom: 18px;
}

.nh-sports-hero__desc {
  font-size: clamp(15px, 1.9vw, 18px);
  color: var(--nh-muted);
  max-width: 440px;
}

.nh-sports-hero__media {
  flex: 1 1 320px;
  min-width: 280px;
}

.nh-sports-hero__img {
  overflow: hidden;
  width: 100%;
  height: clamp(340px, 52vw, 480px);
  box-shadow: var(--nh-shadow-hero);
  border-radius: 22px;
}

.nh-sports-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* -------------------------------------------------------------------------- */
/*  CLASSES (dark section)                                                     */
/* -------------------------------------------------------------------------- */
.nh-classes {
  background: var(--nh-ink);
  color: #fff;
  padding: clamp(52px, 8vw, 104px) clamp(18px, 5vw, 44px);
}

.nh-classes__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.nh-classes__head {
  max-width: 560px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.nh-classes__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--nh-rose);
  margin-bottom: 12px;
}

.nh-classes__title {
  font-family: var(--nh-serif);
  font-weight: 500;
  font-size: clamp(28px, 4.5vw, 46px);
  margin-bottom: 16px;
}

.nh-classes__desc {
  font-size: clamp(14px, 1.7vw, 17px);
  color: rgba(255, 255, 255, 0.65);
}

.nh-classes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
}

.nh-class-card {
  position: relative;
  background: #362a30;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
}

.nh-class-card__premium {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  background: var(--nh-plum);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-start-end-radius: 20px;
  border-end-start-radius: 12px;
}

.nh-class-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(231, 180, 192, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}

.nh-class-card__title {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 600;
  margin-bottom: 10px;
}

.nh-class-card__desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 22px;
}

.nh-class-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--nh-rose);
}

/* -------------------------------------------------------------------------- */
/*  CERTIFICATES                                                               */
/* -------------------------------------------------------------------------- */
.nh-certs {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(52px, 8vw, 104px) clamp(18px, 5vw, 44px);
}

.nh-certs__head {
  max-width: 560px;
  margin-bottom: clamp(32px, 5vw, 48px);
}

.nh-certs__title {
  font-family: var(--nh-serif);
  font-weight: 500;
  font-size: clamp(26px, 4vw, 42px);
  color: var(--nh-ink);
  margin-bottom: 14px;
}

.nh-certs__desc {
  font-size: clamp(14px, 1.7vw, 16px);
  color: var(--nh-muted-2);
}

.nh-certs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2.4vw, 24px);
}

.nh-cert-card {
  text-align: start;
  background: #fff;
  border: 1px solid rgba(58, 47, 52, 0.09);
  border-radius: 20px;
  padding: clamp(22px, 2.6vw, 28px);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--nh-shadow-card);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.nh-cert-card:hover {
  transform: translateY(-4px);
  border-color: var(--nh-rose);
}

.nh-cert-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nh-cert-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--nh-blush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.nh-cert-card__cta {
  font-size: 12px;
  font-weight: 600;
  color: var(--nh-plum);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nh-cert-card__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--nh-ink);
  margin-bottom: 5px;
}

.nh-cert-card__issuer {
  font-size: 13px;
  color: var(--nh-faint);
}
