  
body {
  overflow-x: hidden;
}

:root {
  /* Shared palette (identical across all templates) */
  --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;
}

.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; }

html { opacity: 0; transition: opacity 0.3s ease; }

body { overflow-x: hidden; }


.njdoh-topic-hero {
  background: linear-gradient(135deg, rgba(22,55,83,0.85) 0%, rgba(22,55,83,0.5) 40%, transparent 100%);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 0 3.5rem;
  width: 100vw;
  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--program {
  background: linear-gradient(
    115deg,
    var(--njdoh-navy) 0%,
    var(--njdoh-navy) 55%,
    var(--njdoh-blue) 100%
  );
}

.njdoh-topic-hero--program::before {
  content: none;
}

.njdoh-topic-hero__heading {
  font-size: clamp(2rem, 4vw + 0.5rem, 3rem);
  font-weight: 700;
  color: #ffffff;
  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: #f5f5f5;
  line-height: 1.6;
  max-width: 700px;
  margin: 0;
}

/* ── 3. 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);
}

/* ── 4. Buttons ───────────────────────────────────────── */

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

.njdoh-btn-dark:hover {
  background-color: #ffffff;
  color: var(--njdoh-navy);
  text-decoration: none;
}

.njdoh-btn-primary {
  background: #ffffff;
  border: 2px solid var(--njdoh-teal);
  border-radius: var(--njdoh-radius-sm);
  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;
}

/* ── 5. Page layout ───────────────────────────────────── */

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

.njdoh-content-layout__inner {
  max-width: var(--njdoh-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

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

.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;
}

.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: #ffffff;
}

.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: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.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;
}

/* ── 6. 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;
}

/* ── 7. Callout / Alert / Eyebrow ─────────────────────── */

.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;
}

.njdoh-alert {
  background: #fff8e1;
  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: #92400e;
  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: #92400e;
  margin: 0 0 0.5rem;
}

.njdoh-alert__body {
  font-size: 0.9rem;
  color: #78350f;
  line-height: 1.6;
  margin: 0;
}

.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;
}

/* ── 8. Resources callout / Hotline bar ───────────────── */

.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: var(--njdoh-max-width);
  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: #ffffff;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.njdoh-resources-callout__body {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

.njdoh-hotline__inner {
  max-width: var(--njdoh-max-width);
  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: #b5cef0;
  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: #ffffff;
}

/* ── 9. Symptom cards ──────────────────────────────────── */

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

.njdoh-symptom-card {
  background: #ffffff;
  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);
}

.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);
}

.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;
}

/* ── 10. Numbered steps ────────────────────────────────── */

.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: #ffffff;
  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;
}

/* ── 11. Checklist cards ───────────────────────────────── */

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

.njdoh-checklist-card {
  background: #ffffff;
  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.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;
}

/* ── 12. Protect tiles ─────────────────────────────────── */

.njdoh-protect {
  margin-top: 1.25rem;
  background: #f5f7f9;
  border: 1px solid #e3e9ef;
  border-radius: 8px;
  padding: 0 1rem;
}

.njdoh-protect__row {
  display: flex;
}

.njdoh-protect__row--secondary {
  justify-content: center;
  border-top: 1px solid #d5dde5;
}

.njdoh-protect__tile {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  padding: 1.75rem 1.25rem;
  border-left: 1px solid #d5dde5;
}

.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);
}

/* ── 13. Systems grid ──────────────────────────────────── */

.njdoh-systems-grid {
  margin-top: 1.25rem;
}

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

.njdoh-system-card {
  background: #ffffff;
  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: #ffffff;
  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;
}

/* ── 14. Myth vs. Fact ─────────────────────────────────── */

.njdoh-mvf-grid {
  margin-top: 1.5rem;
}

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

.njdoh-mvf-card {
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  padding: 1.25rem;
  background-color: #fff;
  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: #b3261e;
}

.njdoh-mvf-card__row--fact .njdoh-mvf-label {
  color: #146c2e;
}

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

/* ── 15. Utility grids: UV bento / Gear / Group / Contact / Family ── */

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

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

.njdoh-gear-card {
  background: var(--njdoh-surface-tint);
  border: 1px solid var(--njdoh-border);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.njdoh-gear-card__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
}

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

.njdoh-gear-card__body {
  font-size: 0.875rem;
  color: var(--njdoh-text-muted);
  line-height: 1.55;
  margin: 0;
}

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

.njdoh-group-card {
  background: #ffffff;
  border: 1px solid var(--njdoh-border);
  border-radius: 8px;
  padding: 1.5rem;
}

.njdoh-group-card__heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--njdoh-navy);
  margin-bottom: 0.6rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--njdoh-border);
}

.njdoh-group-card__body {
  font-size: 0.9rem;
  color: var(--njdoh-text-slate);
  line-height: 1.65;
  margin: 0;
}

.njdoh-contact-card {
  background: var(--njdoh-surface-gray);
  border: 2px solid #6551a5;
  border-radius: 8px;
  padding: 1.5rem;
}

.njdoh-contact-card__heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--njdoh-navy);
  margin: 0 0 0.75rem;
}

.njdoh-contact-card__body {
  font-size: 0.9rem;
  color: var(--njdoh-text);
  line-height: 1.65;
  margin: 0;
}

.njdoh-contact-card__body a {
  color: var(--njdoh-link);
}

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

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

.njdoh-family-card {
  background: var(--njdoh-surface-tint);
  border: 1px solid var(--njdoh-border);
  border-radius: 8px;
  padding: 1.5rem;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
}

.njdoh-family-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-decoration: none;
  color: inherit;
}

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

.njdoh-family-card__body {
  font-size: 0.875rem;
  color: var(--njdoh-text-slate);
  line-height: 1.55;
  margin: 0;
}

/* ── 16. Accordion ("For professionals") ──────────────── */

#toggleAll {
  background-color: var(--njdoh-navy);
  color: #ffffff;
  border: 2px solid var(--njdoh-teal);
  padding: 6px 12px;
  border-radius: 5px;
  font-weight: 415;
  transition: background-color 0.3s ease, color 0.3s ease;
}

#toggleAll:hover {
  background-color: #265f8f;
  color: #f8f9fa;
  border-color: #265f8f;
}

#toggleAll.btn-outline-primary {
  background-color: #f8f9fa;
  color: var(--njdoh-navy);
  border-color: #265f8f;
}

#toggleAll.btn-outline-primary:hover {
  background-color: #265f8f;
  color: #f8f9fa;
  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: #f8f9fa;
  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; }

/* ── 17. 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;
  }

  .njdoh-uv-bento {
    grid-template-columns: 1fr !important;
  }
}

@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-uv-bento {
    grid-template-columns: 1fr !important;
  }

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

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

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

  .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 #d5dde5;
  }

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