  html { 
    opacity: 0; 
    transition: opacity 0.3s ease;
  }

.njrht {
  --njrht-navy-darkest: #00213a;
  --njrht-navy: #015390;
  --njrht-blue: #009ad0; 
  --njrht-blue-deep: #145484; 
  --njrht-cyan: #149dd4;     
  --njrht-blue-light: #d3edfb;

  /* Accents */
  --njrht-green: #56930c;
  --njrht-green-deep: #2b5000;
  --njrht-green-tint: #eaf3df;
  --njrht-yellow: #f9c90f; 

  /* Neutrals */
  --njrht-surface: #f5faff;
  --njrht-surface-alt: #eff4f9;
  --njrht-surface-muted: #fffdf5;
  --njrht-white: #ffffff;
  --njrht-ink: #171c20;
  --njrht-ink-muted: #43474d;
  --njrht-border: #c3c7ce;

  --njrht-shadow: 0 2px 4px rgba(7, 86, 147, 0.06);
  --njrht-shadow-lg: 0 4px 12px rgba(7, 86, 147, 0.12);
  --njrht-shadow-plate: 0 20px 45px -12px rgba(7, 86, 147, 0.28);
  --njrht-shadow-card: 0 8px 20px -10px rgba(7, 86, 147, 0.18);
  --njrht-radius: 6px;
  --njrht-radius-lg: 12px;

  font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--njrht-ink);
  background-color: var(--njrht-surface);
  margin: 0;
  line-height: 1.6;
}


/* 2. Base ================================================================== */

.njrht *,
.njrht *::before,
.njrht *::after {
  box-sizing: border-box;
}

body {
  overflow-x: clip;
}


/* 3. Full-bleed sections =================================================== */

.njrht-hero,
.njrht-section--alt,
.njrht-section--muted,
.njrht-rural,
.njrht-focus,
.njrht-status,
.njrht-elig,
.njrht-faq,
.njrht-ta,
.njrht-featured,
.njrht-footer {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}


/* 4. Layout helpers ======================================================== */

.njrht-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.njrht-section--alt {
  background-color: var(--njrht-surface-alt);
}

.njrht-section--muted {
  background-color: var(--njrht-surface-muted);
}

/* Vertical spacing for columns that wrap (paired -30px on the row) */
.njrht-card-row {
  margin-bottom: -30px;
}

.njrht-card-col {
  margin-bottom: 30px;
}


/* 5. Shared text =========================================================== */

.njrht-eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.njrht-eyebrow--plain {
  background-color: transparent;
  color: var(--njrht-blue-deep);
  padding: 0;
  margin-bottom: 8px;
}

.njrht-heading {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--njrht-navy-darkest);
  margin: 0 0 12px;
}

.njrht-heading--spaced {
  margin-bottom: 40px;
}

.njrht-subheading {
  font-size: 18px;
  color: var(--njrht-ink-muted);
  margin: 0;
}

.njrht-intro {
  max-width: 50em;
  margin-bottom: 48px;
}

