.north-west-page {
  --nw-ink: #17283a;
  --nw-navy: #183c5a;
  --nw-navy-deep: #102d46;
  --nw-teal: #287d82;
  --nw-teal-soft: #dff0ef;
  --nw-coral: #c55f45;
  --nw-coral-dark: #95442f;
  --nw-sand: #f5efe5;
  --nw-cream: #fcfaf6;
  --nw-paper: #ffffff;
  --nw-line: #d8e0e5;
  --nw-muted: #5c6974;
  --nw-shadow: 0 18px 48px rgba(24, 60, 90, 0.11);
  --nw-radius-lg: 28px;
  --nw-radius-md: 18px;
  --nw-radius-sm: 12px;
  color: var(--nw-ink);
  background: var(--nw-cream);
}

.north-west-page main {
  overflow: hidden;
}

.north-west-page .north-west-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.north-west-page .north-west-kicker {
  margin: 0 0 9px;
  color: var(--nw-coral-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.north-west-page .north-west-section-heading {
  max-width: 770px;
  margin-bottom: 38px;
}

.north-west-page .north-west-section-heading h2,
.north-west-page .north-west-heading-row h2,
.north-west-page .north-west-cost-heading h2,
.north-west-page .north-west-transfer-intro h2,
.north-west-page .north-west-campus-card h2 {
  margin: 0;
  color: var(--nw-navy-deep);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.north-west-page .north-west-section-heading > p:last-child,
.north-west-page .north-west-cost-heading > div > p:last-child,
.north-west-page .north-west-transfer-intro > p:last-child {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--nw-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.north-west-page .north-west-source-link,
.north-west-page .north-west-campus-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  max-width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(24, 60, 90, 0.25);
  border-radius: 999px;
  color: var(--nw-navy-deep);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.north-west-page .north-west-source-link:hover,
.north-west-page .north-west-campus-link:hover {
  border-color: var(--nw-coral);
  background: #fff8f4;
  transform: translateY(-2px);
}

.north-west-page .north-west-source-link:focus-visible,
.north-west-page .north-west-campus-link:focus-visible,
.north-west-page .north-west-alternative-grid a:focus-visible,
.north-west-page .north-west-faq-list summary:focus-visible {
  outline: 3px solid rgba(40, 125, 130, 0.38);
  outline-offset: 4px;
}

/* Program overview */
.north-west-page .north-west-overview {
  position: relative;
  padding: 96px 0 88px;
  background:
    radial-gradient(
      circle at 88% 10%,
      rgba(197, 95, 69, 0.09),
      transparent 23rem
    ),
    var(--nw-cream);
}

.north-west-page .north-west-overview::before {
  position: absolute;
  top: 66px;
  right: -90px;
  width: 250px;
  height: 250px;
  border: 34px solid rgba(40, 125, 130, 0.08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.north-west-page .north-west-heading-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 44px;
}

.north-west-page .north-west-heading-row > div {
  max-width: 760px;
}

.north-west-page .north-west-overview-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 56px;
  align-items: start;
}

.north-west-page .north-west-overview-copy p {
  margin: 0 0 20px;
  color: #344657;
  font-size: 1.05rem;
  line-height: 1.78;
}

.north-west-page .north-west-overview-copy a,
.north-west-page .north-west-approval-note a,
.north-west-page .north-west-cost-context a {
  color: var(--nw-coral-dark);
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.north-west-page .north-west-fact-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--nw-line);
  border-radius: var(--nw-radius-lg);
  background: var(--nw-paper);
  box-shadow: var(--nw-shadow);
}

.north-west-page .north-west-fact-board > div {
  min-width: 0;
  padding: 24px;
  border-right: 1px solid var(--nw-line);
  border-bottom: 1px solid var(--nw-line);
}

.north-west-page .north-west-fact-board > div:nth-child(2n) {
  border-right: 0;
}

.north-west-page .north-west-fact-board > div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.north-west-page .north-west-fact-board dt {
  margin-bottom: 8px;
  color: var(--nw-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.north-west-page .north-west-fact-board dd {
  margin: 0;
  color: var(--nw-navy-deep);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.north-west-page .north-west-approval-note {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 17px;
  align-items: center;
  margin-top: 48px;
  padding: 22px 26px;
  border-left: 5px solid var(--nw-teal);
  border-radius: 0 var(--nw-radius-md) var(--nw-radius-md) 0;
  background: var(--nw-teal-soft);
}

.north-west-page .north-west-approval-note > i {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--nw-teal);
  font-size: 1.1rem;
}

.north-west-page .north-west-approval-note p {
  margin: 0;
  color: #254c51;
  line-height: 1.65;
}

/* Hours and schedule */
.north-west-page .north-west-format {
  padding: 90px 0;
  background: #fff;
}

.north-west-page .north-west-hours-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  gap: 36px;
  align-items: stretch;
}

.north-west-page .north-west-hours-graphic {
  display: grid;
  grid-template-columns: 576fr 274fr 680fr;
  min-height: 350px;
  overflow: hidden;
  border-radius: var(--nw-radius-lg);
  box-shadow: var(--nw-shadow);
}

.north-west-page .north-west-hour-item {
  display: flex;
  min-width: 0;
  padding: 28px 18px;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.north-west-page .north-west-hour-item + .north-west-hour-item {
  border-left: 1px solid rgba(255, 255, 255, 0.36);
}

.north-west-page .north-west-hour-lecture {
  background: var(--nw-navy);
}

.north-west-page .north-west-hour-lab {
  background: var(--nw-coral);
}

.north-west-page .north-west-hour-clinical {
  background: var(--nw-teal);
}

.north-west-page .north-west-hour-number {
  display: block;
  margin-bottom: 7px;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 0.95;
}

.north-west-page .north-west-hour-item > span:last-child {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.3;
}

.north-west-page .north-west-schedule-stack {
  display: grid;
  gap: 18px;
}

.north-west-page .north-west-schedule-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 28px;
  border: 1px solid var(--nw-line);
  border-radius: var(--nw-radius-md);
  background: var(--nw-cream);
}

.north-west-page .north-west-schedule-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: var(--nw-navy);
  font-size: 1.15rem;
}

.north-west-page
  .north-west-schedule-card:nth-child(2)
  .north-west-schedule-icon {
  background: var(--nw-coral);
}

.north-west-page .north-west-schedule-card h3 {
  margin: 1px 0 8px;
  color: var(--nw-navy-deep);
  font-size: 1.08rem;
}

.north-west-page .north-west-schedule-card p {
  margin: 0 0 10px;
  color: #435362;
  line-height: 1.55;
}

.north-west-page .north-west-schedule-card span {
  color: var(--nw-coral-dark);
  font-size: 0.83rem;
  font-weight: 700;
}

.north-west-page .north-west-clarity-box {
  display: grid;
  grid-template-columns: 185px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: 32px;
  padding: 27px 30px;
  border: 1px dashed rgba(24, 60, 90, 0.4);
  border-radius: var(--nw-radius-md);
  background: #f7fafc;
}

.north-west-page .north-west-clarity-label {
  color: var(--nw-navy-deep);
  font-weight: 700;
  line-height: 1.35;
}

.north-west-page .north-west-clarity-box p {
  margin: 0;
  color: #425462;
  line-height: 1.68;
}

/* Five-term course path */
.north-west-page .north-west-curriculum {
  padding: 96px 0 106px;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.04), transparent 45%),
    var(--nw-navy-deep);
}

.north-west-page .north-west-section-heading-light .north-west-kicker {
  color: #f4ad94;
}

.north-west-page .north-west-section-heading-light h2,
.north-west-page .north-west-section-heading-light > p:last-child {
  color: #fff;
}

.north-west-page .north-west-section-heading-light > p:last-child {
  color: #cbd8e1;
}

.north-west-page .north-west-term-path {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.north-west-page .north-west-term-card {
  grid-column: span 2;
  min-width: 0;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--nw-radius-md);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 15px 35px rgba(3, 22, 36, 0.2);
}

.north-west-page .north-west-term-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.north-west-page .north-west-term-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.north-west-page .north-west-term-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 17px;
}

