/* =========================================================
   UNITED HEALTHCARE — Design System (Emory-inspired layout)
   - Preserves original color scheme & typography
   - Simple default cursor
   - Editorial cards · curved hero · clean grids
   ========================================================= */

:root {
  /* Ink scale */
  --ink:       #0B1236;
  --ink-2:     #161e4a;
  --ink-3:     #2a3463;
  --navy:      #3F68B3;
  --navy-soft: #7a96c9;

  /* Accent */
  --rose:      #F2175D;
  --rose-soft: #fbe4ec;
  --rose-deep: #c8124a;

  /* Surfaces */
  --paper:    #FAFAF6;
  --paper-2:  #F3F0E8;
  --cream:    #ECE6D6;
  --bone:     #E8E2D3;
  --white:    #FFFFFF;
  --off:      #F7F6F1;

  /* Lines & states */
  --line:     rgba(11, 18, 54, 0.10);
  --line-2:   rgba(11, 18, 54, 0.18);
  --mute:     rgba(11, 18, 54, 0.58);
  --mute-2:   rgba(11, 18, 54, 0.40);

  /* Type */
  --serif:  "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans:   "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:   "JetBrains Mono", ui-monospace, monospace;

  /* Rhythm */
  --container-max: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius-sm: 10px;
  --radius:    14px;
  --radius-lg: 22px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --nav-h: 124px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  cursor: auto;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--ink); color: var(--paper); }

.uh-wrap {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------------------------------------------------------
   Typography
   --------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.5rem); }
h4 { font-size: clamp(1rem, 1.3vw, 1.15rem); }

.serif-italic { font-style: italic; font-weight: 300; color: var(--ink-3); }

.section-title {
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 12px;
  max-width: min(48ch, 100%);
  text-wrap: balance;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--ink);
  display: inline-block;
  flex-shrink: 0;
}
.eyebrow.is-rose { color: var(--rose); }
.eyebrow.is-rose::before { background: var(--rose); }
.eyebrow.is-paper { color: var(--paper); }
.eyebrow.is-paper::before { background: var(--paper); }

.section-intro {
  max-width: 64ch;
  color: var(--mute);
  font-size: 1rem;
  line-height: 1.7;
}

/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */
.btn-uh {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .35s var(--ease);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn-uh i { transition: transform .25s var(--ease); font-size: 0.95em; }
.btn-uh:hover i { transform: translateX(3px); }

.btn-primary-uh { background: var(--ink); color: var(--paper); }
.btn-primary-uh:hover {
  background: var(--rose);
  color: var(--paper);
  box-shadow: 0 10px 24px -10px rgba(242,23,93,0.45);
}

.btn-ghost-uh { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost-uh:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.btn-paper-uh { background: var(--paper); color: var(--ink); }
.btn-paper-uh:hover { background: var(--rose); color: var(--paper); }

.btn-soft-uh {
  background: var(--rose-soft);
  color: var(--rose-deep);
  font-weight: 700;
}
.btn-soft-uh:hover { background: var(--rose); color: var(--paper); }

.btn-link-uh {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  transition: gap .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.btn-link-uh:hover { gap: 14px; color: var(--rose); border-color: var(--rose); }

/* Subtle outlined small btn */
.btn-outline-sm {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  background: var(--paper);
  font-size: 13.5px; font-weight: 600;
  color: var(--ink);
  transition: all .25s var(--ease);
}
.btn-outline-sm:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ---------------------------------------------------------
   Scroll progress bar (very subtle)
   --------------------------------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--ink), var(--rose));
  z-index: 9999;
  transition: width .12s linear;
}

/* ---------------------------------------------------------
   Utility top bar (thin strip above the main nav)
   --------------------------------------------------------- */
.uh-nav-utility {
  background: var(--ink);
  color: var(--paper);
}
.uh-utility-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 8px 0;
}
.uh-utility-list {
  display: flex;
  list-style: none;
  margin: 0; padding: 0;
  gap: 26px;
  align-items: center;
}
.uh-utility-list a {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(250,250,246,0.85);
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .2s var(--ease);
}
.uh-utility-list a i { font-size: 0.95em; color: var(--rose); }
.uh-utility-list a:hover { color: var(--paper); }

/* ---------------------------------------------------------
   Breadcrumbs (shown on all interior pages, not the homepage)
   --------------------------------------------------------- */