.njrht-intro--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.njrht-link {
  color: var(--njrht-blue-deep);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.njrht-link:hover {
  text-decoration: underline;
}

.njrht-note {
  font-size: 15px;
  color: var(--njrht-ink-muted);
  max-width: 60em;
  margin: 20px 0 0;
}


/* 6. Buttons (anchors styled as buttons) =================================== */

.njrht-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 28px;
  border: 2px solid transparent;
  border-radius: var(--njrht-radius);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.njrht-btn--solid {
  background-color: var(--njrht-navy-darkest);
  color: var(--njrht-white);
}

.njrht-btn--solid:hover {
  background-color: var(--njrht-navy);
  color: var(--njrht-white);
}

.njrht-btn--light {
  background-color: var(--njrht-white);
  color: var(--njrht-navy-darkest);
}

.njrht-btn--light:hover {
  background-color: var(--njrht-blue-light);
}

.njrht-btn--ghost {
  border-color: var(--njrht-white);
  color: var(--njrht-white);
}

.njrht-btn--ghost:hover {
  background-color: var(--njrht-white);
  color: var(--njrht-navy-darkest);
}


/* 7. Icons and focus ======================================================= */

.njrht-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.njrht-icon--lg {
  width: 40px;
  height: 40px;
}

.njrht a:focus-visible,
.njrht-btn:focus-visible {
  outline: 3px solid var(--njrht-blue-deep);
  outline-offset: 2px;
  border-radius: var(--njrht-radius);
}


/* 8. Hero ================================================================== */

.njrht-hero {
  background:
    linear-gradient(0deg, rgba(1, 83, 144, 0.75) 0%, rgba(0, 33, 58, 0.4) 100%),
    url("/rural-health-transformation/assets/images/1411011048.webp");
  background-size: cover;
  background-position: center;
  color: var(--njrht-white);
  padding-top: 100px;
  padding-bottom: 120px;
  margin-top: -0.75rem;
}

.njrht-hero__card {
  max-width: 46rem;
  margin: 0 auto;
  padding: 2.5rem;
  text-align: center;
  background: rgba(0, 33, 58, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--njrht-radius-lg);
}

.njrht-hero .njrht-eyebrow {
  display: inline-block;
  color: var(--njrht-navy-darkest);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 1;
  margin: 0 0 1.25rem;
  padding: 8px 16px;
  background-color: var(--njrht-white);
  border: 0;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.njrht-hero__title {
  font-size: clamp(2.1rem, 3.5vw, 3rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.njrht-hero__lede {
  font-size: clamp(1rem, 0.85rem + 0.75vw, 1.2rem);
  line-height: 1.6;
  color: var(--njrht-white);
  opacity: 0.92;
  margin: 0 auto;
  max-width: 40em;
}

.njrht-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}


/* 9. Triage cards ========================================================== */
/* The negative margin lifts the whole box, so the background lives on a
   pseudo-element that starts where the lift ends. margin-top and ::before
   top must always match. */

.njrht-triage {
  margin-top: -48px;
  position: relative;
  z-index: 20;
  padding-bottom: 64px;
}

.njrht-triage::before {
  content: "";
  position: absolute;
  top: 48px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background-color: var(--njrht-surface-alt);
  z-index: -1;
}

/* Whole card is the anchor. Inner affordance is a span, not a nested link. */
.njrht-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px;
  background-color: var(--njrht-white);
  border: 1px solid var(--njrht-border);
  border-top: 4px solid var(--njrht-yellow);
  border-radius: var(--njrht-radius-lg);
  box-shadow: var(--njrht-shadow);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.njrht-card--green {
  border-top-color: var(--njrht-green);
}

.njrht-card:hover {
  box-shadow: var(--njrht-shadow-lg);
  transform: translateY(-2px);
}

.njrht-card__icon {
  color: var(--njrht-blue);
  margin-bottom: 16px;
}

.njrht-card--green .njrht-card__icon {
  color: var(--njrht-green-deep);
}

.njrht-card__title {
  font-size: 24px;
  font-weight: 600;
  color: var(--njrht-navy-darkest);
  margin: 0 0 12px;
}

.njrht-card__text {
  font-size: 16px;
  color: var(--njrht-ink-muted);
  margin: 0 0 24px;
  flex-grow: 1;
}

.njrht-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--njrht-blue-deep);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.njrht-card:hover .njrht-card__link {
  text-decoration: underline;
}

.njrht-card__link .njrht-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.njrht-card:hover .njrht-card__link .njrht-icon {
  transform: translateX(3px);
}


/* 9a. Compact triage cards ================================================= */
/* Icon + title + arrow only, for the five-across row where full cards
   would be too narrow. */

.njrht-card--compact {
  padding: 24px 20px;
  align-items: flex-start;
}

.njrht-card--compact .njrht-card__icon {
  margin-bottom: 12px;
}

.njrht-card--compact .njrht-card__title {
  font-size: 18px;
  line-height: 1.25;
  margin: 0 0 14px;
  flex-grow: 1;
}

.njrht-card--compact .njrht-card__link {
  font-size: 13px;
}


/* 10. Impact stats ========================================================= */

.njrht-impact {
  text-align: center;
}

.njrht-impact__intro {
  max-width: 40em;
  margin: 0 auto 48px;
}

.njrht-stats__item {
  padding: 24px 32px;
}

.njrht-stats__number {
  display: block;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--njrht-navy-darkest);
  margin-bottom: 8px;
}

.njrht-stats__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--njrht-blue-deep);
}