.north-west-page .north-west-term-top span {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--nw-navy-deep);
  background: #f1a98f;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.north-west-page .north-west-term-top strong {
  color: #d5e2e9;
  font-size: 0.82rem;
}

.north-west-page .north-west-term-card h3 {
  min-height: 2.7em;
  margin: 0 0 12px;
  color: #fff;
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.12;
}

.north-west-page .north-west-term-card > p {
  min-height: 8.2em;
  margin: 0 0 23px;
  color: #cbd8e1;
  font-size: 0.92rem;
  line-height: 1.58;
}

.north-west-page .north-west-term-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin: 0;
}

.north-west-page .north-west-term-card dl > div {
  min-width: 0;
  padding: 10px 6px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
}

.north-west-page .north-west-term-card dt {
  margin-bottom: 4px;
  color: #9fb4c2;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.north-west-page .north-west-term-card dd {
  margin: 0;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
}

/* Admission and clearance */
.north-west-page .north-west-admission {
  padding: 96px 0;
  background: var(--nw-sand);
}

.north-west-page .north-west-admission-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
  gap: 30px;
  align-items: start;
}

.north-west-page .north-west-entry-panel,
.north-west-page .north-west-clearance-panel {
  border-radius: var(--nw-radius-lg);
}

.north-west-page .north-west-entry-panel {
  padding: 36px;
  background: #fff;
  box-shadow: var(--nw-shadow);
}