.uh-breadcrumb {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.uh-breadcrumb-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 14px 0;
  font-size: 13px;
  color: var(--mute);
}
.uh-breadcrumb-inner a { color: var(--ink); font-weight: 500; }
.uh-breadcrumb-inner a:hover { color: var(--rose); }
.uh-breadcrumb-inner .sep { color: var(--mute-2); }
.uh-breadcrumb-inner .current { color: var(--mute); }

/* ---------------------------------------------------------
   NAVBAR — two-row layout (top: brand + utility, bottom: section nav)
   --------------------------------------------------------- */
.uh-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.uh-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.uh-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  cursor: pointer;
}
.logo-mark {
  display: inline-flex;
  align-items: center; justify-content: center;
}
.logo-word {
  display: flex;
  flex-direction: column;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.logo-word small {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 6px;
}

.uh-menu-top {
  display: flex;
  list-style: none;
  margin: 0; padding: 0;
  gap: 28px;
  align-items: center;
}
.uh-menu-top a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color .2s var(--ease);
}
.uh-menu-top a:hover { color: var(--rose); }
.uh-menu-top a.is-active { color: var(--rose); font-weight: 600; }

.uh-nav-cta-top {
  display: flex; align-items: center; gap: 12px;
}
.btn-portal {
  background: var(--rose-soft);
  color: var(--rose-deep);
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid var(--rose-soft);
  font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .25s var(--ease);
}
.btn-portal:hover {
  background: var(--rose); color: var(--paper); border-color: var(--rose);
}

.uh-nav-bottom {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.uh-careers-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.uh-careers-tag i { font-size: 1em; color: var(--rose); }

.uh-menu-sub {
  display: flex;
  list-style: none;
  margin: 0; padding: 0;
  gap: 26px;
  align-items: center;
}
.uh-menu-sub a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .2s var(--ease);
}
.uh-menu-sub a:hover { color: var(--rose); }

.sub-cta-row {
  display: flex; align-items: center; gap: 10px;
}
.btn-sub-outline {
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--ink);
  border-radius: 6px;
  padding: 9px 16px;
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all .25s var(--ease);
}
.btn-sub-outline:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-sub-fill {
  border-radius: 6px;
  padding: 9px 16px;
  font-size: 13.5px;
  font-weight: 600;
  background: var(--ink);
  color: var(--paper);
  display: inline-flex; align-items: center; gap: 6px;
  transition: all .25s var(--ease);
}
.btn-sub-fill:hover { background: var(--rose); }

.uh-burger {
  display: none;
  width: 38px; height: 38px;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  padding: 0;
  position: relative;
}
.uh-burger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  margin: 3px auto;
  border-radius: 1px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

/* Mobile menu */
.uh-mobile {
  position: fixed;
  top: 0; right: 0;
  width: min(360px, 100%);
  height: 100vh;
  background: var(--ink);
  color: var(--paper);
  padding: 80px 32px 32px;
  z-index: 200;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
}
.uh-mobile.is-open { transform: translateX(0); }
.uh-mobile a {
  color: var(--paper);
  font-size: 18px;
  font-family: var(--serif);
  padding: 8px 0;
  border-bottom: 1px solid rgba(250,250,246,0.08);
}
.uh-mobile a:hover { color: var(--rose); }
.uh-mobile .mobile-ctas {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 12px;
}
.uh-mobile-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(250,250,246,0.2);
  border-radius: 50%;
  font-size: 18px;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ---------------------------------------------------------
   HOMEPAGE — Full-bleed Background Banner Hero
   --------------------------------------------------------- */
.hp-hero {
  position: relative;
  overflow: visible;
  min-height: clamp(540px, 62vw, 700px);
  isolation: isolate;
}
.hp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hp-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(11,18,54,0.72) 0%, rgba(11,18,54,0.35) 45%, rgba(11,18,54,0.08) 100%);
}
.hp-hero-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: clamp(540px, 62vw, 700px);
}
.hp-hero-inner {
  flex: 1;
  display: flex;
  align-items: center;
  padding: clamp(56px, 9vw, 100px) 0 clamp(32px, 5vw, 48px);
  width: 100%;
}
.hp-hero-content {
  max-width: min(640px, 92%);
  color: var(--paper);
}
.hp-hero-content h1 {
  color: var(--paper);
  font-size: clamp(2.2rem, 4.8vw, 3.75rem);
  line-height: 1.12;
  margin: 0 0 28px;
  font-weight: 400;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rose-soft);
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 4px;
  border: 1px solid var(--rose-soft);
  transition: all .25s var(--ease);
}
.btn-hero-cta:hover {
  background: var(--rose);
  color: var(--paper);
  border-color: var(--rose);
}