/* 11. Highlight plate ====================================================== */

.njrht-plate {
  background-color: var(--njrht-white);
  border: 1px solid var(--njrht-border);
  border-radius: var(--njrht-radius-lg);
  box-shadow: var(--njrht-shadow-plate);
  overflow: hidden;
}

.njrht-plate__col {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.njrht-plate__label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6em;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--njrht-blue-deep);
  margin-bottom: 10px;
}

.njrht-plate__number,
.njrht-plate__num {
  display: block;
  font-size: clamp(1.25rem, 2vw + 0.5rem, 2rem);
  line-height: 1.05;
  font-weight: 800;
  color: var(--njrht-navy);
  margin-bottom: 10px;
}

.njrht-plate__sub {
  display: block;
  font-size: 14px;
  color: var(--njrht-ink-muted);
  margin: 0;
  padding: 10px;
  line-height: 1.3;
}


/* 12. Rural definitions and county table =================================== */

.njrht-rural {
  background-color: var(--njrht-surface-alt);
}

.njrht-def {
  height: 100%;
  padding: 28px;
  background-color: var(--njrht-white);
  border-radius: var(--njrht-radius-lg);
  box-shadow: var(--njrht-shadow-card);
}

.njrht-def--federal {
  border-top: 4px solid var(--njrht-navy);
}

.njrht-def--state {
  border-top: 4px solid var(--njrht-cyan);
}

.njrht-def__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--njrht-blue-deep);
  margin-bottom: 8px;
}

.njrht-def__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--njrht-navy-darkest);
  margin: 0 0 6px;
}

.njrht-def__rule {
  font-size: 15px;
  color: var(--njrht-ink-muted);
  margin: 0 0 18px;
}

.njrht-def__figure {
  display: block;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--njrht-navy);
}

.njrht-def__figure-label {
  display: block;
  font-size: 15px;
  color: var(--njrht-ink-muted);
}

.njrht-table-wrap {
  overflow-x: auto;
  margin-top: 48px;
}

.njrht-table {
  width: 100%;
  background-color: var(--njrht-white);
  border-collapse: collapse;
  border-radius: var(--njrht-radius-lg);
  overflow: hidden;
  box-shadow: var(--njrht-shadow-card);
}

.njrht-table caption {
  caption-side: top;
  text-align: left;
  font-size: 15px;
  color: var(--njrht-ink-muted);
  padding-bottom: 12px;
}

.njrht-table th,
.njrht-table td {
  padding: 14px 18px;
  text-align: left;
  vertical-align: top;
  font-size: 16px;
  border-bottom: 1px solid var(--njrht-border);
}

.njrht-table thead th {
  background-color: var(--njrht-navy);
  color: var(--njrht-white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-bottom: 0;
}

.njrht-table tbody tr:last-child th,
.njrht-table tbody tr:last-child td {
  border-bottom: 0;
}

.njrht-table tbody th {
  font-weight: 700;
  color: var(--njrht-navy-darkest);
  white-space: nowrap;
}

.njrht-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--njrht-green-deep);
}

.njrht-check .njrht-icon {
  width: 18px;
  height: 18px;
}