.north-west-page .north-west-entry-panel > h3,
.north-west-page .north-west-clearance-panel > h3 {
  margin: 0 0 28px;
  color: var(--nw-navy-deep);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.75rem;
}

.north-west-page .north-west-entry-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.north-west-page .north-west-entry-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 17px;
  padding-bottom: 27px;
}

.north-west-page .north-west-entry-steps li:not(:last-child)::after {
  position: absolute;
  top: 43px;
  bottom: 0;
  left: 21px;
  width: 2px;
  background: var(--nw-line);
  content: "";
}

.north-west-page .north-west-entry-steps li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--nw-coral);
  font-weight: 800;
}

.north-west-page .north-west-entry-steps h4 {
  margin: 2px 0 7px;
  color: var(--nw-navy-deep);
  font-size: 1.02rem;
}

.north-west-page .north-west-entry-steps p {
  margin: 0;
  color: #536270;
  line-height: 1.6;
}

.north-west-page .north-west-clearance-panel {
  position: sticky;
  top: 24px;
  padding: 36px;
  color: #fff;
  background: var(--nw-teal);
}

.north-west-page .north-west-panel-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 1.35rem;
}

.north-west-page .north-west-clearance-panel > h3 {
  margin-bottom: 12px;
  color: #fff;
}

.north-west-page .north-west-clearance-panel > p {
  margin: 0 0 22px;
  color: #e5f3f2;
  line-height: 1.62;
}

.north-west-page .north-west-clearance-panel ul {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.north-west-page .north-west-clearance-panel li {
  position: relative;
  padding-left: 27px;
  line-height: 1.5;
}

.north-west-page .north-west-clearance-panel li::before {
  position: absolute;
  top: 0.15em;
  left: 0;
  color: #ffd2c4;
  content: "\2713";
  font-weight: 900;
}

.north-west-page .north-west-clearance-footnote {
  margin: 0 !important;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  font-size: 0.84rem;
}

/* Cost */
.north-west-page .north-west-cost {
  padding: 96px 0;
  background: var(--nw-coral);
}

.north-west-page .north-west-cost-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 42px;
}

.north-west-page .north-west-cost-heading > div {
  max-width: 760px;
}