/* Provider search — overlaps hero + resources */
.hp-hero-search-wrap {
  position: relative;
  z-index: 5;
  margin-bottom: -72px;
  width: 100%;
  max-width: min(1080px, 92%);
  margin-left: auto;
  margin-right: auto;
}
.hp-search-bar {
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: 4px;
  padding: 22px 28px 20px;
  box-shadow: 0 8px 32px -8px rgba(11,18,54,0.18);
}
.hp-search-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.hp-search-row i {
  font-size: 1.15rem;
  color: var(--ink);
}
.hp-search-input {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
}
.hp-search-input input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 15px;
  background: var(--white);
  color: var(--ink);
}
.hp-search-input input::placeholder { color: var(--mute-2); }
.hp-search-input button {
  flex-shrink: 0;
  background: transparent;
  color: var(--ink);
  border: none;
  border-left: 1px solid var(--line);
  padding: 0 18px;
  font-size: 1.1rem;
  transition: color .2s var(--ease);
}
.hp-search-input button:hover { color: var(--rose); }
.hp-search-disclaimer {
  font-size: 12.5px;
  color: var(--mute);
  margin: 12px 0 0;
  line-height: 1.55;
}
.hp-search-disclaimer a {
  color: var(--navy);
  text-decoration: none;
}
.hp-search-disclaimer a:hover {
  color: var(--rose);
  text-decoration: underline;
}

/* ---------------------------------------------------------
   HOMEPAGE — Resources tile grid
   --------------------------------------------------------- */
.hp-resources {
  padding: 112px 0 88px;
  background: var(--paper);
}
.hp-resources-head {
  text-align: center;
  margin-bottom: 48px;
}
.hp-resources-head h2 {
  font-size: clamp(1.85rem, 2.8vw, 2.35rem);
  font-weight: 400;
}

.hp-resource-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line-2);
  background: var(--white);
}
.hp-resource-tile {
  background: var(--white);
  border-right: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  border-radius: 0;
  padding: 36px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  transition: background .25s var(--ease), color .25s var(--ease);
  text-decoration: none;
  color: var(--ink);
  min-height: 132px;
}
.hp-resource-tile:nth-child(4n) { border-right: none; }
.hp-resource-tile:nth-last-child(-n+4) { border-bottom: none; }
.hp-resource-tile:hover {
  background: var(--off);
  transform: none;
  box-shadow: none;
}
.hp-resource-tile .tile-ic {
  width: auto;
  height: auto;
  background: transparent;
  color: var(--ink-3);
  border-radius: 0;
  font-size: 1.75rem;
  line-height: 1;
  transition: color .25s var(--ease);
}
.hp-resource-tile:hover .tile-ic {
  background: transparent;
  color: var(--rose);
}
.hp-resource-tile h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  margin: 0;
  line-height: 1.35;
}

/* ---------------------------------------------------------
   HOMEPAGE — Specialized care 3-card
   --------------------------------------------------------- */
.hp-specialized {
  padding: 80px 0;
  background: var(--paper);
}
.hp-specialized-head {
  margin-bottom: 36px;
  max-width: 780px;
}
.hp-specialized-head .accent-bar {
  width: 40px; height: 2px;
  background: var(--rose);
  margin-bottom: 18px;
}
.hp-specialized-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.hp-care-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .3s var(--ease);
}
.hp-care-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(11,18,54,0.2);
  border-color: var(--ink);
}
.hp-care-card .card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.hp-care-card .card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.hp-care-card:hover .card-img img { transform: scale(1.05); }
.hp-care-card .card-body {
  padding: 24px 22px 28px;
}
.hp-care-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.hp-care-card p {
  font-size: 14.5px;
  color: var(--mute);
  line-height: 1.65;
  margin: 0;
}

.view-all-btn-wrap {
  margin-top: 28px;
}

/* ---------------------------------------------------------
   HOMEPAGE — Driven by Firsts (dark video band)
   --------------------------------------------------------- */
.hp-driven {
  background: var(--ink);
  color: var(--paper);
  padding: 72px 0;
}
.hp-driven-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hp-driven .video-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  overflow: hidden;
  background: #111634;
  border: 1px solid rgba(250,250,246,0.1);
}
.hp-driven .video-wrap img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.85;
}
.hp-driven .play-btn {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: none;
  color: var(--paper);
}
.hp-driven .play-btn .play-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(242,23,93,0.92);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 24px;
  box-shadow: 0 12px 32px -8px rgba(242,23,93,0.6);
  transition: transform .35s var(--ease), background .25s var(--ease);
}
.hp-driven .play-btn:hover .play-circle { transform: scale(1.08); background: var(--rose); }
.hp-driven .video-label {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(11,18,54,0.65);
  border: 1px solid rgba(250,250,246,0.18);
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--paper);
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.hp-driven h2 {
  color: var(--paper);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}