.njrht-dash {
  color: var(--njrht-ink-muted);
}


/* 13. Focus areas ========================================================== */

.njrht-focus {
  background-color: var(--njrht-surface);
}

.njrht-focus__card {
  height: 100%;
  padding: 28px;
  background-color: var(--njrht-white);
  border-radius: var(--njrht-radius-lg);
  box-shadow: var(--njrht-shadow-card);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}


.njrht-focus__tile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 10px;
  background-color: var(--njrht-blue-light);
  color: var(--njrht-navy);
}

.njrht-focus__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--njrht-navy-darkest);
  margin: 0 0 8px;
}

.njrht-focus__text {
  font-size: 15px;
  color: var(--njrht-ink-muted);
  margin: 0;
}


/* 14. Program status timeline ============================================== */

.njrht-status {
  background-color: var(--njrht-surface-alt);
}

.njrht-timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

.njrht-timeline__line {
  position: absolute;
  top: 15px;
  left: 8%;
  right: 8%;
  height: 2px;
  background-color: var(--njrht-border);
  z-index: 0;
}

.njrht-timeline__step {
  text-align: center;
  margin-bottom: 32px;
}

.njrht-timeline__dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background-color: var(--njrht-white);
  border: 2px solid var(--njrht-border);
  position: relative;
  z-index: 1;
}

.njrht-timeline__dot--done {
  background-color: var(--njrht-green-deep);
  border-color: var(--njrht-green-deep);
  color: var(--njrht-white);
}

.njrht-timeline__dot--active {
  background-color: var(--njrht-white);
  border: 4px solid var(--njrht-yellow);
}

.njrht-timeline__date {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--njrht-ink-muted);
  margin-bottom: 4px;
}

.njrht-timeline__label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--njrht-navy-darkest);
}

/* Text state, so status is not carried by dot color alone (WCAG 1.4.1). */
.njrht-timeline__state {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--njrht-green-deep);
  margin-top: 4px;
}

.njrht-timeline__state--active {
  color: var(--njrht-blue-deep);
}


/* 15. Eligibility ========================================================== */

.njrht-elig {
  background-color: var(--njrht-surface-muted);
}

.njrht-elig__card {
  height: 100%;
  padding: 28px;
  background-color: var(--njrht-white);
  border-radius: var(--njrht-radius-lg);
  box-shadow: var(--njrht-shadow-card);
}

.njrht-badge {
  display: inline-block;
  padding: 5px 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background-color: var(--njrht-blue-light);
  color: var(--njrht-navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.njrht-elig__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--njrht-navy-darkest);
  margin: 0 0 8px;
}

.njrht-elig__text {
  font-size: 15px;
  color: var(--njrht-ink-muted);
  margin: 0;
}


/* 16. FAQ ================================================================== */
/* Native details/summary: no JS, no id attributes, no button elements. */

.njrht-faq {
  background-color: var(--njrht-surface);
}

.njrht-faq__list {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.njrht-faq__item {
  background-color: var(--njrht-white);
  border: 1px solid var(--njrht-border);
  border-radius: var(--njrht-radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
}

.njrht-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-size: 17px;
  font-weight: 700;
  color: var(--njrht-navy-darkest);
  cursor: pointer;
  list-style: none;
}

.njrht-faq__q::-webkit-details-marker {
  display: none;
}

.njrht-faq__q:hover {
  color: var(--njrht-blue-deep);
}

.njrht-faq__q:focus-visible {
  outline: 3px solid var(--njrht-blue-deep);
  outline-offset: -3px;
}

.njrht-faq__chev {
  flex-shrink: 0;
  color: var(--njrht-blue);
  transition: transform 0.2s ease;
}

.njrht-faq__item[open] .njrht-faq__chev {
  transform: rotate(180deg);
}

.njrht-faq__a {
  padding: 0 22px 20px;
  font-size: 16px;
  color: var(--njrht-ink-muted);
  margin: 0;
}


/* 17. Technical assistance ================================================= */

.njrht-ta {
  background-color: var(--njrht-surface-muted);
  margin-bottom: -4rem;
}

.njrht-ta__text {
  font-size: 17px;
  color: var(--njrht-ink-muted);
  max-width: 34em;
  margin: 0 0 28px;
}

.njrht-ta__contact {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 16px;
  color: var(--njrht-ink-muted);
}

.njrht-ta__contact .njrht-icon {
  color: var(--njrht-blue);
}

.njrht-ta__contact a {
  color: var(--njrht-blue-deep);
  font-weight: 600;
}

.njrht-ta__card {
  padding: 32px;
  background-color: var(--njrht-white);
  border-top: 4px solid var(--njrht-yellow);
  border-radius: var(--njrht-radius-lg);
  box-shadow: 0 16px 34px -14px rgba(7, 86, 147, 0.3);
}

.njrht-ta__card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--njrht-navy-darkest);
  margin: 0 0 10px;
}