.north-west-page .north-west-cost-heading .north-west-kicker {
  color: #ffe0d4;
}

.north-west-page .north-west-cost-heading h2,
.north-west-page .north-west-cost-heading > div > p:last-child {
  color: #fff;
}

.north-west-page .north-west-source-link-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.north-west-page .north-west-source-link-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.north-west-page .north-west-cost-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 28px;
  align-items: start;
}

.north-west-page .north-west-cost-list {
  margin: 0;
  padding: 14px 28px;
  border-radius: var(--nw-radius-lg);
  background: #fff;
  box-shadow: 0 22px 55px rgba(91, 37, 24, 0.2);
}

.north-west-page .north-west-cost-list > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid #eadfd9;
}

.north-west-page .north-west-cost-list dt {
  color: #455461;
  line-height: 1.35;
}

.north-west-page .north-west-cost-list dd {
  margin: 0;
  color: var(--nw-navy-deep);
  font-weight: 800;
  white-space: nowrap;
}

.north-west-page .north-west-cost-list .north-west-cost-total {
  margin-top: 7px;
  padding: 20px 0 13px;
  border-bottom: 0;
}

.north-west-page .north-west-cost-total dt,
.north-west-page .north-west-cost-total dd {
  color: var(--nw-coral-dark);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
}

.north-west-page .north-west-cost-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.north-west-page .north-west-cost-notes article {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--nw-radius-md);
  background: rgba(111, 39, 23, 0.15);
}

.north-west-page .north-west-cost-notes .north-west-cost-context {
  grid-column: 1 / -1;
  background: #fff;
}

.north-west-page .north-west-cost-notes h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.05rem;
}

.north-west-page .north-west-cost-notes p {
  margin: 0;
  color: #fff5f0;
  line-height: 1.65;
}

.north-west-page .north-west-cost-context h3,
.north-west-page .north-west-cost-context p {
  color: var(--nw-navy-deep);
}

/* Transfer credit */
.north-west-page .north-west-transfer {
  padding: 96px 0;
  background: #fff;
}

.north-west-page .north-west-transfer-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 60px;
  align-items: start;
}

.north-west-page .north-west-transfer-intro {
  position: sticky;
  top: 26px;
}

.north-west-page .north-west-transfer-cards {
  display: grid;
  gap: 17px;
}

.north-west-page .north-west-transfer-cards article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  column-gap: 20px;
  padding: 28px;
  border: 1px solid var(--nw-line);
  border-radius: var(--nw-radius-md);
  background: var(--nw-cream);
}

.north-west-page .north-west-transfer-cards article > i {
  grid-row: 1 / span 2;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 17px;
  color: #fff;
  background: var(--nw-navy);
  font-size: 1.15rem;
}

.north-west-page .north-west-transfer-cards article:nth-child(2) > i {
  background: var(--nw-teal);
}

.north-west-page .north-west-transfer-cards article:nth-child(3) > i {
  background: var(--nw-coral);
}

.north-west-page .north-west-transfer-cards h3 {
  margin: 2px 0 9px;
  color: var(--nw-navy-deep);
  font-size: 1.08rem;
}

.north-west-page .north-west-transfer-cards p,
.north-west-page .north-west-transfer-cards ul {
  grid-column: 2;
  margin: 0;
  color: #52616e;
  line-height: 1.62;
}

.north-west-page .north-west-transfer-cards ul {
  display: grid;
  gap: 7px;
  padding-left: 1.15rem;
}

.north-west-page .north-west-transfer-cards li::marker {
  color: var(--nw-coral);
}

/* Campus and programs */
.north-west-page .north-west-campus {
  padding: 96px 0 105px;
  background: var(--nw-teal-soft);
}

.north-west-page .north-west-campus-grid {
  display: grid;
  grid-template-columns: minmax(310px, 0.75fr) minmax(0, 1.25fr);
  overflow: hidden;
  border-radius: var(--nw-radius-lg);
  background: #fff;
  box-shadow: var(--nw-shadow);
}