.hp-driven h2 .underline-rose {
  display: block;
  width: 60px; height: 2px;
  background: var(--rose);
  margin-bottom: 18px;
}
.hp-driven p {
  color: rgba(250,250,246,0.78);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 22px;
  max-width: 52ch;
}

/* ---------------------------------------------------------
   HOMEPAGE — Career CTA inline
   --------------------------------------------------------- */
.hp-career-cta {
  padding: 80px 0;
  background: var(--paper);
}
.hp-career-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hp-career-cta h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  margin-bottom: 14px;
}
.hp-career-cta p {
  color: var(--mute);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 52ch;
}
.hp-career-cta .img-wrap {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 60px -28px rgba(11,18,54,0.3);
}
.hp-career-cta .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}

/* ---------------------------------------------------------
   HOMEPAGE — Leading What's Next (news cards)
   --------------------------------------------------------- */
.hp-news {
  padding: 80px 0;
  background: var(--paper);
}
.hp-news-head {
  margin-bottom: 32px;
}
.hp-news-head .accent-bar {
  width: 40px; height: 2px;
  background: var(--rose);
  margin-bottom: 14px;
}
.hp-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.hp-news-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all .3s var(--ease);
}
.hp-news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(11,18,54,0.18);
  border-color: var(--ink);
}
.hp-news-card .img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.hp-news-card .img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.hp-news-card:hover .img img { transform: scale(1.05); }
.hp-news-card .body {
  padding: 22px 22px 26px;
  flex: 1;
  display: flex; flex-direction: column;
}
.hp-news-card .tag {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 10px;
}
.hp-news-card h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.25;
}
.hp-news-card p {
  font-size: 14px;
  color: var(--mute);
  margin: 0 0 14px;
  line-height: 1.6;
  flex: 1;
}
.hp-news-card .read-more {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  display: inline-block;
  padding-bottom: 2px;
  align-self: flex-start;
  transition: all .2s var(--ease);
}
.hp-news-card .read-more:hover { color: var(--rose); border-color: var(--rose); }

.hp-news-bottom {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================================================
   CAREERS PAGE
   ========================================================= */

/* Hero – clean image banner */
.cp-hero {
  position: relative;
  height: 420px;
  background: var(--ink);
  overflow: hidden;
}
.cp-hero .cp-hero-img {
  position: absolute; inset: 0;
}
.cp-hero .cp-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.cp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,18,54,0.55) 0%, rgba(11,18,54,0.65) 60%, rgba(11,18,54,0.75) 100%);
  pointer-events: none;
}
.cp-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--gutter);
}
.cp-hero-content h1 {
  color: var(--paper);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

/* Search row sitting below hero / inside hero */
.cp-hero-search {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 10px;
  background: var(--white);
  padding: 12px;
  border-radius: 8px;
  width: min(900px, 100%);
  box-shadow: 0 16px 40px -20px rgba(0,0,0,0.4);
}
.cp-hero-search input,
.cp-hero-search select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%230B1236' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.cp-hero-search input {
  background-image: none;
}
.cp-hero-search button {
  background: var(--rose-soft);
  color: var(--rose-deep);
  border: none;
  border-radius: 6px;
  padding: 0 22px;
  font-weight: 700;
  font-size: 16px;
  transition: all .25s var(--ease);
}
.cp-hero-search button:hover { background: var(--rose); color: var(--paper); }

/* Find Next Opportunity area */
.cp-opportunity {
  padding: 80px 0 40px;
}
.cp-opportunity-head {
  text-align: left;
  margin-bottom: 36px;
}
.cp-opportunity-head .accent-bar {
  width: 40px; height: 2px;
  background: var(--rose);
  margin-bottom: 14px;
}
.cp-opportunity-head h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  margin-bottom: 14px;
}
.cp-opportunity-head p {
  color: var(--mute);
  font-size: 15px;
  max-width: 70ch;
  line-height: 1.7;
  margin: 0 0 12px;
}
.cp-opportunity-head .view-all {
  font-size: 14px; font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  display: inline-block;
  transition: all .2s var(--ease);
}
.cp-opportunity-head .view-all:hover { color: var(--rose); border-color: var(--rose); }

