
:root {
  --njdoh-navy:           #163753;
  --njdoh-blue:           #266091;
  --njdoh-teal:           #45a0c2;
  --njdoh-blue-light:     #88b8e0;
  --njdoh-sky:            #5dade2;
  --njdoh-link:           #185fa5;

  --njdoh-danger:         #720002;
  --njdoh-success:        #56930c;
  --njdoh-warning:        #f59e0b;

  --njdoh-white:          #ffffff;
  --njdoh-text:           #333333;
  --njdoh-text-muted:     #555555;
  --njdoh-text-slate:     #495057;
  --njdoh-border:         #dde8f5;

  --njdoh-surface-tint:   #f3f8fd;
  --njdoh-surface-cyan:   #dff0f7;
  --njdoh-surface-pale:   #ddeaf7;
  --njdoh-surface-blue:   #e8eef5;
  --njdoh-surface-danger: #fde8e8;
  --njdoh-surface-gray:   #f9f9f9;

  --njdoh-max-width:      1555px;
  --njdoh-radius:         8px;
  --njdoh-radius-sm:      6px;
  --njdoh-ink:            #1a1c1e;
  --njdoh-surface-muted:  #f4f6f9;
  --njdoh-radius-lg:      10px;
  --njdoh-hero-image:     none;

  --njdoh-blue-hover:     #265f8f;
  --njdoh-text-on-dark:   #f5f5f5;
  --njdoh-surface-alt:    #f8f9fa;
  --njdoh-surface-panel:  #f5f7f9;
  --njdoh-border-muted:   #e3e9ef;
  --njdoh-border-soft:    #e2e2e2;
  --njdoh-divider:        #d5dde5;
  --njdoh-alert-surface:  #fff8e1;
  --njdoh-alert-accent:   #92400e;
  --njdoh-alert-text:     #78350f;
  --njdoh-hotline-text:   #b5cef0;
  --njdoh-myth:           #b3261e;
  --njdoh-fact:           #146c2e;
}

html {
  animation: njdoh-page-fade 0.3s ease-in;
}
@keyframes njdoh-page-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  html { animation: none; }
}

.pageTitle {
  display: none;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  overflow: hidden;
  white-space: nowrap;
  margin: 0 !important;
  padding: 0;
}

.clearA {
  margin: 0;
  padding: 0;
  height: 0;
}

body {
  overflow-x: hidden;
}

.njdoh-topic-hero {
  background-color: transparent;
  background-image:
    linear-gradient(135deg, rgba(22,55,83,0.85) 0%, rgba(22,55,83,0.5) 40%, transparent 100%),
    var(--njdoh-hero-image);
  background-size: cover;
  background-position: center;
  padding: 4rem 0 3.5rem;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: -2.5rem;
}

.njdoh-topic-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, 
var(--njdoh-navy) 40%, rgba(22, 55, 83, 0.7) 65%, transparent 100%);
}

.njdoh-topic-hero .container,
.njdoh-topic-hero .container-fluid {
  position: relative;
  z-index: 1;
}

.njdoh-topic-hero__heading {
  font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--njdoh-white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.njdoh-topic-hero__subtext {
  font-size: clamp(1rem, 1.2vw + 0.25rem, 1.2rem);
  color: var(--njdoh-text-on-dark);
  line-height: 1.6;
  max-width: 700px;
  margin: 0;
}

/* ── Alert banner ─────────────────────────────────────── */

.njdoh-topic-alert {
  background: var(--njdoh-surface-cyan);
  border-bottom: 1px solid 
var(--njdoh-blue-light);
  padding: 0.65rem 0;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.njdoh-topic-alert__inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--njdoh-navy);
  line-height: 1.5;
}

.njdoh-topic-alert__inner p {
  margin: 0;
}

.njdoh-topic-alert__inner a {
  color: var(--njdoh-navy);
  font-weight: 600;
  text-decoration: underline;
}