.north-west-page .north-west-campus-card {
  padding: 42px;
  color: #fff;
  background: var(--nw-navy-deep);
}

.north-west-page .north-west-campus-card .north-west-kicker {
  color: #f3aa91;
}

.north-west-page .north-west-campus-card h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
}

.north-west-page .north-west-campus-card address {
  margin: 28px 0;
  color: #d7e3ea;
  font-style: normal;
  line-height: 1.7;
}

.north-west-page .north-west-campus-card address strong {
  color: #fff;
}

.north-west-page .north-west-campus-card address a {
  color: #ffd2c3;
  font-weight: 700;
}

.north-west-page .north-west-campus-card .north-west-campus-link {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

.north-west-page .north-west-campus-detail {
  padding: 42px;
}

.north-west-page .north-west-campus-detail > p {
  margin: 0 0 30px;
  color: #455563;
  font-size: 1.02rem;
  line-height: 1.72;
}

.north-west-page .north-west-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.north-west-page .north-west-service-grid > div {
  min-width: 0;
  padding: 20px;
  border-radius: 14px;
  background: #f3f8f8;
}

.north-west-page .north-west-service-grid i {
  margin-bottom: 13px;
  color: var(--nw-coral);
  font-size: 1.05rem;
}

.north-west-page .north-west-service-grid h3 {
  margin: 0 0 6px;
  color: var(--nw-navy-deep);
  font-size: 0.98rem;
}

.north-west-page .north-west-service-grid p {
  margin: 0;
  color: #64727e;
  font-size: 0.88rem;
  line-height: 1.5;
}

.north-west-page .north-west-other-programs {
  margin-top: 82px;
}

.north-west-page .north-west-program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.north-west-page .north-west-program-grid article {
  min-width: 0;
  padding: 25px;
  border-top: 4px solid var(--nw-coral);
  border-radius: 0 0 var(--nw-radius-md) var(--nw-radius-md);
  background: #fff;
}

.north-west-page .north-west-program-grid span {
  display: block;
  margin-bottom: 13px;
  color: var(--nw-teal);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.3;
  text-transform: uppercase;
}

.north-west-page .north-west-program-grid h3 {
  margin: 0 0 10px;
  color: var(--nw-navy-deep);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.12;
}

.north-west-page .north-west-program-grid p {
  margin: 0;
  color: #5b6975;
  font-size: 0.9rem;
  line-height: 1.58;
}

/* Other Bakersfield programs */
.north-west-page .north-west-alternatives {
  padding: 96px 0;
  background: var(--nw-cream);
}

.north-west-page .north-west-alternative-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 17px;
}

.north-west-page .north-west-alternative-grid article {
  display: flex;
  grid-column: span 2;
  min-width: 0;
  min-height: 290px;
  padding: 27px;
  border: 1px solid var(--nw-line);
  border-radius: var(--nw-radius-md);
  background: #fff;
  flex-direction: column;
}

.north-west-page .north-west-alternative-grid article:nth-child(4) {
  grid-column: 2 / span 2;
}

.north-west-page .north-west-alternative-grid article:nth-child(5) {
  grid-column: 4 / span 2;
}

.north-west-page .north-west-alternative-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--nw-coral-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.north-west-page .north-west-alternative-grid h3 {
  margin: 0;
  color: var(--nw-navy-deep);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.1;
}

.north-west-page .north-west-alternative-grid p {
  margin: 18px 0 22px;
  color: #596875;
  line-height: 1.6;
}