.cp-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cp-cat-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px 22px;
  display: flex; align-items: center; gap: 16px;
  text-decoration: none;
  color: var(--ink);
  transition: all .3s var(--ease);
}
.cp-cat-tile:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: 0 16px 32px -16px rgba(11,18,54,0.18);
}
.cp-cat-tile .cat-ic {
  width: 46px; height: 46px;
  background: var(--rose-soft);
  color: var(--rose-deep);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: all .3s var(--ease);
}
.cp-cat-tile:hover .cat-ic { background: var(--ink); color: var(--paper); }
.cp-cat-tile h4 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink);
  margin: 0;
}

/* Why Work at Emory clone */
.cp-why {
  padding: 60px 0 80px;
}
.cp-why-head {
  margin-bottom: 32px;
  max-width: 780px;
}
.cp-why-head .accent-bar { width: 40px; height: 2px; background: var(--rose); margin-bottom: 14px; }
.cp-why-head h2 { font-size: clamp(1.7rem, 2.6vw, 2.2rem); margin-bottom: 12px; }
.cp-why-head p {
  color: var(--mute);
  font-size: 15px;
  max-width: 70ch;
  line-height: 1.7;
}
.cp-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cp-why-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  transition: all .3s var(--ease);
  text-decoration: none;
  color: var(--ink);
  display: flex; flex-direction: column;
}
.cp-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px -24px rgba(11,18,54,0.22);
  border-color: var(--ink);
}
.cp-why-card .img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.cp-why-card .img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.cp-why-card:hover .img img { transform: scale(1.04); }
.cp-why-card .body {
  padding: 20px 22px 24px;
}
.cp-why-card h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 10px;
}
.cp-why-card h4 i {
  font-size: 0.85em;
  color: var(--rose);
  transition: transform .25s var(--ease);
}
.cp-why-card:hover h4 i { transform: translateX(4px); }
.cp-why-card p {
  font-size: 14px;
  color: var(--mute);
  line-height: 1.6;
  margin: 0;
}

/* How We Hire */
.cp-hire {
  padding: 60px 0;
}
.cp-hire-head { margin-bottom: 24px; }
.cp-hire-head .accent-bar { width: 40px; height: 2px; background: var(--rose); margin-bottom: 14px; }
.cp-hire-head h2 { font-size: clamp(1.7rem, 2.6vw, 2.2rem); margin-bottom: 16px; }
.cp-hire-body {
  max-width: 78ch;
}
.cp-hire-body p {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 18px;
}
.cp-hire-body p a { color: var(--ink); border-bottom: 1px solid var(--ink); }
.cp-hire-body p a:hover { color: var(--rose); border-color: var(--rose); }
.cp-hire-body .em { font-style: italic; color: var(--ink-3); }

/* Forbes band */
.cp-forbes {
  background: var(--ink);
  color: var(--paper);
  padding: 60px 0;
  text-align: center;
}
.cp-forbes h2 {
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  margin-bottom: 32px;
}
.cp-forbes-badge {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--paper);
  color: var(--ink);
  border-radius: 4px;
  overflow: hidden;
  font-family: var(--serif);
  box-shadow: 0 16px 40px -16px rgba(0,0,0,0.4);
}
.cp-forbes-badge .left {
  background: var(--paper);
  color: var(--ink);
  padding: 18px 22px;
  display: flex; flex-direction: column;
  border-right: 1px solid var(--line);
}
.cp-forbes-badge .forbes-mark {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.cp-forbes-badge .year {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  color: var(--rose);
  letter-spacing: 0.05em;
}
.cp-forbes-badge .right {
  background: var(--paper);
  padding: 18px 22px;
  text-align: left;
  font-family: var(--sans);
}
.cp-forbes-badge .top {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--mute);
  text-transform: uppercase;
}
.cp-forbes-badge .main {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1;
  margin: 4px 0 4px;
}
.cp-forbes-badge .small {
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.05em;
}

/* Nursing testimonials */
.cp-nursing {
  padding: 80px 0;
  background: var(--paper);
}
.cp-nursing-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 40px;
}
.cp-nursing-text .accent-bar { width: 40px; height: 2px; background: var(--rose); margin-bottom: 14px; }
.cp-nursing-text h2 { font-size: clamp(1.7rem, 2.6vw, 2.2rem); margin-bottom: 14px; }
.cp-nursing-text p { color: var(--mute); font-size: 15px; line-height: 1.7; margin: 0 0 14px; max-width: 52ch; }
.cp-nursing-text a.link {
  font-size: 14px; font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  margin-right: 16px;
  display: inline-block;
}
.cp-nursing-text a.link:hover { color: var(--rose); border-color: var(--rose); }
.cp-nursing-img {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
}
.cp-nursing-img img { width: 100%; height: 100%; object-fit: cover; }

