.pathway-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pathway-card-heading { margin: clamp(34px, 6vh, 70px) 0 28px; }
.pathway-card-heading small {
  display: block;
  margin-bottom: 10px;
  color: #8796aa;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.pathway-card-heading h2 {
  margin: 0;
  color: #fff;
  font: 700 clamp(2.6rem, 4vw, 4.8rem)/.94 'Manrope', sans-serif;
  letter-spacing: -.065em;
}

.pathway-choice { display: grid; gap: 10px; }
.pathway-choice > a {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  min-height: 78px;
  padding: 14px 17px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.pathway-choice > a:hover {
  transform: translateX(4px);
  border-color: rgba(114,216,255,.4);
  background: rgba(255,255,255,.075);
}
.pathway-choice > a > span { color: #64758d; font-size: .68rem; }
.pathway-choice small { display: block; margin-bottom: 4px; color: #8c9cb1; font-size: .68rem; }
.pathway-choice strong { color: #fff; font: 600 1rem 'Manrope', sans-serif; }
.pathway-choice > a > i { color: #72d8ff; font-style: normal; }
.pathway-note { margin: 20px 0 0; color: #75869c; font-size: .72rem; }

.pathway-split { align-items: stretch; }
.pathway-split .feature-panel {
  height: 100%;
  padding: 0;
  overflow: hidden;
  justify-content: flex-start;
}
.pathway-split .panel-body {
  flex: 1 1 auto;
  padding: clamp(28px, 4vw, 52px);
  display: grid;
  grid-template-rows: 70px auto auto auto 1fr;
  align-content: start;
}
.pathway-split .panel-icon { position: static; margin: 0 0 22px; }
.pathway-split .panel-body .eyebrow { align-self: end; min-height: 2.5em; margin: 0 0 14px; }
.pathway-split .panel-body h2 { min-height: 3.1em; margin: 0 0 22px; }
.pathway-split .panel-body p:not(.eyebrow) { min-height: 5.2em; margin: 0; }
.pathway-split .panel-body > a { align-self: end; margin-top: 24px; }
.pathway-split .panel-photo {
  width: 100%;
  height: clamp(190px, 24vw, 320px);
  margin: 0;
  flex: 0 0 auto;
  align-self: stretch;
  overflow: hidden;
}
.pathway-split .panel-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.student-panel .panel-photo img { object-position: center 42%; }
.entrepreneur-panel .panel-photo img { object-position: center 48%; }

.enterprise-mark {
  min-height: clamp(190px, 24vw, 320px);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-content: center;
  gap: 12px;
  background: radial-gradient(circle at 50% 50%, rgba(255,197,92,.28), transparent 42%), linear-gradient(145deg,#20283a,#0b1423);
}
.enterprise-mark span {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  color: rgba(255,255,255,.82);
  font-size: .78rem;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.pathway-photo {
  position: relative;
  max-width: 1320px;
  height: clamp(280px, 42vw, 550px);
  margin: 0 auto 30px;
  overflow: hidden;
  border-radius: 34px;
}
.pathway-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pathway-photo::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 55%,rgba(7,17,31,.72)); }
.pathway-photo figcaption {
  position: absolute;
  z-index: 1;
  left: 30px;
  bottom: 26px;
  color: #fff;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pathway-photo figcaption span { margin-right: 12px; color: #72d8ff; }
.two-pathway-columns { grid-template-columns: repeat(2,minmax(0,1fr)); }
.two-pathway-columns .service-column h2 { max-width: 520px; }

@media (max-width: 900px) {
  .pathway-card-heading { margin: 30px 0 22px; }
  .two-pathway-columns { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .pathway-card-heading h2 { font-size: 2.35rem; }
  .pathway-choice > a { min-height: 66px; }
  .pathway-split .panel-body {
    padding: 28px 22px 34px;
    grid-template-rows: auto;
  }
  .pathway-split .panel-icon { margin-bottom: 24px; }
  .pathway-split .panel-body .eyebrow,
  .pathway-split .panel-body h2,
  .pathway-split .panel-body p:not(.eyebrow) { min-height: 0; }
  .enterprise-mark { min-height: 190px; padding: 22px; }
  .enterprise-mark span { padding: 13px 8px; font-size: .65rem; }
  .pathway-photo { width: calc(100% - 36px); height: 260px; border-radius: 24px; }
  .pathway-photo figcaption { left: 20px; bottom: 18px; font-size: .68rem; }
}

@media (prefers-reduced-motion: reduce) {
  .pathway-choice > a { transition: none; }
}