.north-west-page .north-west-alternative-grid a {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  min-height: 43px;
  margin-top: auto;
  padding: 10px 14px;
  align-items: center;
  border-radius: 10px;
  color: #fff;
  background: var(--nw-navy);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.north-west-page .north-west-alternative-grid a:hover {
  background: var(--nw-coral-dark);
}

.north-west-page .north-west-alternative-regional {
  border-color: #b9d7d6 !important;
  background: #eff8f7 !important;
}

/* FAQ */
.north-west-page .north-west-faq {
  padding: 96px 0;
  background: #fff;
}

.north-west-page .north-west-faq-shell {
  max-width: 960px;
}

.north-west-page .north-west-faq-list {
  display: grid;
  gap: 12px;
}

.north-west-page .north-west-faq-list details {
  overflow: hidden;
  border: 1px solid var(--nw-line);
  border-radius: 15px;
  background: var(--nw-cream);
}

.north-west-page .north-west-faq-list details[open] {
  border-color: rgba(40, 125, 130, 0.48);
  background: #fff;
  box-shadow: 0 12px 28px rgba(24, 60, 90, 0.08);
}

.north-west-page .north-west-faq-list summary {
  display: flex;
  min-height: 62px;
  padding: 19px 22px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--nw-navy-deep);
  cursor: pointer;
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
}

.north-west-page .north-west-faq-list summary::-webkit-details-marker {
  display: none;
}

.north-west-page .north-west-faq-list summary i {
  flex: 0 0 auto;
  color: var(--nw-coral);
  transition: transform 180ms ease;
}

.north-west-page .north-west-faq-list details[open] summary i {
  transform: rotate(45deg);
}

.north-west-page .north-west-faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: #52616e;
  line-height: 1.7;
}

/* Shared school search helper */
.north-west-page #resultsInfo,
.north-west-page #paginationControls,
.north-west-page #noResults {
  display: none;
}

.north-west-page .north-west-distance-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.north-west-page .north-west-distance-row > input[type="number"] {
  min-width: 0;
  flex: 1 1 130px;
}