.cp-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cp-quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
  display: flex; gap: 16px;
  align-items: flex-start;
}
.cp-quote .avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cream);
}
.cp-quote .avatar img { width: 100%; height: 100%; object-fit: cover; }
.cp-quote q {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.5;
  display: block;
  margin-bottom: 10px;
  quotes: """ """;
}
.cp-quote .who { font-size: 12.5px; color: var(--mute); font-weight: 600; }
.cp-quote .who strong { color: var(--ink); display: block; font-weight: 700; font-size: 13.5px; }

/* Final Join the Team */
.cp-final {
  padding: 80px 0;
  background: var(--paper);
  text-align: center;
  border-top: 1px solid var(--line);
}
.cp-final h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  margin-bottom: 14px;
}
.cp-final p {
  color: var(--mute);
  font-size: 15px;
  max-width: 56ch;
  margin: 0 auto 24px;
  line-height: 1.7;
}

/* =========================================================
   INTERNAL CAREERS — Job listings
   ========================================================= */
.ic-search-block {
  padding: 32px 0;
  background: var(--paper);
}
.ic-back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--ink);
  margin-bottom: 18px;
  transition: color .2s var(--ease);
}
.ic-back-link:hover { color: var(--rose); }
.ic-search-main {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  max-width: 760px;
}
.ic-search-main input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px 14px;
  font-family: var(--sans);
  font-size: 14px;
  background: var(--white);
  outline: none;
  color: var(--ink);
}
.ic-search-main input:focus { border-color: var(--ink); }
.ic-search-main button {
  background: var(--rose-soft);
  color: var(--rose-deep);
  border: none;
  border-radius: 6px;
  padding: 0 24px;
  font-weight: 700;
  font-size: 14px;
  transition: all .25s var(--ease);
}
.ic-search-main button:hover { background: var(--rose); color: var(--paper); }

.ic-keyword-radio {
  display: flex; gap: 22px;
  margin-bottom: 14px;
  font-size: 13.5px;
  color: var(--ink);
}
.ic-keyword-radio label {
  display: inline-flex; align-items: center; gap: 6px;
  cursor: pointer;
}

.ic-filter-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 18px;
}
.ic-filter-field { display: flex; flex-direction: column; gap: 4px; }
.ic-filter-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}
.ic-filter-field select {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 9px 12px;
  background: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%230B1236' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.ic-results-bar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
  font-size: 13.5px;
  color: var(--ink);
}
.ic-results-bar strong { font-weight: 700; }
.ic-sort {
  display: flex; align-items: center; gap: 8px;
}
.ic-sort select {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
}

/* Job list cards */
.ic-job-list {
  padding: 8px 0 64px;
}
.ic-job-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 24px;
  margin-bottom: 14px;
  transition: all .25s var(--ease);
}
.ic-job-card:hover {
  border-color: var(--ink);
  box-shadow: 0 10px 28px -16px rgba(11,18,54,0.18);
  transform: translateY(-1px);
}
.ic-job-card .ic-job-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  color: var(--rose);
  margin: 0 0 8px;
  text-decoration: none;
  display: inline-block;
}
.ic-job-card .ic-job-title:hover { color: var(--rose-deep); text-decoration: underline; }
.ic-job-card .ic-summary {
  font-size: 13.5px;
  color: var(--mute);
  line-height: 1.6;
  margin: 0 0 14px;
}
.ic-chip-row {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.ic-chip {
  display: inline-flex; align-items: center;
  gap: 6px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 12px;
  color: var(--ink);
}
.ic-chip strong {
  font-weight: 700;
  color: var(--ink);
}
.ic-chip .v {
  font-weight: 500;
  color: var(--mute);
}

/* Pagination */
.ic-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 24px 0 0;
}
.ic-pagination a {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  transition: all .2s var(--ease);
}
.ic-pagination a:hover, .ic-pagination a.is-active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.ic-pagination .last { width: auto; padding: 0 12px; }


/* =========================================================
   SIMPLE PAGE BANNER (interior pages)
   ========================================================= */