.njdoh-topic-alert__inner img {
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(15%) sepia(50%) saturate(800%) hue-rotate(185deg);
}

/* ── Page layout ──────────────────────────────────────── */

.njdoh-content-layout {
  padding: 2.5rem 0 1rem;
}

.njdoh-content-layout__inner {
  max-width: 1555px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Topic grid: sidebar left, content right ──────────── */

.njdoh-topic-grid {
  display: grid;
  grid-template-columns: 3fr 9fr;
  gap: 3rem;
  align-items: start;
}

/* ── Sidebar ──────────────────────────────────────────── */

.njdoh-topic-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 2rem;
}

.njdoh-toc {
  background: var(--njdoh-surface-gray);
  border-left: 4px solid 
var(--njdoh-blue-light);
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  border-radius: 0 6px 6px 0;
}

.njdoh-toc__heading--mobile {
  display: none;
}

.njdoh-toc__heading--desktop {
  display: block;
  font-size: 1.25rem !important;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--njdoh-navy);
  margin: 0 0 0.75rem;
}

.njdoh-toc__list {
  display: flex;
  flex-direction: column;
}

.njdoh-toc__list a {
  color: var(--njdoh-navy);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.5;
  display: block;
  padding: 0.5rem 0;
  transition: color 0.15s;
}

.njdoh-toc__list a:last-child {
  border-bottom: none;
}

.njdoh-toc__list a:hover {
  color: var(--njdoh-blue);
  text-decoration: underline;
}

/* ── Sidebar image card ───────────────────────────────── */

.njdoh-topic-sidebar__image-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid 
var(--njdoh-border);
}

.njdoh-topic-sidebar__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.njdoh-topic-sidebar__image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 80%, transparent 100%);
  color: var(--njdoh-white);
}

.njdoh-topic-sidebar__image-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--njdoh-blue-light);
  margin: 0 0 4px;
}

.njdoh-topic-sidebar__image-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--njdoh-white);
  margin: 0;
  line-height: 1.3;
}

.njdoh-topic-sidebar__image-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--njdoh-white);
  margin: 0;
  line-height: 1.3;
}

.njdoh-topic-sidebar__image-text a {
  color: var(--njdoh-white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--njdoh-blue-light);
}
.njdoh-topic-sidebar__image-text a:hover,
.njdoh-topic-sidebar__image-text a:focus-visible {
  color: var(--njdoh-blue-light);
}

/* ── Content sections ─────────────────────────────────── */

.njdoh-topic-content {
  min-width: 0;
}

.njdoh-topic-section {
  padding: 2rem 0;
  border-top: 1px solid 
var(--njdoh-surface-blue);
}

.njdoh-topic-section:first-child {
  border-top: none;
  padding-top: 0;
}

/* ── Shared typography ────────────────────────────────── */

.njdoh-section-heading {
  font-size: clamp(1.5rem, 2vw + 0.25rem, 2rem);
  font-weight: 700;
  color: var(--njdoh-navy);
  line-height: 1.3;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
}

.njdoh-subheading {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--njdoh-blue);
  line-height: 1.3;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