.north-west-page .north-west-distance-row > label {
  display: flex;
  flex: 0 1 auto;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.north-west-page .program-card,
.north-west-page .program-card * {
  min-width: 0;
}

.north-west-page .program-card a,
.north-west-page .filter-btn,
.north-west-page .pagination-btn {
  max-width: 100%;
  overflow-wrap: anywhere;
}

@media (max-width: 1024px) {
  .north-west-page .north-west-overview-grid,
  .north-west-page .north-west-hours-layout,
  .north-west-page .north-west-admission-grid,
  .north-west-page .north-west-cost-grid,
  .north-west-page .north-west-transfer-shell,
  .north-west-page .north-west-campus-grid {
    grid-template-columns: 1fr;
  }

  .north-west-page .north-west-fact-board {
    max-width: 720px;
  }

  .north-west-page .north-west-schedule-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .north-west-page .north-west-clearance-panel,
  .north-west-page .north-west-transfer-intro {
    position: static;
  }

  .north-west-page .north-west-transfer-shell {
    gap: 35px;
  }

  .north-west-page .north-west-campus-card,
  .north-west-page .north-west-campus-detail {
    padding: 38px;
  }

  .north-west-page .north-west-program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .north-west-page .north-west-heading-row,
  .north-west-page .north-west-cost-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .north-west-page .north-west-term-path,
  .north-west-page .north-west-alternative-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .north-west-page .north-west-term-card,
  .north-west-page .north-west-term-card:nth-child(4),
  .north-west-page .north-west-term-card:nth-child(5),
  .north-west-page .north-west-alternative-grid article,
  .north-west-page .north-west-alternative-grid article:nth-child(4),
  .north-west-page .north-west-alternative-grid article:nth-child(5) {
    grid-column: auto;
  }

  .north-west-page .north-west-term-card > p {
    min-height: 0;
  }

  .north-west-page .north-west-clarity-box {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .north-west-page .north-west-cost-notes {
    grid-template-columns: 1fr;
  }

  .north-west-page .north-west-cost-notes .north-west-cost-context {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .north-west-page .north-west-shell {
    width: min(100% - 28px, 1160px);
  }

  .north-west-page .north-west-overview,
  .north-west-page .north-west-format,
  .north-west-page .north-west-curriculum,
  .north-west-page .north-west-admission,
  .north-west-page .north-west-cost,
  .north-west-page .north-west-transfer,
  .north-west-page .north-west-campus,
  .north-west-page .north-west-alternatives,
  .north-west-page .north-west-faq {
    padding: 68px 0;
  }

  .north-west-page .north-west-section-heading {
    margin-bottom: 28px;
  }

  .north-west-page .north-west-source-link,
  .north-west-page .north-west-campus-link {
    width: 100%;
    border-radius: 12px;
  }

  .north-west-page .north-west-fact-board {
    grid-template-columns: 1fr;
  }

  .north-west-page .north-west-fact-board > div,
  .north-west-page .north-west-fact-board > div:nth-child(2n),
  .north-west-page .north-west-fact-board > div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--nw-line);
  }

  .north-west-page .north-west-fact-board > div:last-child {
    border-bottom: 0;
  }

  .north-west-page .north-west-approval-note {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .north-west-page .north-west-hours-graphic {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .north-west-page .north-west-hour-item {
    min-height: 120px;
    padding: 22px;
  }

  .north-west-page .north-west-hour-item + .north-west-hour-item {
    border-top: 1px solid rgba(255, 255, 255, 0.36);
    border-left: 0;
  }

  .north-west-page .north-west-schedule-stack,
  .north-west-page .north-west-program-grid,
  .north-west-page .north-west-service-grid,
  .north-west-page .north-west-term-path,
  .north-west-page .north-west-alternative-grid {
    grid-template-columns: 1fr;
  }

  .north-west-page .north-west-schedule-card {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 22px;
  }

  .north-west-page .north-west-schedule-icon {
    width: 46px;
    height: 46px;
  }

  .north-west-page .north-west-clarity-box,
  .north-west-page .north-west-entry-panel,
  .north-west-page .north-west-clearance-panel,
  .north-west-page .north-west-campus-card,
  .north-west-page .north-west-campus-detail {
    padding: 24px;
  }

  .north-west-page .north-west-term-card h3 {
    min-height: 0;
  }

  .north-west-page .north-west-cost-list {
    padding: 12px 20px;
  }

  .north-west-page .north-west-cost-list > div {
    gap: 12px;
  }

  .north-west-page .north-west-cost-list dt {
    font-size: 0.9rem;
  }

  .north-west-page .north-west-cost-total dt,
  .north-west-page .north-west-cost-total dd {
    font-size: 1.45rem;
  }

  .north-west-page .north-west-transfer-cards article {
    grid-template-columns: 1fr;
    row-gap: 14px;
    padding: 23px;
  }

  .north-west-page .north-west-transfer-cards article > i {
    grid-row: auto;
  }

  .north-west-page .north-west-transfer-cards p,
  .north-west-page .north-west-transfer-cards ul {
    grid-column: 1;
  }

  .north-west-page .north-west-alternative-grid article {
    min-height: 0;
  }

  .north-west-page .north-west-alternative-grid a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .north-west-page .north-west-faq-list summary {
    gap: 15px;
    padding: 18px;
  }

  .north-west-page .north-west-faq-list details p {
    padding: 0 18px 20px;
  }

  .north-west-page .north-west-distance-row {
    align-items: stretch;
    flex-direction: column;
  }

  .north-west-page .north-west-distance-row > input[type="number"] {
    width: 100%;
    flex: 0 0 auto;
  }

  .north-west-page .north-west-distance-row > label {
    min-height: 40px;
    white-space: normal;
  }
}

@media (max-width: 400px) {
  .north-west-page .north-west-cost-list > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .north-west-page .north-west-cost-list dd {
    white-space: normal;
  }

  .north-west-page .north-west-term-card dl {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .north-west-page .north-west-source-link,
  .north-west-page .north-west-campus-link,
  .north-west-page .north-west-faq-list summary i {
    transition: none;
  }
}