.njrht-ta__card-text {
  font-size: 15px;
  color: var(--njrht-ink-muted);
  margin: 0 0 20px;
}

.njrht-ta__list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.njrht-ta__list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--njrht-ink-muted);
  margin-bottom: 10px;
}

.njrht-ta__list-item .njrht-icon {
  width: 18px;
  height: 18px;
  color: var(--njrht-green-deep);
  margin-top: 3px;
}

/* Contact email */
.njrht-ta__email {
  margin: 16px 0 0;
  font-size: 15px;
}

.njrht-ta__email a {
  color: var(--njrht-blue-deep);
  font-weight: 600;
}

.njrht-btn--outline {
  background-color: transparent;
  color: var(--njrht-navy-darkest);
  border-color: var(--njrht-navy-darkest);
}

.njrht-btn--outline:hover {
  background-color: var(--njrht-navy-darkest);
  color: var(--njrht-white);
}

.njrht-ta__register-text {
  margin: 28px 0 16px;
  padding-top: 24px;
  border-top: 1px solid var(--njrht-border);
  font-size: 16px;
  color: var(--njrht-ink-muted);
}

/* CMS disclaimer */
.njrht-disclaimer {
  padding: 24px 28px;
  background-color: var(--njrht-white);
  border: 1px solid var(--njrht-border);
  border-radius: var(--njrht-radius-lg);
}

.njrht-disclaimer__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--njrht-ink-muted);
  margin: 0 0 10px;
}

.njrht-disclaimer__text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--njrht-ink-muted);
  margin: 0;
}


/* 18. Featured grantee ===================================================== */

.njrht-featured {
  background-color: var(--njrht-surface);
}

.njrht-featured__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.njrht-spotlight {
  background-color: var(--njrht-white);
  border: 1px solid var(--njrht-border);
  border-radius: var(--njrht-radius-lg);
  overflow: hidden;
  box-shadow: var(--njrht-shadow-lg);
}

.njrht-spotlight__media {
  min-height: 320px;
}

.njrht-spotlight__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.njrht-spotlight__body {
  padding: 48px;
}

.njrht-tag {
  display: inline-block;
  background-color: var(--njrht-green-tint);
  color: var(--njrht-green-deep);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--njrht-radius);
  margin: 0 0 16px;
}

.njrht-spotlight__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--njrht-navy-darkest);
  margin: 0 0 20px;
}

.njrht-spotlight__text {
  font-size: 18px;
  color: var(--njrht-ink-muted);
  margin: 0 0 28px;
}

.njrht-spotlight__points {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  gap: 16px;
}

.njrht-spotlight__point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.njrht-spotlight__point .njrht-icon {
  color: var(--njrht-green-deep);
  margin-top: 2px;
}

.njrht-spotlight__point-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--njrht-navy-darkest);
  margin: 0 0 2px;
}

.njrht-spotlight__point-text {
  font-size: 16px;
  color: var(--njrht-ink-muted);
  margin: 0;
}


