:root {
  --hce-navy: #003750;
  --hce-blue: #006fa6;
  --hce-cyan: #00a7c7;
  --hce-ink: #17313f;
  --hce-paper: #f4f8fa;
  --hce-gold: #e9a600;
}

.hce-program {
  color: var(--hce-ink);
  background: #fff;
}

.hce-program__hero,
.hce-program__grid,
.hce-program__process {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hce-program__hero {
  padding: clamp(56px, 8vw, 104px) 0;
}

.hce-program__eyebrow {
  margin: 0 0 12px;
  color: var(--hce-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hce-program h1 {
  max-width: 900px;
  margin: 0;
  color: var(--hce-navy);
  font-size: clamp(2.45rem, 6vw, 5rem);
  line-height: 1.02;
}

.hce-program__lead {
  max-width: 800px;
  margin: 24px 0 32px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.hce-program__button {
  display: inline-block;
  padding: 14px 22px;
  border: 2px solid var(--hce-cyan);
  background: var(--hce-navy);
  color: #fff !important;
  font-weight: 800;
  text-decoration: none;
}

.hce-program__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  padding: 2px;
  background: var(--hce-cyan);
}

.hce-program__grid article {
  min-height: 230px;
  padding: clamp(28px, 5vw, 54px);
  background: var(--hce-navy);
  color: #fff;
}

.hce-program__grid h2,
.hce-program__process h2 {
  margin-top: 0;
  color: inherit;
}

.hce-program__grid p,
.hce-program__process li {
  font-size: 1.04rem;
  line-height: 1.65;
}

.hce-program__process {
  margin-top: 50px;
  margin-bottom: 70px;
  padding: clamp(30px, 6vw, 62px);
  background: var(--hce-paper);
  border-top: 6px solid var(--hce-gold);
}

.hce-program__process ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin: 28px 0;
  padding-left: 1.2rem;
}

.hce-program__text-link {
  color: var(--hce-navy);
  font-weight: 800;
}

.hce-legal-heading {
  margin-bottom: 1.25rem;
  color: var(--hce-navy);
}

.hce-form-privacy,
.hce-newsletter-note {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  line-height: 1.5;
}

.hce-interest-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hce-interest-form__grid label,
.hce-interest-form__grid input,
.hce-interest-form__grid select,
.hce-interest-form__grid textarea {
  width: 100%;
}

.hce-interest-form__wide {
  grid-column: 1 / -1;
}

.hce-interest-form__privacy {
  padding: 14px;
  background: #eef5f7;
  border-left: 4px solid var(--hce-cyan);
}

@media (max-width: 760px) {
  .hce-program__grid,
  .hce-program__process ol,
  .hce-interest-form__grid {
    grid-template-columns: 1fr;
  }

  .hce-interest-form__wide {
    grid-column: auto;
  }

  .hce-program__hero,
  .hce-program__grid,
  .hce-program__process {
    width: min(100% - 28px, 1180px);
  }
}