.uh-banner {
  position: relative;
  height: 280px;
  background: var(--ink);
  overflow: hidden;
}
.uh-banner-img { position: absolute; inset: 0; }
.uh-banner-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.uh-banner::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,18,54,0.55) 0%, rgba(11,18,54,0.72) 100%);
}
.uh-banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--gutter);
  color: var(--paper);
  max-width: var(--max);
  margin: 0 auto;
}
.uh-banner-content .eyebrow { color: var(--rose-soft); }
.uh-banner-content h1 {
  color: var(--paper);
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  margin: 10px 0 0;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.uh-banner-content p {
  color: rgba(250,250,246,0.92);
  font-size: 1rem;
  margin: 10px 0 0;
  max-width: 60ch;
}
@media (max-width: 880px) {
  .uh-banner { height: 220px; }
}

/* =========================================================
   JOB DETAIL PAGE
   ========================================================= */
.jd-wrap {
  padding: 32px 0 64px;
}
.jd-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
  transition: color .2s var(--ease);
}
.jd-back:hover { color: var(--rose); }
.jd-returning {
  text-align: right;
  font-size: 13px;
  color: var(--mute);
  margin-bottom: 14px;
}
.jd-returning a { color: var(--ink); border-bottom: 1px solid var(--ink); }
.jd-returning a:hover { color: var(--rose); border-color: var(--rose); }

.jd-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
  align-items: start;
}
.jd-main h1 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin: 0 0 18px;
  line-height: 1.15;
}
.jd-meta {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 28px;
}
.jd-meta .ic-chip { background: var(--white); }

.jd-section { margin-top: 30px; }
.jd-section h2 {
  font-family: var(--serif);
  font-size: 1.35rem;
  margin: 0 0 12px;
}
.jd-section h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin: 18px 0 8px;
}
.jd-section p {
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.75;
  margin: 0 0 12px;
}
.jd-section ol, .jd-section ul {
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.75;
  padding-left: 22px;
  margin: 0 0 12px;
}
.jd-section li { margin-bottom: 4px; }
.jd-section a { color: var(--ink); border-bottom: 1px solid var(--ink); }
.jd-section a:hover { color: var(--rose); border-color: var(--rose); }
.jd-section .lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-3);
  margin-bottom: 18px;
}

/* Sticky right rail */
.jd-aside {
  position: sticky;
  top: calc(var(--nav-h) + 18px);
}
.jd-apply-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  display: flex; flex-direction: column;
  gap: 10px;
  box-shadow: 0 12px 32px -20px rgba(11,18,54,0.2);
}
.jd-apply-btn {
  background: var(--rose-soft);
  color: var(--rose-deep);
  border: 1px solid var(--rose-soft);
  border-radius: 6px;
  padding: 14px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  transition: all .25s var(--ease);
}
.jd-apply-btn:hover { background: var(--rose); color: var(--paper); border-color: var(--rose); }
.jd-email-btn {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line-2);
  border-radius: 6px;
  padding: 13px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  transition: all .25s var(--ease);
}
.jd-email-btn:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.jd-share {
  text-align: center;
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.jd-share .label {
  font-size: 12px;
  color: var(--mute);
  margin-bottom: 8px;
  font-weight: 600;
}
.jd-share .socials {
  display: flex; gap: 10px; justify-content: center;
}
.jd-share .socials a {
  width: 32px; height: 32px;
  border-radius: 4px;
  background: #3b5998;
  color: var(--paper);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: opacity .2s var(--ease);
}
.jd-share .socials a:hover { opacity: 0.85; }
.jd-share .socials a.li { background: #0077b5; }

.jd-manager-card {
  margin-top: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  box-shadow: 0 12px 32px -20px rgba(11,18,54,0.2);
}
.jd-manager-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 12px;
}
.jd-manager-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}
.jd-manager-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cream);
  border: 2px solid var(--line);
}
.jd-manager-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.jd-manager-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.jd-manager-info strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.jd-manager-info span {
  font-size: 12px;
  color: var(--mute);
  line-height: 1.45;
}
.jd-manager-desc {
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.55;
}

/* =========================================================
   FOOTER (dark, four-column)
   ========================================================= */
.uh-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 60px 0 32px;
  margin-top: 0;
}
.uh-footer .back-to-top {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  width: max-content; margin: 0 auto 36px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--paper);
  background: transparent; border: none;
}
.uh-footer .back-to-top .chev {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(250,250,246,0.3);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: all .25s var(--ease);
}
.uh-footer .back-to-top:hover .chev { background: var(--rose); border-color: var(--rose); }

