/* ===============================
 COLLEGE MENTORSHIP NAV PAGE
 =============================== */

.college-nav-page {
  background: var(--mint);
}

/* HERO */

.college-nav-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 24%, rgba(90, 157, 67, 0.18), transparent 34%),
    radial-gradient(circle at 14% 12%, rgba(77, 140, 216, 0.11), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--mint) 100%);
  padding: 38px 0 70px;
}

.college-nav-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 54px;
  align-items: center;
}

.college-nav-hero-copy h1 {
  max-width: 830px;
  margin: 0 0 20px;
  color: var(--deep-navy);
  font-size: clamp(2.75rem, 5vw, 4.65rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.college-nav-hero-copy h1 span,
.college-nav-section-head h2 span {
  color: var(--green);
}

.college-nav-hero-copy p {
  max-width: 760px;
  margin: 0 0 28px;
  color: var(--deep-navy);
  font-size: clamp(1.16rem, 2vw, 1.48rem);
  line-height: 1.32;
  font-weight: 850;
}

.college-nav-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.college-nav-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.college-nav-hero-image img {
  width: 100%;
  max-width: 620px;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(3, 20, 36, 0.16);
}

/* GENERAL */

.college-nav-section {
  padding: 84px 0;
}

.college-nav-dark {
  background: var(--navy);
  color: #fff;
}

.college-nav-soft {
  background: var(--mint);
}

.college-nav-white {
  background: #fff;
}

.college-nav-light {
  background: #e7e4c7;
}

.college-nav-section-head {
  max-width: 860px;
  margin: 0 auto 36px;
}

.college-nav-section-head h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 18px;
}

.college-nav-section-head p {
  font-size: 1.12rem;
  margin: 0 auto;
  max-width: 780px;
  color: rgba(16, 35, 58, 0.76);
}

.college-nav-dark .college-nav-section-head p {
  color: rgba(255, 255, 255, 0.78);
}

.college-nav-dark .eyebrow {
  color: var(--lime);
}

.college-nav-dark .eyebrow.cream {
  color: #f0e7b4;
}

/* PROGRAM GRID */

.college-nav-program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}

.college-nav-program-grid article {
  padding: 34px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.college-nav-program-grid article.featured {
  background: rgba(59, 127, 50, 0.16);
  border-color: rgba(143, 207, 95, 0.34);
}

.college-nav-program-grid span {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 0 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(143, 207, 95, 0.24);
  font-size: 2rem;
}

.college-nav-program-grid h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.6rem;
}

.college-nav-program-grid p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.76);
}

.college-nav-program-grid ul,
.college-nav-choice-grid ul {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 11px;
}

.college-nav-program-grid li,
.college-nav-choice-grid li {
  position: relative;
  padding-left: 28px;
  font-weight: 800;
}

.college-nav-program-grid li {
  color: rgba(255, 255, 255, 0.86);
}

.college-nav-choice-grid li {
  color: rgba(16, 35, 58, 0.86);
}

.college-nav-program-grid li::before,
.college-nav-choice-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 900;
}

.college-nav-choice-grid li::before {
  color: var(--green);
}

/* PROBLEMS */

.college-nav-problem-grid,
.college-nav-help-grid,
.college-nav-included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}

.college-nav-problem-grid article {
  padding: 28px 24px;
  border-radius: 22px;
  background: var(--mint);
  border: 1px solid rgba(16, 35, 58, 0.08);
  text-align: center;
  box-shadow: 0 16px 34px rgba(3, 20, 36, 0.06);
}

.college-nav-problem-grid span {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(59, 127, 50, 0.16);
  font-size: 1.8rem;
}

.college-nav-problem-grid h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.3rem;
}

.college-nav-problem-grid p {
  margin: 0;
  color: rgba(16, 35, 58, 0.72);
}

/* HELP GRID */

.college-nav-help-grid article {
  padding: 28px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(16, 35, 58, 0.08);
  box-shadow: 0 16px 34px rgba(3, 20, 36, 0.06);
}

.college-nav-help-grid h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.35rem;
}

.college-nav-help-grid p {
  margin: 0;
  color: rgba(16, 35, 58, 0.74);
}

/* INCLUDED */

.college-nav-included-grid article {
  padding: 28px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}

.college-nav-included-grid span {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(143, 207, 95, 0.24);
  font-size: 1.8rem;
}

.college-nav-included-grid h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.28rem;
}

.college-nav-included-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