.njdoh-body-text {
  font-size: 1rem;
  color: var(--njdoh-text);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.njdoh-content-list {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.njdoh-content-list li {
  font-size: 1rem;
  color: var(--njdoh-text);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

/* In-content links */
.njdoh-body-text a,
.njdoh-content-list a {
  color: var(--njdoh-link);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.njdoh-body-text a:hover,
.njdoh-content-list a:hover {
  color: var(--njdoh-blue);
}

/* Visible keyboard focus for all interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--njdoh-teal);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ── Callout ──────────────────────────────────────────── */

.njdoh-callout {
  background: var(--njdoh-surface-tint);
  border-left: 4px solid 
var(--njdoh-teal);
  border-radius: 0 6px 6px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.njdoh-callout__text {
  font-size: 1rem;
  color: var(--njdoh-navy);
  line-height: 1.7;
  margin: 0;
}

.njdoh-callout__text a {
  color: var(--njdoh-link);
  text-decoration: none;
}

.njdoh-callout__text a:hover {
  text-decoration: underline;
}

/* ── Alert ────────────────────────────────────────────── */

.njdoh-alert {
  background: var(--njdoh-alert-surface);
  border-left: 5px solid 
var(--njdoh-warning);
  border-radius: 0 6px 6px 0;
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin: 1.5rem 0;
}

.njdoh-alert__icon {
  flex: 0 0 36px;
  height: 36px;
  background: var(--njdoh-alert-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.njdoh-alert__icon img {
  filter: brightness(0) invert(1);
}

.njdoh-alert__content {
  flex: 1;
}

.njdoh-alert__heading {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--njdoh-alert-accent);
  margin: 0 0 0.5rem;
}

.njdoh-alert__body {
  font-size: 0.9rem;
  color: var(--njdoh-alert-text);
  line-height: 1.6;
  margin: 0;
}

/* ── Eyebrow ──────────────────────────────────────────── */

.njdoh-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--njdoh-surface-pale);
  margin-bottom: 0.4rem;
  display: block;
}

/* ── Resources callout ────────────────────────────────── */

.njdoh-resources-callout {
  background: var(--njdoh-blue);
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 3rem 0;
  margin-top: 2rem;
  margin-bottom: -3rem;
}

.njdoh-resources-callout__inner {
  max-width: 1555px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.njdoh-resources-callout__content {
  max-width: 700px;
  text-align: center;
}

.njdoh-resources-callout__heading {
  font-size: clamp(1.5rem, 2vw + 0.5rem, 2rem);
  font-weight: 700;
  color: var(--njdoh-white);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.njdoh-resources-callout__body {
  font-size: 1rem;
  color: var(--njdoh-white);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.njdoh-btn-primary {
  background: var(--njdoh-white);
  border: 2px solid 
var(--njdoh-teal);
  border-radius: 6px;
  color: var(--njdoh-navy);
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.7rem 1.4rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s;
}

.njdoh-btn-primary:hover {
  background: var(--njdoh-surface-pale);
  color: var(--njdoh-navy);
  text-decoration: none;
}

.njdoh-btn-navy {
  background: var(--njdoh-navy);
  border: 2px solid var(--njdoh-teal);
  border-radius: 6px;
  color: var(--njdoh-white);
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.7rem 1.4rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.njdoh-btn-navy:hover {
  background: var(--njdoh-white);
  color: var(--njdoh-navy);
  text-decoration: none;
}

/* ── Hotline bar ──────────────────────────────────────── */

.njdoh-hotline {
  background: var(--njdoh-navy);
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: -3rem;
}

.njdoh-hotline__inner {
  max-width: 1555px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.njdoh-hotline__inner p {
  font-size: clamp(0.9rem, 1vw + 0.25rem, 1.1rem);
  color: var(--njdoh-hotline-text);
  text-align: center;
  line-height: 1.6;
  margin: 0;
}

.njdoh-hotline__inner a {
  color: var(--njdoh-sky);
  font-weight: 600;
  text-decoration: none;
}

.njdoh-hotline__inner a:hover {
  text-decoration: underline;
}

.njdoh-hotline__inner strong {
  color: var(--njdoh-white);
}

/* ── Symptoms grid ────────────────────────────────────── */

.njdoh-symptoms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.njdoh-symptom-card {
  background: var(--njdoh-white);
  border: 1px solid 
var(--njdoh-border);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.2s;
}

.njdoh-symptom-card--warning:hover {
  border-color: var(--njdoh-teal);
}

.njdoh-symptom-card--danger:hover {
  border-color: var(--njdoh-danger);
}

.njdoh-symptom-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.njdoh-symptom-card__icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.njdoh-symptom-card__icon-wrap--warning {
  background: var(--njdoh-surface-cyan);
}

.njdoh-symptom-card__icon-wrap--danger {
  background: var(--njdoh-surface-danger);
}

.njdoh-symptom-card__icon-wrap img {
  width: 24px;
  height: 24px;
}

.njdoh-symptom-card__heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

.njdoh-symptom-card__heading--warning {
  color: var(--njdoh-blue);
}

.njdoh-symptom-card__heading--danger {
  color: var(--njdoh-danger);
}

/* ── Symptom list ─────────────────────────────────────── */

.njdoh-symptom-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.njdoh-symptom-list li {
  list-style: none !important;
}

.njdoh-symptom-list__item {
  font-size: 0.9rem;
  color: var(--njdoh-text);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding-left: 0 !important;
}

.njdoh-symptom-list__item::before {
  content: "";
  flex-shrink: 0;
  margin-top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
}

.njdoh-symptom-list__item--warning::before {
  background-color: var(--njdoh-teal);
}

.njdoh-symptom-list__item--danger::before {
  background-color: var(--njdoh-danger);
}

/* ── Symptom action callout ───────────────────────────── */

.njdoh-symptom-card__action {
  border-radius: 6px;
  padding: 0.85rem 1rem;
  margin-top: auto;
}

.njdoh-symptom-card__action--warning {
  background: rgba(69,160,194,0.1);
  border: 1px solid rgba(69,160,194,0.25);
}

.njdoh-symptom-card__action--danger {
  background: rgba(114,0,2,0.06);
  border: 1px solid rgba(114,0,2,0.2);
}

.njdoh-symptom-card__action-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.njdoh-symptom-card__action--warning .njdoh-symptom-card__action-label {
  color: var(--njdoh-blue);
}

.njdoh-symptom-card__action--danger .njdoh-symptom-card__action-label {
  color: var(--njdoh-danger);
}

.njdoh-symptom-card__action-body {
  font-size: 0.875rem;
  color: var(--njdoh-text);
  line-height: 1.55;
  margin: 0;
}

/* How Legionella grows and spreads: 3 steps (mirrors the flyer) */
.njdoh-steps {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.njdoh-step {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.njdoh-step__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.njdoh-step__number {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--njdoh-navy);
  color: var(--njdoh-white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.njdoh-step__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--njdoh-navy);
  margin: 0;
  line-height: 1.2;
}
.njdoh-step__desc {
  font-size: 0.95rem;
  color: var(--njdoh-text);
  line-height: 1.6;
  margin: 0 0 1rem;
  flex: 1;
}
.njdoh-step__image {
  border-radius: 8px;
  overflow: hidden;
}
.njdoh-step__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.njdoh-step__arrow {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  color: var(--njdoh-navy);
  align-self: flex-start;
  margin-top: 0.4rem;
}


/* ── Prevention checklist cards ───────────────────────── */

.njdoh-checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.njdoh-checklist-card {
  background: var(--njdoh-white);
  border: 1px solid 
var(--njdoh-border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.njdoh-checklist-card__image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.njdoh-checklist-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.njdoh-checklist-card__number {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--njdoh-navy);
  color: var(--njdoh-white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.njdoh-checklist-card.is-checked {
  border-color: var(--njdoh-success);
  box-shadow: 0 2px 12px rgba(86,147,12,0.12);
}

.njdoh-checklist-card.is-checked .njdoh-checklist-card__number {
  background: var(--njdoh-success);
}

.njdoh-checklist-card__body {
  padding: 1.25rem 1.25rem 0;
  flex: 1;
}

.njdoh-checklist-card__heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--njdoh-navy);
  margin-bottom: 0.5rem;
}

.njdoh-checklist-card__desc {
  font-size: 0.9rem;
  color: var(--njdoh-text);
  line-height: 1.55;
  margin: 0;
}

.njdoh-checklist-card__check {
  padding: 1rem 1.25rem;
  border-top: 1px solid 
var(--njdoh-surface-blue);
  margin-top: 1rem;
}

.njdoh-checklist-card__label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--njdoh-navy);
  cursor: pointer;
  margin: 0;
}

.njdoh-checklist-card__input {
  width: 18px;
  height: 18px;
  accent-color: var(--njdoh-success);
  cursor: pointer;
  flex-shrink: 0;
}

/* Protect your home's water: flyer-style icon tiles */
.njdoh-protect {
  margin-top: 1.25rem;
  background: var(--njdoh-surface-panel);
  border: 1px solid var(--njdoh-border-muted);
  border-radius: 8px;
  padding: 0 1rem;
}
.njdoh-protect__row {
  display: flex;
}
.njdoh-protect__row--secondary {
  justify-content: center;
  border-top: 1px solid var(--njdoh-divider);
}
.njdoh-protect__tile {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  padding: 1.75rem 1.25rem;
  border-left: 1px solid var(--njdoh-divider);
}
.njdoh-protect__tile:first-child {
  border-left: none;
}

.njdoh-protect__icon {
  display: block;
  width: 55px;
  height: 55px;
  margin: 0 auto 0.85rem;
  object-fit: contain;
}
.njdoh-protect__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--njdoh-navy);
  margin: 0 0 0.4rem;
}
.njdoh-protect__text {
  font-size: 0.9rem;
  color: var(--njdoh-text);
  line-height: 1.55;
  margin: 0;
}
.njdoh-protect__text a {
  color: var(--njdoh-link);
}

/* For building owners: 4 water systems */
.njdoh-systems-grid {
  margin-top: 1.25rem;
}
.njdoh-system-col {
  margin-bottom: 1.25rem;
}
.njdoh-system-card {
  background: var(--njdoh-white);
  border: 1px solid var(--njdoh-border);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.njdoh-system-card__image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.njdoh-system-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.njdoh-system-card__body {
  padding: 1.25rem 1.5rem;
}
.njdoh-system-card__heading {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--njdoh-navy);
  margin: 0 0 0.75rem;
}
.njdoh-system-card__number {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--njdoh-teal);
  color: var(--njdoh-white);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.njdoh-system-card__list {
  padding-left: 1.2rem;
  margin: 0;
}
.njdoh-system-card__list li {
  font-size: 0.9rem;
  color: var(--njdoh-text);
  line-height: 1.6;
  margin-bottom: 0.35rem;
}

/* ─── Myth vs Fact ──────────────────────────────────── */
.njdoh-mvf-grid {
  margin-top: 1.5rem;
}

.njdoh-mvf-col {
  margin-bottom: 1.25rem;
}

.njdoh-mvf-card {
  border: 1px solid 
var(--njdoh-border-soft);
  border-radius: 10px;
  padding: 1.25rem;
  background-color: var(--njdoh-white);
  height: 100%;
}

.njdoh-mvf-card__row {
  display: flex;
  align-items: flex-start;
}

.njdoh-mvf-card__row--myth {
  padding-bottom: 0.85rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid #eee;
}

.njdoh-mvf-icon {
  flex-shrink: 0;
  margin-top: 0.15rem;
  margin-right: 0.5rem;
}

.njdoh-mvf-label {
  flex-shrink: 0;
  width: 48px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

.njdoh-mvf-card__row--myth .njdoh-mvf-label {
  color: var(--njdoh-myth);
}

.njdoh-mvf-card__row--fact .njdoh-mvf-label {
  color: var(--njdoh-fact);
}

.njdoh-mvf-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  color: var(--njdoh-text);
}

#toggleAll {
  background-color: var(--njdoh-navy);
  color: var(--njdoh-white);
  border: 2px solid var(--njdoh-teal);
  padding: 6px 12px;
  border-radius: 5px;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
}
#toggleAll:hover {
  background-color: var(--njdoh-blue-hover);
  color: var(--njdoh-surface-alt);
  border-color: var(--njdoh-blue-hover);
}
#toggleAll.btn-outline-primary {
  background-color: var(--njdoh-surface-alt);
  color: var(--njdoh-navy);
  border-color: var(--njdoh-blue-hover);
}
#toggleAll.btn-outline-primary:hover {
  background-color: var(--njdoh-blue-hover);
  color: var(--njdoh-surface-alt);
  border-color: var(--njdoh-navy);
}
.accordion .toggle-icon { float: right; }
.close-icon { display: inline-block; }
.open-icon { display: none; }
.collapsed .open-icon { display: inline-block; }
.collapsed .close-icon { display: none; }
.accordion .card {
  border: 2px solid var(--njdoh-navy);
  margin-bottom: 7px;
  position: relative;
  overflow: hidden;
}
.accordion .card-header {
  cursor: pointer;
  border-bottom: 1px solid #d8d8d8;
  background-color: var(--njdoh-surface-alt);
  position: relative;
  z-index: 1;
  padding: 15px 20px;
}
.accordion .card-header:hover { background-color: #e9f1f7; }
.accordion .card-header.active {
  border: 3px solid var(--njdoh-blue-light);
  background-color: #f0f8ff;
  z-index: 2;
  margin: -4px;
}
.accordion .card-header.active + .collapse { border-top: 2px solid var(--njdoh-navy); }
.accordion .card:not(:last-child) { border-bottom: 2px solid var(--njdoh-navy); }
.accordion .card-header h5 { font-size: 1.1rem; font-weight: 700; color: var(--njdoh-navy); margin: 0; }


/* ── Responsive ───────────────────────────────────────── */

@media (min-width: 992px) {
  .njdoh-toc__toggle {
    display: none;
  }

  .njdoh-toc__list--collapsed {
    display: flex !important;
  }
}

@media (max-width: 991.98px) {
  .njdoh-topic-grid {
    grid-template-columns: 1fr;
  }

  .njdoh-topic-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .njdoh-toc {
    flex: 1 1 100%;
  }

.njdoh-toc__heading--desktop {
    display: none;
  }

  .njdoh-toc__heading--mobile {
    display: block;
    font-size: 1rem !important;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--njdoh-navy);
    margin: 0;
  }

  .njdoh-toc__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-bottom: 0;
  }

  .njdoh-toc__toggle-icon {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--njdoh-teal);
    line-height: 1;
    flex-shrink: 0;
  }

  .njdoh-toc__list--collapsed {
    display: none;
  }

  .njdoh-toc__list--expanded {
    display: flex;
    margin-top: 0.75rem;
  }

  .njdoh-topic-sidebar__image-card {
    display: none;
  }

.njdoh-steps {
    flex-direction: column;
  }

  .njdoh-step__arrow {
    align-self: center;
    margin: 0.25rem 0;
    transform: rotate(90deg);
  }

  .njdoh-step__desc {
    flex: 0 0 auto;
    margin-bottom: 0.75rem;
  }

  .njdoh-step__image img {
    height: 200px;
  }

  .njdoh-symptoms-grid {
    grid-template-columns: 1fr 1fr;
  }

  .njdoh-checklist-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767.98px) {
  .njdoh-topic-hero {
    padding: 2rem 0;
  }

.njdoh-content-layout__inner {
    padding: 0 1rem;
  }

  .njdoh-topic-hero::before {
    background: rgba(22, 55, 83, 0.82);
  }

  .njdoh-symptoms-grid {
    grid-template-columns: 1fr;
  }

  .njdoh-checklist-grid {
    grid-template-columns: 1fr;
  }

  .njdoh-content-layout__inner {
    padding: 0 1rem;
  }

.njdoh-protect__row,
  .njdoh-protect__row--secondary {
    flex-direction: column;
  }

  .njdoh-protect__tile,
  .njdoh-protect__row--secondary .njdoh-protect__tile {
    flex: 1 1 auto;
    border-left: none;
    border-top: 1px solid var(--njdoh-divider);
  }

  .njdoh-protect__row:first-child .njdoh-protect__tile:first-child {
    border-top: none;
  }
}