.foot-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding-bottom: 24px;
}
.foot-brand-row .uh-logo .logo-word { color: var(--paper); }
.foot-brand-row .uh-logo .logo-word small { color: rgba(250,250,246,0.5); }

.foot-follow {
  display: flex; align-items: center; gap: 14px;
}
.foot-follow .label {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--paper);
}

.foot-sep {
  border: none;
  border-top: 1px solid rgba(250,250,246,0.14);
  margin: 0 0 28px;
}

.foot-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(250,250,246,0.1);
}

.foot-social {
  display: flex; gap: 12px; align-items: center;
}
.foot-social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(250,250,246,0.2);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--paper);
  font-size: 14px;
  transition: all .25s var(--ease);
}
.foot-social a:hover { background: var(--rose); border-color: var(--rose); }

.foot-col h5 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--paper);
  margin: 0 0 14px;
}
.foot-col ul {
  list-style: none;
  padding: 0; margin: 0;
}
.foot-col ul li { margin-bottom: 8px; }
.foot-col ul li a {
  font-size: 13.5px;
  color: rgba(250,250,246,0.75);
  transition: color .2s var(--ease);
}
.foot-col ul li a:hover { color: var(--rose); }

.foot-bottom {
  padding-top: 22px;
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: 18px;
  font-size: 12.5px;
  color: rgba(250,250,246,0.6);
}
.foot-bottom .disclaimer {
  flex: 1; min-width: 280px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(250,250,246,0.55);
}
.foot-bottom .links {
  display: flex; gap: 18px; flex-wrap: wrap;
}
.foot-bottom .links a { color: rgba(250,250,246,0.6); }
.foot-bottom .links a:hover { color: var(--rose); }
.foot-copyright {
  margin-top: 18px;
  font-size: 12px;
  color: rgba(250,250,246,0.5);
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
}
.foot-copyright a { color: rgba(250,250,246,0.6); border-bottom: 1px solid rgba(250,250,246,0.2); padding-bottom: 1px; }
.foot-copyright a:hover { color: var(--rose); border-color: var(--rose); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .hp-resource-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-resource-tile:nth-child(4n) { border-right: 1px solid var(--line-2); }
  .hp-resource-tile:nth-child(2n) { border-right: none; }
  .hp-resource-tile:nth-last-child(-n+4) { border-bottom: 1px solid var(--line-2); }
  .hp-resource-tile:nth-last-child(-n+2) { border-bottom: none; }
  .hp-hero-search-wrap { max-width: 100%; }
  .hp-specialized-grid, .hp-news-grid, .cp-cat-grid, .cp-why-grid, .cp-quotes { grid-template-columns: repeat(2, 1fr); }
  .foot-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .uh-menu-top { display: none; }
  .uh-menu-sub { display: none; }
  .sub-cta-row .btn-sub-outline { display: none; }
  .uh-burger { display: inline-flex; align-items: center; justify-content: center; }
  .uh-nav-cta-top .btn-portal { display: none; }
  .uh-nav-utility { display: none; }
  .hp-hero-inner { padding: 64px 0 28px; }
  .hp-hero,
  .hp-hero-body { min-height: 500px; }
  .hp-hero-search-wrap { margin-bottom: -56px; max-width: 100%; }
  .hp-resources { padding-top: 96px; }
  .hp-search-bar { padding: 18px 20px 16px; }
  .hp-driven-grid, .hp-career-cta-grid, .cp-nursing-grid, .jd-layout { grid-template-columns: 1fr; gap: 28px; }
  .jd-aside { position: static; }
  .cp-hero { height: 320px; }
  .cp-hero-search { grid-template-columns: 1fr 1fr; }
  .cp-hero-search button { grid-column: 1 / -1; padding: 12px; }
  .ic-filter-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hp-resource-grid, .hp-specialized-grid, .hp-news-grid, .cp-cat-grid, .cp-why-grid, .cp-quotes { grid-template-columns: 1fr; }
  .hp-resource-tile:nth-child(2n),
  .hp-resource-tile:nth-child(4n) { border-right: none; }
  .hp-resource-tile { border-right: none !important; border-bottom: 1px solid var(--line-2) !important; }
  .hp-resource-tile:last-child { border-bottom: none !important; }
  .foot-top { grid-template-columns: 1fr; gap: 28px; }
  .cp-hero-search { grid-template-columns: 1fr; }
  .ic-filter-row { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  .logo-word { font-size: 19px; }
  .logo-word small { display: none; }
}

/* Subtle reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