/* 21. Responsive =========================================================== */

@media (min-width: 768px) {
  .njrht-stats__item {
    border-right: 1px solid var(--njrht-border);
  }

  .njrht-stats__item:last-child {
    border-right: 0;
  }

  .njrht-plate__col + .njrht-plate__col {
    border-left: 1px solid var(--njrht-border);
  }
}

@media (max-width: 991px) {
  .njrht-ta__card {
    margin-top: 40px;
  }
}

@media (max-width: 767.98px) {

  .njrht-section > .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .njrht-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .njrht-hero {
    padding: 1.75rem;
    margin-top: 0;
  }

  .njrht-hero__card {
    padding: 2rem 1.75rem;
    margin-bottom: 2rem;
  }

  .njrht-hero__actions .njrht-btn {
    width: 100%;
  }

  .njrht-hero .njrht-eyebrow {
    display: block;
    width: fit-content;
    margin: 0 auto 1rem;
    font-size: 0.65rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
    padding: 8px 16px;
  }

  .njrht-triage {
    margin-top: -40px;
    padding: 0 1rem 2.5rem;
  }

  .njrht-triage::before {
    top: 40px;
  }

  .njrht-stats__item {
    border-bottom: 1px solid var(--njrht-border);
  }

  .njrht-stats__item:last-child {
    border-bottom: 0;
  }

  .njrht-plate__col:nth-child(odd) {
    border-right: 1px solid var(--njrht-border);
  }
  .njrht-plate__col:nth-child(n+3) {
    border-top: 1px solid var(--njrht-border);
  }

  .njrht-timeline__line {
    display: none;
  }

  /* Component tightening */
  .njrht-card,
  .njrht-def,
  .njrht-focus__card,
  .njrht-elig__card {
    padding: 22px;
  }

  .njrht-card--compact {
    padding: 16px 18px;
  }

  .njrht-card--compact .njrht-card__icon {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
  }

  .njrht-plate__col {
    padding: 20px 18px;
    text-align: center;
  }

  .njrht-table th,
  .njrht-table td {
    padding: 12px 14px;
    font-size: 15px;
  }

  .njrht-table-wrap {
    margin-top: 32px;
  }

  .njrht-ta__card {
    padding: 24px;
  }

  .njrht-faq__q {
    padding: 16px 18px;
    font-size: 16px;
  }

  .njrht-faq__a {
    padding: 0 18px 18px;
  }

  .njrht-featured__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .njrht-spotlight__body {
    padding: 32px;
  }

  .njrht-footer__inner {
    flex-direction: column;
  }

  .njrht-footer__aside {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .njrht *,
  .njrht *::before,
  .njrht *::after {
    transition: none !important;
  }

  .njrht-card:hover,
  .njrht-focus__card:hover,
  .njrht-news__link:hover .njrht-news__image,
  .njrht-card:hover .njrht-card__link .njrht-icon {
    transform: none;
  }
}


/* 9b. Triage img icons ===================================================== */
/* World Cup pattern: icons referenced as <img> files rather than inline SVG.
   Keeps the compact card styles. */

img.njrht-card__icon {
  display: block;
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}


/* 12a. About the program ================================================== */

.njrht-about {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--njrht-white);
}

.njrht-about__lede {
  font-size: 18px;
  color: var(--njrht-ink-muted);
  margin: 0 0 28px;
}

.njrht-pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.njrht-pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.njrht-pillar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: var(--njrht-blue-light);
  color: var(--njrht-navy);
}

.njrht-pillar__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--njrht-navy-darkest);
  margin: 0 0 4px;
}

.njrht-pillar__text {
  font-size: 15px;
  color: var(--njrht-ink-muted);
  margin: 0;
}

@media (max-width: 767.98px) {
  .njrht-pillars {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.njrht section[id] {
  scroll-margin-top: 2rem;
}


