/* Impact NC Hockey program page */
.hockey-page {
  --hockey-navy: #081a2d;
  --hockey-blue: #12385c;
  --hockey-green: #30a15f;
  --hockey-ice: #eef7fb;
  --hockey-line: #b9d4e2;
  background: #f8fbfc;
}

.hockey-header {
  background: rgba(248, 251, 252, 0.92);
}

.hockey-header .nav-dropdown-menu a[aria-current='page'] {
  color: var(--hockey-green);
  background: #e3f3e9;
  font-weight: 700;
}

.hockey-hero {
  position: relative;
  min-height: clamp(620px, 82vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--hockey-navy);
}

.hockey-hero-media,
.hockey-hero-scrim {
  position: absolute;
  inset: 0;
}

.hockey-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 50%;
}

.hockey-hero-scrim {
  background:
    linear-gradient(90deg, rgba(5, 19, 34, 0.94) 0%, rgba(5, 19, 34, 0.78) 38%, rgba(5, 19, 34, 0.25) 70%, rgba(5, 19, 34, 0.08) 100%),
    linear-gradient(0deg, rgba(5, 19, 34, 0.72) 0%, rgba(5, 19, 34, 0) 45%);
}

.hockey-hero-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(5rem, 10vw, 8rem);
}

.hockey-arrival .hockey-hero-media img {
  animation: hockey-hero-arrival 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hockey-arrival .hockey-hero-content > * {
  opacity: 0;
  transform: translateY(24px);
}

.hockey-arrival-reveal .hockey-hero-content > * {
  animation: hockey-content-arrival 650ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hockey-arrival-reveal .hockey-hero-content > :nth-child(2) {
  animation-delay: 70ms;
}

.hockey-arrival-reveal .hockey-hero-content > :nth-child(3) {
  animation-delay: 130ms;
}

.hockey-arrival-reveal .hockey-hero-content > :nth-child(4) {
  animation-delay: 190ms;
}

.hockey-arrival-reveal .hockey-hero-content > :nth-child(5) {
  animation-delay: 250ms;
}

@keyframes hockey-hero-arrival {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

@keyframes hockey-content-arrival {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hockey-kicker {
  margin-bottom: var(--space-5);
  color: #a8d4ba;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hockey-hero h1 {
  max-width: 760px;
  margin-bottom: var(--space-4);
  color: #fff;
  font-size: clamp(3.5rem, 2.2rem + 5vw, 6.7rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hockey-hero h1 span {
  color: #63c68a;
}

.hockey-tagline {
  max-width: 38ch;
  margin-bottom: var(--space-5);
  color: #dff2e7;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 1rem + 1vw, 1.8rem);
  font-style: italic;
}

.hockey-intro {
  max-width: 53ch;
  margin-bottom: var(--space-8);
  color: rgba(255, 255, 255, 0.86);
  font-size: var(--text-lg);
}

.hockey-ice-line {
  position: absolute;
  right: -5%;
  bottom: 44px;
  left: -5%;
  z-index: 2;
  height: 3px;
  background: rgba(48, 161, 95, 0.78);
  transform: rotate(-1deg);
}

.hockey-approach {
  background: #f8fbfc;
}

.hockey-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(var(--space-8), 7vw, var(--space-20));
  align-items: end;
  margin-bottom: var(--space-12);
}

.hockey-heading-row .section-title {
  margin-bottom: 0;
  color: var(--hockey-navy);
}

.hockey-eyebrow {
  color: #1e7345;
  background: #e3f3e9;
}

.hockey-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--hockey-line);
  border-bottom: 1px solid var(--hockey-line);
}

.hockey-value {
  min-height: 280px;
  padding: var(--space-8);
  border-right: 1px solid var(--hockey-line);
}

.hockey-value:last-child {
  border-right: 0;
}

.hockey-value-num {
  display: block;
  margin-bottom: var(--space-12);
  color: var(--hockey-green);
  font-size: 0.8rem;
  font-weight: 800;
}

.hockey-value h3 {
  margin-bottom: var(--space-3);
  color: var(--hockey-navy);
  font-size: 1.35rem;
}

.hockey-value p {
  color: #536778;
  font-size: 0.98rem;
}

.hockey-statement {
  padding-block: clamp(var(--space-16), 9vw, var(--space-24));
  color: #fff;
  background: var(--hockey-blue);
}

.hockey-statement-inner {
  display: grid;
  grid-template-columns: 0.45fr 1.35fr 1fr;
  gap: clamp(var(--space-6), 5vw, var(--space-16));
  align-items: start;
}

.hockey-statement-label {
  color: #70d197;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hockey-statement h2 {
  color: #fff;
  font-size: var(--text-2xl);
}

.hockey-statement-inner > p:last-child {
  color: #c9d9e4;
}

.hockey-interest {
  color: #fff;
  background: var(--hockey-navy);
}

.hockey-interest-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: clamp(var(--space-10), 8vw, var(--space-24));
  align-items: center;
}

.hockey-interest-copy h2 {
  margin-bottom: var(--space-5);
  color: #fff;
  font-size: var(--text-2xl);
}

.hockey-interest-copy p {
  color: #bdcdd9;
  font-size: var(--text-lg);
}

.hockey-eyebrow-light {
  color: #98dfb4;
  background: rgba(48, 161, 95, 0.18);
  border: 1px solid rgba(112, 209, 151, 0.25);
}

.hockey-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  padding: clamp(var(--space-6), 5vw, var(--space-10));
  color: var(--hockey-navy);
  background: #f8fbfc;
  border-top: 4px solid var(--hockey-green);
  border-radius: var(--radius-md);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.hockey-form .field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hockey-form .field-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hockey-form label {
  color: var(--hockey-navy);
  font-size: 0.85rem;
  font-weight: 700;
}

.hockey-form input {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.85rem;
  background: #fff;
  border: 1px solid #b9cad4;
  border-radius: var(--radius-sm);
}

.hockey-form input:focus {
  border-color: var(--hockey-green);
  box-shadow: 0 0 0 3px rgba(48, 161, 95, 0.14);
  outline: none;
}

.hockey-submit,
.hockey-form-note,
.hockey-form .form-feedback {
  grid-column: 1 / -1;
}

.hockey-submit {
  margin-top: var(--space-2);
  color: #fff;
  background: var(--hockey-green);
  border-color: var(--hockey-green);
}

.hockey-submit:hover {
  color: #fff;
  background: #267e4b;
  border-color: #267e4b;
}

.hockey-form-note {
  color: #647584;
  font-size: 0.76rem;
  text-align: center;
}

.hockey-form .form-feedback {
  min-height: 1.4em;
  margin: 0;
  text-align: center;
}

.hockey-footer {
  padding-block: var(--space-10);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hockey-footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr auto;
  gap: var(--space-8);
  align-items: center;
}

.hockey-footer-brand .brand-name {
  color: #fff;
}

.hockey-footer-inner > p {
  color: #8ea3b3;
  font-size: 0.85rem;
}

.hockey-footer-inner > p:last-child {
  grid-column: 1 / -1;
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hockey-footer-links {
  display: flex;
  gap: var(--space-5);
  white-space: nowrap;
}

.hockey-footer-links a {
  color: #c5d3dd;
  font-size: 0.85rem;
}

.hockey-footer-links a:hover {
  color: #70d197;
}

@media (max-width: 900px) {
  .hockey-heading-row,
  .hockey-statement-inner,
  .hockey-interest-inner {
    grid-template-columns: 1fr;
  }

  .hockey-values {
    grid-template-columns: 1fr;
  }

  .hockey-value {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--hockey-line);
  }

  .hockey-value:last-child {
    border-bottom: 0;
  }

  .hockey-value-num {
    margin-bottom: var(--space-8);
  }

  .hockey-interest-inner {
    max-width: 680px;
    margin-inline: auto;
  }

  .hockey-footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .hockey-footer-links {
    justify-content: flex-end;
  }
}

@media (max-width: 640px) {
  .hockey-hero {
    min-height: 680px;
    align-items: flex-end;
  }

  .hockey-hero-media img {
    object-position: 64% 50%;
  }

  .hockey-hero-scrim {
    background: linear-gradient(0deg, rgba(5, 19, 34, 0.97) 0%, rgba(5, 19, 34, 0.72) 58%, rgba(5, 19, 34, 0.22) 100%);
  }

  .hockey-hero h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .hockey-form {
    grid-template-columns: 1fr;
  }

  .hockey-form .field,
  .hockey-submit,
  .hockey-form-note,
  .hockey-form .form-feedback {
    grid-column: 1;
  }

  .hockey-footer-inner {
    grid-template-columns: 1fr;
  }

  .hockey-footer-links {
    justify-content: flex-start;
  }

  .hockey-footer-inner > p:last-child {
    grid-column: 1;
  }
}