/* LIFE VISUAL */

.college-nav-life-visual-section {
  background:
    radial-gradient(circle at 14% 16%, rgba(77, 140, 216, 0.1), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--mint) 100%);
  padding: 78px 0;
}

.college-nav-life-visual-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px;
  border-radius: 34px;
  background: #ffffff;
  border: 1px solid rgba(16, 35, 58, 0.08);
  box-shadow: 0 24px 70px rgba(3, 20, 36, 0.14);
}

.college-nav-life-visual {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
}

/* SPORTS */

.college-nav-sports-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}

.college-nav-sports-grid span {
  display: inline-flex;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--mint);
  border: 1px solid rgba(16, 35, 58, 0.08);
  color: var(--navy);
  font-weight: 900;
}

/* CHOICE */

.college-nav-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 960px;
  margin: 0 auto;
}

.college-nav-choice-grid article {
  padding: 30px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(16, 35, 58, 0.08);
  box-shadow: 0 16px 36px rgba(3, 20, 36, 0.06);
}

.college-nav-choice-grid h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 1.35rem;
}

.college-nav-choice-grid a {
  display: inline-flex;
  margin-top: 4px;
  color: var(--green);
  font-weight: 900;
}

/* FINAL */

.college-nav-final {
  background: var(--olive);
}

.college-nav-final h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.college-nav-final p {
  max-width: 680px;
  margin: 0 auto 26px;
  color: rgba(16, 35, 58, 0.78);
  font-size: 1.12rem;
}

.college-nav-final-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* RESPONSIVE */

@media (max-width: 1020px) {
  .college-nav-hero-grid,
  .college-nav-program-grid,
  .college-nav-life-grid,
  .college-nav-choice-grid {
    grid-template-columns: 1fr;
  }

  .college-nav-hero-copy {
    text-align: center;
  }

  .college-nav-hero-actions {
    justify-content: center;
  }

  .college-nav-problem-grid,
  .college-nav-help-grid,
  .college-nav-included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .college-nav-hero {
    padding: 28px 0 54px;
  }

  .college-nav-hero-copy h1 {
    font-size: clamp(2.25rem, 10vw, 3.45rem);
  }

  .college-nav-hero-copy p {
    font-size: 1.08rem;
  }

  .college-nav-section {
    padding: 58px 0;
  }

  .college-nav-problem-grid,
  .college-nav-help-grid,
  .college-nav-included-grid {
    grid-template-columns: 1fr;
  }

  .college-nav-program-grid article,
  .college-nav-life-card,
  .college-nav-choice-grid article {
    padding: 24px;
  }

  .college-nav-hero-actions,
  .college-nav-final-actions {
    flex-direction: column;
  }

  .college-nav-hero-actions .btn,
  .college-nav-final-actions .btn {
    width: 100%;
  }
}

/* INNER CIRCLE BLOCK */

.college-nav-inner-circle {
  background:
    radial-gradient(circle at 82% 24%, rgba(143, 207, 95, 0.16), transparent 30%),
    linear-gradient(135deg, var(--deep-navy), var(--navy));
  color: #fff;
}

.college-nav-inner-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.college-nav-inner-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
  color: #fff;
}

.college-nav-inner-copy p {
  margin: 0 0 18px;
  max-width: 740px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.college-nav-inner-copy ul {
  list-style: none;
  padding: 0;
  margin: 26px 0 28px;
  display: grid;
  gap: 12px;
}

.college-nav-inner-copy li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.college-nav-inner-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 900;
}

.college-nav-inner-card {
  padding: 36px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.college-nav-inner-card span {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(143, 207, 95, 0.12);
  border: 1px solid rgba(143, 207, 95, 0.3);
  font-size: 2rem;
}

.college-nav-inner-card h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1.75rem;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.college-nav-inner-card p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.78);
}

.college-nav-inner-card small {
  display: inline-flex;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(143, 207, 95, 0.12);
  color: var(--lime);
  font-weight: 900;
}

@media (max-width: 1020px) {
  .college-nav-inner-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .college-nav-inner-card {
    padding: 24px;
  }

  .college-nav-inner-copy .btn {
    width: 100%;
  }
}

/* INNER CIRCLE FEATURES */

.college-nav-inner-features {
  display: grid;
  gap: 16px;
  margin: 22px 0 24px;
}

.college-nav-inner-features div {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.college-nav-inner-features strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.college-nav-inner-features small {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.3;
}