html {
  scroll-behavior: smooth;
}

:root {
  --border: #d9d9d9;
  --text: #1a1a1a;
  --muted: #555;
  --bg: #fff;
  --panel: #f7f7f7;
  --focus: #0b5fff;
  --view-all: #003588;
  --radius: 16px;
  --gap: 16px;
  --max: 1100px;
  --shadow: 0px 6px 16px rgba(32, 54, 122, 0.18);
  --card: #fff;
  --card-primaryColor: #003588;
  --article-shadow: 0px 6px 16px rgba(11, 95, 255, 0.18);
  --article-border: #b2ccfd;

  --modal-radius: 14px;
  --modal-border: rgba(15, 23, 42, 0.12);
  --modal-shadow: 0 18px 50px rgba(2, 6, 23, 0.18);
  --modal-bg: #fff;
  --modal-muted: #64748b;
  --modal-text: #002454;
  --modal-accent: #2563eb;

  --wf-blue: #003f70;
  --wf-light-blue: #376ea6;
  --wf-blue-dark: #002b4d;
  --wf-blue-soft: #e8f1f8;
  --wf-gold: #f3b125;
  --wf-red: #7b0000;
  --wf-gray-50: #f7f9fb;
  --wf-gray-100: #eef2f5;
  --wf-gray-300: #d7e0e8;
  --wf-text: #25313b;
  --wf-muted: #5f6f7c;
  --wf-white: #ffffff;
  --wf-radius: 18px;
  --wf-shadow: 0 14px 35px rgba(0, 43, 77, 0.12);

  --tt-navy: #061c60;
  --tt-blue: #0b5fff;
  --tt-purple: #633075;
  --tt-teal: #0f766e;
  --tt-orange: #b45309;
  --tt-text: #1f2937;
  --tt-muted: #475569;
  --tt-border: rgba(6, 28, 96, 0.14);
  --tt-shadow: 0 10px 24px rgba(6, 28, 96, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
}

#dph-leftnav {
  display: none !important;
}

main {
  margin: 0 auto 1rem auto;
}

a {
  color: inherit;
  text-decoration: none !important;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  font-weight: 500;
}

a:hover {
  text-decoration-thickness: 2px;
}

h3 .lowercase {
  text-transform: lowercase !important;
  font-variant: normal;
}

.noBold {
  font-weight: normal !important;
}

#second-nav .utility-links {
  background-color: #633075 !important;
}

.container {
  padding: 1rem;
  margin: 1rem auto;
  width: 1000px;
  max-width: 100%;
  overflow-x: hidden;
  box-shadow:
    0 5px 10px rgba(154, 160, 185, 0.05),
    0 15px 40px rgba(166, 173, 201, 0.4);
  border-radius: 6px;
}

/* ========================================
   Shared Utility / Accessibility
======================================== */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.no-break {
  display: inline-block;
}

.year-highlight {
  padding: 2px 6px;
  border-radius: 6px;
  font-weight: 800;
  color: #061c60;
  background: rgba(11, 95, 255, 0.12);
}

#mpox-hme .actions {
  margin: 0 auto 1rem;
  border-radius: 0 0 14px 14px;
}

#mpox-hme #dph-mycarousel+nav.actions a {
  font-size: 0.85rem;
}

/* ========================================
   General Inputs / Links
======================================== */
.emergency-link {
  font-weight: bold;
  color: #d32f2f;
  text-decoration: underline;
}

.emergency-link:hover {
  color: #a30000;
  text-decoration-thickness: 2px;
}

#main-content input[type="text"],
#main-content input[type="email"],
#main-content input[type="password"],
#main-content input[type="tel"],
#main-content input[type="url"],
#main-content input[type="number"],
#main-content input[type="search"],
#main-content textarea,
#main-content select {
  background-color: transparent !important;
  box-shadow: 0 0 0 0.25rem transparent !important;
}

#main-content input[type="search"] {
  width: 100%;
  max-width: 640px;
}

/* ========================================
   Left Navigation
======================================== */
#left-menu>h1,
.left-menu-info-box>h1,
#left-menu>h2,
.left-menu-info-box>h2 {
  background-color: #061c60 !important;
  font-weight: 400 !important;
  margin: 0 !important;
  padding: 0.5rem 0.75rem !important;
  font-size: 0.9rem !important;
  color: #fff !important;
}

#left-menu details>summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

#left-menu details>summary::-webkit-details-marker {
  display: none;
}

#left-menu details>summary i {
  transition: transform 300ms ease;
}

#left-menu details>ul {
  margin: 0;
  padding-left: 0.2rem;
  overflow: hidden;
  height: 0;
  opacity: 0;
  transform: translateY(-6px);
}

#left-menu ul li a,
#left-menu ul li details summary span {
  font-size: clamp(0.8rem, 1.8vw, 0.85rem);
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    "Noto Sans",
    "Liberation Sans",
    Arial,
    sans-serif,
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol",
    "Noto Color Emoji";
  font-weight: 600;
}

#left-menu ul ul li a {
  font-size: clamp(0.7rem, 1.6vw, 0.75rem);
  font-weight: 500;
}

#left-menu a {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  flex-wrap: nowrap;
}

#left-menu a>i {
  flex: 0 0 auto;
  margin-top: 0.15rem;
}

#left-menu a>span,
#left-menu a>.nav-text,
#left-menu details>summary>span {
  flex: 1 1 auto;
  min-width: 0;
}

#left-menu details>summary>span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#left-menu details>summary>span i {
  flex: 0 0 auto;
}

#left-menu ul li>a {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.55rem !important;
}

#left-menu ul li>a>i {
  flex: 0 0 24px !important;
  width: 24px !important;
  text-align: center !important;
  margin-top: 0.3rem !important;
}

#left-menu ul li>a>span {
  display: block !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  white-space: normal !important;
}

nav#left-menu {
  position: sticky;
  top: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  align-self: flex-start;
  z-index: 1000;
}

/* ========================================
   Hero / Intro
======================================== */
header.hero {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero .last-updated {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8f0fe;
  color: #1e3a8a;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: clamp(0.7rem, 1.6vw, 0.75rem);
  font-weight: 600;
  border: 1px solid #c7d2fe;
  margin-bottom: 0.6em;
}

h1 {
  font-size: clamp(2.16rem, 3.105vw, 2.97rem) !important;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  font-weight: 700 !important;
}

.hero-subheader {
  position: relative;
  margin: 14px 0 6px;
  padding-bottom: 0.75rem;

  color: var(--wf-blue-dark, #061c60);

  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.15;
}

.hero-subheader::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 84px;
  height: 4px;
  background: var(--wf-gold);
  box-shadow: 0 2px 8px rgba(214, 164, 57, 0.35);
  border-radius: 999px;
}

.intro {
  margin: 0;
  color: #222;
  font-size: 0.95rem;
}

.intro-lead {
  padding: 0.25rem;
  /*border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    border: 1px solid rgba(6, 28, 96, 0.10);
    box-shadow: 0 6px 16px rgba(6, 28, 96, 0.06);*/
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.55rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(6, 28, 96, 0.08);
  color: #061c60;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section-kicker i {
  font-size: 0.8rem;
}

.intro-text {
  display: block;
}

/* ========================================
   Top Action Buttons
======================================== */

.actions {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.6rem;

  width: 100%;
  max-width: 1000px;

  margin: 1rem auto 0.5rem;
  padding: 0.75rem;

  background: #003f70;
  /*background: linear-gradient(180deg, #f8fafc 0%, #f3f7fa 100%);*/
  border: 1px solid rgba(11, 95, 255, 0.15);
  border-radius: 16px;

  box-shadow: 0 6px 18px rgba(6, 28, 96, 0.08);
}

/* ========================================
   Second Navigation
======================================== */

nav#dph-secondnav.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;

  width: fit-content;
  margin: 1.5rem auto 0 !important;
  padding: 0.75rem 1rem;

  background: #fff;
  border: 1px solid #dbe5f1;
  border-radius: 999px;

  box-shadow: 0 4px 16px rgba(0, 32, 91, 0.08);
}

nav#dph-secondnav.actions .btn {
  flex-direction: row;
  gap: 0.6rem;
  min-height: auto;
  border-radius: 999px;
  box-shadow: none;
  font-size: 0.95rem;
}

nav#dph-secondnav.actions .btn.secondary {
  background: transparent;
  border-color: #dbe5f1;
}

nav#dph-secondnav.actions .btn:hover {
  transform: translateY(-1px);
}

/* ========================================
   Main Quick Links
======================================== */

.actions .btn {
  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  gap: 0.55rem;

  min-height: 84px;
  padding: 0.7rem 0.55rem;

  text-align: center;
  text-decoration: none;
  white-space: normal;

  border-radius: 12px;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.actions .btn:hover,
.actions .btn:focus-visible {
  transform: translateY(-3px);
}

.actions .btn i {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 2.6rem;
  height: 2.6rem;

  border-radius: 50%;

  background: rgba(0, 63, 112, 0.1);
  color: var(--wf-blue);

  font-size: 1.1rem;
  flex-shrink: 0;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.actions .btn span {
  display: block;

  max-width: 11ch;

  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.actions .btn:hover i,
.actions .btn:focus-visible i {
  background: var(--wf-blue);
  color: #fff;
  transform: scale(1.08);
}

/* ========================================
   Generic Buttons
======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 12px;

  border: 1px solid var(--border);
  border-radius: 12px;

  background: #fff;
  box-shadow: var(--shadow);

  text-decoration: none;

  font-size: 0.85rem;
  font-weight: 600;
}

.btn.primary {
  background: var(--wf-blue);
  border-color: var(--wf-blue);
  color: #fff;
}

.btn.primary i {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.btn.secondary {
  background: #fff;
  color: #111;
}

.btn.reset-dark {
  background: #0f172a !important;
  border: 1px solid #0f172a !important;
  color: #fff !important;
  font-weight: 800;
}

.btn.reset-dark:hover,
.btn.reset-dark:focus-visible {
  filter: brightness(1.1);
}

/* ========================================
   Info Panels / Callouts
======================================== */
.info-panel {
  display: block;
  padding: 0.5rem 0.55rem;
}

.info-panel>*+* {
  margin-top: 0.9rem;
}

.info-panel .hero-subheader,
.info-panel .intro {
  margin: 0;
}

.info-panel .current-situation-callout {
  margin-top: 0;
}

.callouts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 16px;
}

.callout {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  background: #fff;
}

.callout p {
  margin: 0;
  color: var(--muted);
}

.callout-rich {
  padding: 1rem;
}

.key-facts-callout {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #d6e4ff;
  border-left: 6px solid #4f7cff;
  border-right: 6px solid #4f7cff;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(79, 124, 255, 0.1);
}

.key-facts-callout::before {
  content: "Key Facts";
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #21408f;
  background: rgba(79, 124, 255, 0.12);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}

.current-situation-callout {
  width: 100%;
  margin-top: 16px;
  padding: 18px;
  background: linear-gradient(180deg, #eef4ff 0%, #e3edff 100%);
  border: 1px solid #bcd0ff;
  border-left: 6px solid #003588;
  border-right: 6px solid #003588;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 53, 136, 0.12);
}

.current-situation-callout::before {
  content: "Current Situation";
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #003588;
  background: rgba(0, 53, 136, 0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}

/* Make current situation match overview styling */
.current-situation-callout .icon-list>li {
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(6, 28, 96, 0.12);
  box-shadow: 0 8px 20px rgba(6, 28, 96, 0.08);
}

.current-situation-callout .icon-list {
  gap: 0.9rem;
}

.current-situation-callout .icon-list__content strong {
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
}

.current-situation-callout .icon-list__content p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.current-situation-callout ul {
  margin: 0;
}

.current-situation-callout li {
  margin-bottom: 10px;
  color: #333;
  line-height: 1.6;
}

.current-situation-callout li:last-child {
  margin-bottom: 0;
}

.current-situation-callout li strong {
  display: inline;
}

.risk-eyebrow-inline {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1e224f;
  background: rgba(37, 42, 105, 0.12);
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  margin: 0 auto 0.25rem auto;
  transform: translateY(-4px);
  max-width: fit-content;
}

.callout-lead {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.65rem;
  align-items: start;
  margin: 0 0 0.9rem;
  padding: 0.75rem 0.85rem;
  background: rgba(6, 28, 96, 0.05);
  border: 1px solid rgba(6, 28, 96, 0.1);
  border-radius: 12px;
  color: #0f172a;
  font-weight: 600;
}

.callout-lead i {
  color: #061c60;
  margin-top: 0.15rem;
}

.icon-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.icon-list>li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(6, 28, 96, 0.1);
  box-shadow: 0 4px 12px rgba(6, 28, 96, 0.06);
}

.icon-list__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f0f5ff;
  border: 1px solid rgba(11, 95, 255, 0.16);
  color: #0b5fff;
  font-size: 1rem;
}

.icon-list__content>strong {
  display: block;
  margin: 0 0 0.25rem;
  color: #061c60;
  font-size: 1rem;
}

.icon-list__content p {
  margin: 0;
  color: #333;
  line-height: 1.6;
}

.sub-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;

  margin: 1.25rem 0;
  padding: 1rem;

  list-style: none;

  background: var(--wf-gray-50);
  border: 1px solid var(--wf-gray-300);
  border-radius: 12px;
}

.sub-list li {
  position: relative;

  margin: 0;
  padding: 0.8rem 0.9rem 0.8rem 2rem;

  background: var(--wf-white);
  border: 1px solid var(--wf-gray-300);
  border-radius: 8px;

  color: var(--wf-text);
  line-height: 1.55;
}

.sub-list li::before {
  content: "";
  position: absolute;
  top: 1.15rem;
  left: 0.9rem;

  width: 7px;
  height: 7px;

  background: var(--wf-blue);
  border-radius: 50%;
}

@media (max-width: 700px) {
  .sub-list {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Mpox Overview Accordion
   Matches the Testing & Treatment visual system
======================================== */

.mpox-overview {
  width: 100%;
  margin: 1.25rem 0;
  padding: 1rem;

  background: #f6f8fc;
  border: 1px solid var(--tt-border);
  border-radius: 24px;
}

/* Section header */

.mpox-overview__header {
  display: flex;
  align-items: center;
  gap: 0.9rem;

  margin: 0;
  padding: 0.5rem 0.5rem 1rem;
}

.mpox-overview__header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;
  flex: 0 0 44px;

  background: #eef4ff;
  border-radius: 14px;
  color: var(--tt-blue);

  font-size: 1rem;
}

.mpox-overview__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;

  margin: 0 0 0.35rem;
  padding: 0.3rem 0.65rem;

  background: rgba(6, 28, 96, 0.08);
  border-radius: 999px;
  color: var(--tt-navy);

  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mpox-overview__title {
  margin: 0;

  color: var(--tt-navy);

  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  text-transform: capitalize;
}

/* Accordion group */

.mpox-accordion {
  display: grid;
  gap: 0.9rem;
}

.mpox-accordion__item {
  overflow: hidden;

  background: #fff;
  border: 1px solid var(--tt-border);
  border-radius: 20px;

  box-shadow: 0 6px 16px rgba(6, 28, 96, 0.07);

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.mpox-accordion__item[open] {
  border-color: rgba(6, 28, 96, 0.24);
  box-shadow: var(--tt-shadow);
}

/* Accordion summary */

.mpox-accordion__summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: center;

  min-height: 76px;
  padding: 1rem 1.15rem;

  background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
  color: var(--tt-navy);

  cursor: pointer;
  list-style: none;

  transition: background 0.2s ease;
}

.mpox-accordion__summary::-webkit-details-marker {
  display: none;
}

.mpox-accordion__summary::marker {
  content: "";
}

.mpox-accordion__summary:hover {
  background: linear-gradient(180deg, #f9fbff 0%, #f1f6ff 100%);
}

.mpox-accordion__summary:focus-visible {
  position: relative;
  z-index: 1;

  outline: 3px solid var(--tt-blue);
  outline-offset: -3px;
}

/* Summary content */

.mpox-accordion__summary-main {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;

  min-width: 0;
}

.mpox-accordion__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 52px;
  height: 52px;

  background: var(--tt-blue);
  border-radius: 16px;
  color: #fff;

  font-size: 1.15rem;
}

.mpox-accordion__item:nth-child(2) .mpox-accordion__icon {
  background: var(--tt-purple);
}

.mpox-accordion__item:nth-child(3) .mpox-accordion__icon {
  background: var(--tt-teal);
}

.mpox-accordion__item:nth-child(4) .mpox-accordion__icon {
  background: var(--tt-orange);
}

.mpox-accordion__heading {
  display: grid;
  gap: 0.2rem;

  min-width: 0;
}

.mpox-accordion__title {
  display: block;

  color: var(--tt-navy);

  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: capitalize;
}

.mpox-accordion__description {
  display: block;
  overflow: hidden;

  max-height: 3rem;

  color: var(--tt-muted);

  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  opacity: 1;

  transition:
    max-height 0.2s ease,
    opacity 0.2s ease;
}

.mpox-accordion__item[open] .mpox-accordion__description {
  max-height: 0;
  opacity: 0;
}

/* Chevron */

.mpox-accordion__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;

  width: 34px;
  height: 34px;
  flex: 0 0 34px;

  background: #eef4ff;
  border-radius: 50%;
  color: #003588;

  transition:
    background 0.2s ease,
    transform 0.22s ease;
}

.mpox-accordion__chevron i {
  font-size: 0.9rem;
}

.mpox-accordion__item[open] .mpox-accordion__chevron {
  background: #e5edff;
  transform: rotate(180deg);
}

/* Animated accordion panel.
   Grid-row animation avoids fixed heights and does not require JS. */

.mpox-accordion__panel {
  display: grid;
  grid-template-rows: 0fr;

  opacity: 0;

  transition:
    grid-template-rows 0.35s ease,
    opacity 0.25s ease;
}

.mpox-accordion__item[open] .mpox-accordion__panel {
  grid-template-rows: 1fr;
  opacity: 1;
}

.mpox-accordion__content {
  min-height: 0;
  overflow: hidden;

  padding: 0 1.15rem;

  border-top: 1px solid transparent;

  transition:
    border-color 0.2s ease,
    padding 0.35s ease;
}

.mpox-accordion__item[open] .mpox-accordion__content {
  padding: 1.15rem 0 0 0;
  /*1rem 1.15rem 1.15rem;*/
  border-top-color: rgba(6, 28, 96, 0.12);
}

/* Shared accordion content */

.mpox-overview__lead {
  margin: 0 0 1rem;

  color: #26364d;

  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
}

.mpox-overview__subheading {
  margin: 0 0 0.7rem;

  color: var(--tt-navy);

  font-size: 1.05rem;
  font-weight: 850;
  line-height: 1.3;
}

/* Clade cards */

.mpox-clade-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.mpox-clade-card {
  position: relative;

  min-width: 0;
  padding: 1rem;

  background: #fff;
  border: 1px solid rgba(6, 28, 96, 0.12);
  border-left: 6px solid var(--tt-blue);
  border-radius: 16px;

  box-shadow: 0 4px 10px rgba(6, 28, 96, 0.06);
}

.mpox-clade-card:nth-child(2) {
  border-left-color: var(--tt-purple);
}

.mpox-clade-card__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;

  margin-bottom: 0.7rem;
}

.mpox-clade-card__label {
  display: inline-flex;
  align-items: center;

  padding: 0.28rem 0.65rem;

  background: var(--tt-navy);
  border-radius: 999px;
  color: #fff;

  font-size: 0.78rem;
  font-weight: 800;
}

.purple-bckgrnd {
  background: #633075 !important;
}

.mpox-clade-card__status {
  color: var(--tt-muted);

  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.mpox-clade-card p {
  margin: 0;

  color: #26364d;

  line-height: 1.58;
}

.mpox-clade-card p+p {
  margin-top: 0.7rem;
}

/* Spread cards */

.mpox-spread-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;

  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.mpox-spread-grid-override {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.mpox-icon {
  max-width: 125px;
  display: block;
  margin: 0 auto .4rem auto;
  border-radius: 8px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.where-to-start-img {
  max-width: 225px;
}

.mpox-spread-grid li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;

  min-width: 0;
  margin: 0;
  padding: 0.9rem;

  background: #fff;
  border: 1px solid rgba(6, 28, 96, 0.12);
  border-radius: 16px;
  color: #26364d;

  box-shadow: 0 4px 10px rgba(6, 28, 96, 0.06);
  line-height: 1.55;
  font-size: 0.9rem;
  justify-content: center;
  align-items: center;
}

.mpox-spread-grid__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  background: #eef4ff;
  border-radius: 14px;
  color: var(--tt-blue);

  font-size: 1rem;
}

/* Fact cards */

.mpox-fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.mpox-fact-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;

  min-width: 0;
  margin: 0;
  padding: 1rem;

  background: #fff;
  border: 1px solid rgba(6, 28, 96, 0.12);
  border-radius: 16px;

  box-shadow: 0 4px 10px rgba(6, 28, 96, 0.06);
}

.mpox-fact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  border-radius: 14px;

  font-size: 1rem;
}

.mpox-fact-card h3 {
  margin: 0 0 0.45rem;

  color: var(--tt-navy);

  font-size: 1.05rem;
  font-weight: 850;
  line-height: 1.35;
}

.mpox-fact-card p {
  margin: 0;

  color: #26364d;

  line-height: 1.58;
}

.mpox-fact-card p+p {
  margin-top: 0.55rem;
}

.mpox-fact-card--low-risk {
  background: linear-gradient(180deg, #f1f8f4 0%, #fff 100%);
  border-left: 6px solid var(--tt-teal);
}

.mpox-fact-card--low-risk .mpox-fact-card__icon {
  background: #dcefe3;
  color: #17623a;
}

.mpox-fact-card--timeline {
  background: linear-gradient(180deg, #fff7e6 0%, #fff 100%);
  border-left: 6px solid var(--tt-orange);
}

.mpox-fact-card--timeline .mpox-fact-card__icon {
  background: #f7e7bc;
  color: #765000;
}

/* Responsive */

@media (max-width: 760px) {
  .mpox-overview {
    padding: 0.85rem;
    border-radius: 20px;
  }

  .mpox-overview__header {
    align-items: flex-start;
    padding: 0.4rem 0.4rem 0.9rem;
  }

  .mpox-clade-grid,
  .mpox-spread-grid,
  .mpox-fact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .mpox-overview {
    border-radius: 16px;
  }

  .mpox-overview__header-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .mpox-accordion__summary {
    align-items: start;
    min-height: 0;
    padding: 0.85rem;
  }

  .mpox-accordion__summary-main {
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: start;
  }

  .mpox-accordion__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .mpox-accordion__title {
    font-size: 1.05rem;
  }

  .mpox-accordion__description {
    font-size: 0.84rem;
  }

  .mpox-accordion__content {
    padding-inline: 0.85rem;
  }

  .mpox-accordion__item[open] .mpox-accordion__content {
    padding: 0.9rem 0.85rem 0.85rem;
  }

  .mpox-spread-grid li,
  .mpox-fact-card {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .mpox-spread-grid__icon,
  .mpox-fact-card__icon {
    width: 38px;
    height: 38px;
  }
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {

  .mpox-accordion__item,
  .mpox-accordion__summary,
  .mpox-accordion__description,
  .mpox-accordion__chevron,
  .mpox-accordion__panel,
  .mpox-accordion__content {
    transition: none !important;
  }
}

/* ========================================
   Search Toolbar
======================================== */
.toolbar {
  margin: 18px 0 10px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.mpox-search {
  width: 100%;
  max-width: 728px;
}

.search-wrap {
  position: relative;
  width: 100%;
  max-width: 728px;
  z-index: 50;
}

#searchHelp {
  margin: 0;
  padding: 10px 12px;
  width: 100%;
  max-width: max-content;
  background: #f4f6f8;
  border-left: 4px solid var(--focus);
  border-right: 4px solid var(--focus);
  border-radius: 8px;
  font-size: clamp(0.85rem, 1.9vw, 0.9rem);
  font-weight: 600;
  color: #222;
}

/* hide old checkbox toggle */
.mpox-search__toggle {
  display: none;
}

/* keep search open */
.mpox-search__field {
  position: relative;
  width: 100%;
  height: 46px;
  border: 2px solid var(--border);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  opacity: 1;
  visibility: visible;
}

/* close control no longer used */
.mpox-search__label--close,
.mpox-search__close {
  display: none !important;
}

.mpox-search__label--actions {
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 12px;
}

.mpox-search__label {
  cursor: pointer;
}

.mpox-search__input {
  position: absolute;
  top: 0;
  left: 15px;
  width: calc(100% - 56px - 20px);
  height: 46px;
  padding: 0 12px;
  border: 0 !important;
  outline: none;
  background: transparent;
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: var(--text);
  opacity: 1;
  pointer-events: auto;
}

.mpox-search__input::placeholder {
  opacity: 1;
}

.mpox-search__input:focus {
  outline: none !important;
  outline-offset: 0 !important;
}

.mpox-search__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  margin: 0;
  line-height: 1;
  appearance: none;
  -webkit-appearance: none;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 999px;
}

.mpox-search__button--toggle {
  display: none !important;
}

.mpox-search__button--submit {
  display: flex !important;
  cursor: pointer;
}

.mpox-search__icon {
  position: relative;
  width: 18px;
  height: 18px;
  display: block;
  margin-top: -10px;
}

.mpox-search__icon::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border: 2px solid var(--focus);
  border-radius: 999px;
  background: transparent;
}

.mpox-search__icon::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 8px;
  height: 2px;
  background: var(--focus);
  transform: rotate(45deg);
  transform-origin: right;
}

/* results panel */
.search-results,
#searchResults {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

#searchResults[hidden] {
  display: none !important;
}

.search-results ul,
#searchListbox {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  max-height: 320px;
  overflow: auto;
}

.search-results li {
  border-bottom: 1px solid var(--border);
}

.search-results li:last-child {
  border-bottom: 0;
}

.search-result-item a,
.search-results a {
  display: block;
  padding: 10px 12px;
  text-decoration: none;
  font-weight: 600;
}

.search-result-item a:hover,
.search-result-item a:focus,
.search-results a:hover,
.search-results a:focus {
  background: #f4f6f8;
}

.search-result-title {
  display: block;
}

.search-result-meta,
.search-results small {
  display: block;
  margin-top: 2px;
  font-weight: 500;
  color: var(--muted);
}

.search-result-empty {
  padding: 10px 12px;
  color: var(--muted);
}

/* ========================================
   Card Grid / Cards
======================================== */
.grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--gap);
}

.card {
  border: 1px solid var(--article-border);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--card);
  box-shadow: var(--article-shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  color: var(--card-primaryColor);
}

.card::after {
  content: "View All";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 125px;
  height: 35px;
  background: var(--view-all);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding-right: 8px;
  border-top-left-radius: 16px;
  transition: transform 0.25s ease;
  z-index: 1;
  pointer-events: none;
}

.card::before {
  content: "\279C";
  position: absolute;
  right: 14px;
  bottom: 9px;
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: #fff;
  opacity: 0;
  transform: rotate(-25deg) scale(0.6);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  z-index: 2;
  pointer-events: none;
}

#exposure::after,
#isolation::after {
  content: "" !important;
}

#exposure::before,
#isolation::before {
  opacity: 0 !important;
}

.card .more {
  margin-top: auto;
  padding-top: 10px;
  align-self: flex-start;
  font-weight: 700;
}

.card h2 {
  margin: 45px 0 6px;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  letter-spacing: -0.01em;
  font-weight: 500;
  text-transform: capitalize;
}

.card p {
  margin: 0 0 10px;
  color: var(--muted);
  font-weight: 400;
}

.card button {
  text-decoration: none !important;
}

.card ul {
  margin: 0 0 8px;
  padding-left: 18px;
  padding-bottom: 18px;
}

.card li {
  margin: 6px 0;
}

.card-icon {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f0f5ff;
  border: 1px solid rgba(11, 95, 255, 0.18);
  border-radius: 12px;
  color: var(--focus);
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  line-height: 1;
  transition: transform 0.2s ease;
}

.more {
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  padding-right: 1.5em;
  font-size: clamp(0.9rem, 2vw, 1rem);
  cursor: pointer;
}

.more::after {
  content: "→";
  position: absolute;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  right: -23px;
  top: 64%;
  transform: translate(0, -50%);
  transition: transform 0.25s ease;
}

.more:hover::after,
.more:focus-visible::after {
  transform: translate(6px, -50%);
}

.more:hover {
  text-decoration: underline;
}

button.more {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.card.wizard-target {
  border-color: #0b5fff !important;
  background: rgba(11, 95, 255, 0.06) !important;
  animation: wizardTargetPulse 1.25s ease-out 1;
}

@media (hover: hover) {
  .card[data-href]:hover::after {
    transform: scale(1.06);
    transform-origin: bottom right;
  }

  .card[data-href]:hover::before {
    opacity: 1;
    transform: rotate(-45deg) scale(1);
  }

  .card[data-href]:hover .card-icon {
    transform: scale(1.04);
  }
}

@media (min-width: 601px) {
  .card details.card-links>summary {
    display: none !important;
  }

  .card details.card-links {
    display: block !important;
    margin-top: auto;
  }

  .card details.card-links>ul,
  .card details.card-links:not([open])>ul {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 10px 0 0;
    padding-left: 18px;
    padding-bottom: 18px;
  }

  .card details.card-links>ul>li {
    margin: 6px 0;
  }
}

/* ========================================
   Mobile Actions Dropdown
======================================== */
.actions-dropdown {
  display: none;
  width: 100%;
  max-width: 380px;
  margin: 16px auto 0 auto;
}

.actions-dropdown details {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.actions-dropdown summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.actions-dropdown summary::-webkit-details-marker {
  display: none;
}

.actions-dropdown summary .chev {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  margin-left: 10px;
}

.actions-dropdown details[open] summary .chev {
  transform: rotate(-135deg);
}

.actions-dropdown .menu-wrap {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    max-height 0.28s ease,
    opacity 0.22s ease,
    transform 0.22s ease;
  will-change: max-height, opacity, transform;
}

.actions-dropdown details[open] .menu-wrap {
  max-height: 60vh;
  opacity: 1;
  transform: translateY(0);
}

.actions-dropdown .menu {
  border-top: 1px solid var(--border);
  padding: 6px 0;
}

.actions-dropdown .menu a {
  display: block;
  padding: 10px 14px;
  text-decoration: none;
  font-weight: 600;
}

.actions-dropdown .menu a:hover,
.actions-dropdown .menu a:focus {
  background: #f4f6f8;
}

/* ========================================
   Decision Wizard
======================================== */
.wizard-step-actions {
  margin-top: 1rem;
  text-align: center;
}

.wizard-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1rem;
  padding: 1rem 1.1rem;
  margin: 1rem 0 1.25rem;
  border-radius: 18px;
  background: rgba(6, 28, 96, 0.06);
  border: 1px solid rgba(6, 28, 96, 0.1);
}

.wizard-split__left {
  padding: 0.1rem 0.25rem 0.4rem 0.25rem;
}

.wizard-split__left .wizard-note {
  margin-top: 1rem;
}

.wizard-split>.wizard-note {
  grid-column: 1 / -1;
}

#wizardResult {
  grid-column: 1 / -1;
  /* span full grid */
  width: 100%;
  max-width: 100%;
  margin-top: 1rem;
}

.wizard-split__left h2 {
  margin: 0 0 0.25rem;
  /*font-size: clamp(1.15rem, 2.8vw, 1.45rem);*/
  font-weight: 700;
  text-transform: capitalize;
}

.wizard-lead {
  margin: 0 0 0.75rem;
  color: #334155;
  font-size: clamp(0.9rem, 2vw, 0.95rem);
}

.wizard-benefits {
  list-style: none;
  padding: 0.75rem 0.9rem;
  margin: 0.5rem 0 1rem 0;
  background: #ffffff;
  border: 1px solid rgba(6, 28, 96, 0.12);
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(6, 28, 96, 0.08);
  display: grid;
  gap: 0.6rem;
  text-transform: capitalize;
}

.wizard-benefits li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  padding: 0;
}

.wizard-benefits .fas {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(6, 28, 96, 0.1);
  color: #061c60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.7rem, 1.6vw, 0.75rem);
}

.wizard-benefits-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #1e224f;
  background: rgba(37, 42, 105, 0.08);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  margin: 0.1rem 0 -0.1rem;
  width: fit-content;
}

.wizard-benefits-hint .fas {
  font-size: 0.8rem;
  opacity: 0.9;
}

.wizard-benefit-link {
  width: 100%;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.65rem;
  align-items: start;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 0.25rem 0.35rem;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  transition:
    background 0.15s ease,
    transform 0.12s ease;
}

.wizard-benefit-link .fas {
  margin-top: 0.2rem;
}

.wizard-benefit-link span:last-child {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.wizard-benefit-link:hover span:last-child,
.wizard-benefit-link:focus-visible span:last-child {
  text-decoration-thickness: 2px;
}

.wizard-benefit-link:hover,
.wizard-benefit-link:focus-visible {
  background: rgba(37, 42, 105, 0.06);
  transform: translateX(2px);
}

.wizard-benefit-link:focus-visible {
  outline: 2px solid #252a69;
  outline-offset: 4px;
  border-radius: 6px;
}

.wizard-note {
  margin: 0;
  padding: 0.65rem 1rem;
  border-radius: 14px;
  background: rgba(255, 193, 7, 0.22);
  border: 1px solid rgba(245, 158, 11, 0.45);
  color: #5b3b00;
  font-weight: 600;
  font-size: clamp(0.95rem, 2.2vw, 1rem);
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.18);
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0.75rem;
  align-items: flex-start;
  line-height: 1.45;
  text-align: center;
}

.wizard-note .fas {
  font-size: 1.7rem;
  color: #f59e0b;
}

.wizard-card {
  background: #dfe8f6;
  border-radius: 16px;
  border: 1px solid rgb(0 53 136 / 20%);
  box-shadow: 0 2px 10px rgba(6, 28, 96, 0.1);
  padding: 0.9rem 1rem;
}

.wizard-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  background-color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 4px 12px;
}

.wizard-step {
  background: #ffffff;
  border-radius: 14px;
  margin: 0;
  padding: 1.25rem 1rem;
  border: 0;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
  min-height: 280px;
}

.wizard-step-label {
  font-weight: 900;
  color: #061c60;
  white-space: nowrap;
}

.wizard-steps {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: 0;
  padding: 0;
  margin: 0;
  min-inline-size: 0;
}

.wizard-steps .step {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(6, 28, 96, 0.2);
}

.wizard-steps .step.is-active {
  background: #061c60;
}

.wizard-step legend {
  display: block;
  padding: 0;
  margin: 0 0 1rem;
  top: 3rem;
  position: relative;
  text-align: center;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  font-weight: 900;
  color: #0f172a;
  width: 27rem;
}

.wizard-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.6rem;
  margin-top: 3rem;
}

.wizard-step[data-cols="3"] .wizard-options {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wizard-choice {
  position: relative;
  padding: 0.75rem 0.8rem;
  border-radius: 14px;
  background: linear-gradient(#ffffff, #f4f7fb);
  border: 1px solid rgba(6, 28, 96, 0.25);
  box-shadow:
    0 4px 10px rgba(6, 28, 96, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  cursor: pointer;
  display: grid !important;
  gap: 0.2rem;
  align-content: start;
  text-align: center;
  justify-items: center;
  min-height: 74px;
  transition:
    transform 0.14s ease,
    box-shadow 0.14s ease,
    border-color 0.14s ease;
  margin-bottom: 0 !important;
}

.wizard-choice:hover {
  transform: translateY(-3px);
  box-shadow:
    0 10px 22px rgba(6, 28, 96, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.wizard-choice input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.wizard-choice__title {
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 900;
  color: #0f172a;
  line-height: 1.5;
}

.wizard-choice__sub {
  font-size: clamp(0.82rem, 1.9vw, 0.86rem);
  color: #475569;
  line-height: 1.5;
  max-width: 22ch;
}

.wizard-choice:has(input:checked) {
  background: linear-gradient(#e8f0ff, #ffffff);
  border-color: #2563eb;
  box-shadow: 0 10px 26px rgba(26, 115, 232, 0.14);
}

.wizard-choice:has(input:focus-visible) {
  outline: 3px solid rgba(26, 115, 232, 0.45);
  outline-offset: 3px;
}

.wizard-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.35rem;
  padding: 0.15rem 0.5rem 0.45rem 0.5rem;
  border-radius: 14px;
  background: rgba(6, 28, 96, 0.05);
  border: 1px solid rgba(6, 28, 96, 0.1);
}

.wizard-actions-left {
  display: contents;
  width: 100%;
  margin: 0 auto;
}

#wizardBack,
#wizardReset {
  width: 100%;
  max-width: 200px;
}

.wizard-link {
  justify-self: center;
  border: none;
  background: transparent;
  color: #061c60;
  font-weight: 900;
  text-decoration: underline;
  cursor: pointer;
  padding: 0.4rem 0.25rem;
  opacity: 0.8;
}

.wizard-link:hover {
  opacity: 1;
}

/* ========================================
   Wizard Result
======================================== */
.wizard-split>.wizard-note {
  grid-column: 1 / -1;
}

#wizardResult {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 100%;
  margin: 1.1rem 0 0;
  padding: 1.1rem;
  border-radius: 20px;
  border: 1px solid rgba(11, 95, 255, 0.14);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow:
    0 12px 28px rgba(6, 28, 96, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  display: grid;
  gap: 0.9rem;
  align-items: start;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

#wizardResult[hidden] {
  display: none !important;
}

#wizardResult.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.wizard-result-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
}

.wizard-result-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(11, 95, 255, 0.08);
  color: #003588;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

.wizard-result #wizardGo,
.wizard-result-row .btn {
  width: 100%;
  max-width: fit-content;
  min-height: 54px;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  font-size: clamp(1rem, 2vw, 1.08rem);
  font-weight: 800;
  line-height: 1.25;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(6, 28, 96, 0.12);
}

.wizard-result-note {
  margin: 0;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(6, 28, 96, 0.045);
  border: 1px solid rgba(6, 28, 96, 0.08);
  color: #1f2937;
  font-size: clamp(0.96rem, 2vw, 1rem);
  line-height: 1.65;
}

.wizard-result-best-link {
  width: 100%;
  margin: 0;
  padding: 0 0.1rem;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: left;
}

.wizard-result-best-link strong {
  color: #061c60;
  font-weight: 800;
}

.wizard-result-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}

.wizard-result-links li {
  position: relative;
  margin: 0;
  min-width: 0;
  padding: 0.9rem 0.95rem 0.9rem 2.4rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(6, 28, 96, 0.1);
  box-shadow: 0 4px 12px rgba(6, 28, 96, 0.05);
  color: #0f172a;
  font-weight: 600;
  line-height: 1.45;
}

.wizard-result-links li::before {
  content: "";
  position: absolute;
  left: 0.95rem;
  top: 1rem;
  width: 0.78rem;
  height: 0.78rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #0b5fff 0%, #003588 100%);
  box-shadow: 0 0 0 4px rgba(11, 95, 255, 0.12);
}

@media (max-width: 620px) {
  #wizardResult {
    padding: 0.9rem;
    border-radius: 18px;
    gap: 0.8rem;
  }

  .wizard-result-row {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .wizard-result-label {
    width: fit-content;
  }

  .wizard-result #wizardGo,
  .wizard-result-row .btn {
    min-height: 50px;
    padding: 0.85rem 0.9rem;
  }

  .wizard-result-note {
    padding: 0.85rem 0.9rem;
  }

  .wizard-result-best-link {
    text-align: left;
  }

  .wizard-result-links {
    grid-template-columns: 1fr;
  }

  .wizard-result-links li {
    padding: 0.82rem 0.9rem 0.82rem 2.25rem;
  }

  .wizard-result-links li::before {
    left: 0.9rem;
    top: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  #wizardResult {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ========================================
   Generic Modal / Wizard Modal
======================================== */
.modal,
.wizard-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease;
}

.modal.is-open,
.wizard-modal.is-open,
.wizard-modal:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
}

.modal__backdrop,
.wizard-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}

.modal__dialog,
.wizard-modal__dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: min(80vh, 720px);
  background: var(--modal-bg);
  border: 1px solid var(--modal-border);
  border-radius: var(--modal-radius);
  box-shadow: var(--modal-shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(10px);
  transition: transform 0.18s ease;
  z-index: 1;
}

.modal.is-open .modal__dialog,
.wizard-modal.is-open .wizard-modal__dialog,
.wizard-modal:not([hidden]) .wizard-modal__dialog {
  transform: translateY(0);
}

.modal__header,
.wizard-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: #f0f5ff;
  border-bottom: 1px solid rgba(32, 54, 122, 0.18);
}

.modal__content,
.wizard-modal__content {
  position: relative;
  padding: 18px 18px 16px;
  background: #fff;
}

.modal__eyebrow,
.wizard-modal__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--modal-muted);
}

.modal__title,
.wizard-modal__title {
  margin: 0 2.5rem 0.75rem 0;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 700;
  color: var(--modal-text);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.modal__close,
.wizard-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  color: var(--modal-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: clamp(1.05rem, 2.6vw, 1.25rem);
  line-height: 1;
  transition:
    transform 0.25s ease,
    background 0.2s ease,
    border-color 0.2s ease;
  z-index: 2;
}

.modal__close:hover,
.wizard-modal__close:hover {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.25);
  transform: rotate(90deg);
}

.modal__body,
.wizard-modal__body {
  padding: 0;
  overflow: auto;
  background: #fff;
  color: var(--modal-text);
  line-height: 1.6;
}

.modal__body>*:first-child,
.wizard-modal__body>*:first-child {
  margin-top: 0;
}

.modal__body>*:last-child,
.wizard-modal__body>*:last-child {
  margin-bottom: 0;
}

.modal__body ul,
.wizard-modal__body ul {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
  display: block;
}

.modal__body li,
.wizard-modal__body li {
  margin: 0.45rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.modal__body li a,
.wizard-modal__body li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 12px;
  text-decoration: none;
  color: var(--modal-text);
  font-weight: 650;
}

.modal__body li a:hover,
.wizard-modal__body li a:hover {
  background: rgba(37, 99, 235, 0.06);
}

.modal__body li a::after,
.wizard-modal__body li a::after {
  content: "›";
  color: var(--modal-muted);
  font-size: clamp(1.05rem, 2.6vw, 1.25rem);
  line-height: 1;
}

body.modal-open {
  overflow: hidden;
}

/* Top feature row (text left, icon right) */
.modal-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  margin-bottom: 12px;
}

.modal-row__icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

/* Icon list (text left, icon right) */
.modal-icon-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 12px;
  display: grid;
  gap: 8px;
}

.modal-icon-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 10px;
  padding: 10px 12px;
  background: #fff;
}

.modal-icon-list img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* 50/50 layout for key symptom row */
.modal-row--feature {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  /* 50% / 50% */
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.modal-row--feature .modal-row__text {
  max-width: 100%;
}

.modal-row--feature .modal-row__icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Only apply large size to NON-stacked icons (rash) */
.modal-row--feature .modal-row__icon:not(.modal-row__icon--stack) img {
  max-width: 100%;
  height: auto;
  width: 120px;
}

/* Tight, aligned icon column */
.modal-row__icon--stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* align with text edge */
  justify-content: flex-start;
  /* start at top, not center */
  gap: 10px;
  /* tighter spacing */
  padding-top: 6px;
  /* aligns with first list item */
}

/* Icon styling */
.modal-row__icon--stack {
  gap: 8px;
  padding: 8px 6px;
}

.modal-row__icon--stack img {
  width: 80px;
  height: 80px;
}

/* Optional: subtle grouping box (recommended) */
.modal-row__icon--stack {
  background: rgba(37, 99, 235, 0.04);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 12px;
  padding: 10px 8px;
}

/* Default (rash stays tighter) */
.modal-row--feature {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

/* ONLY flu section gets wider icon column */
.modal-row--flu {
  grid-template-columns: 1.25fr 0.75fr;
  align-items: start;
}

/* Rash icon container styling (match stack style) */
.modal-row__icon:not(.modal-row__icon--stack) {
  background: rgba(37, 99, 235, 0.04);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 12px;
  padding: 12px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile stack */
@media (max-width: 520px) {
  .modal-row {
    grid-template-columns: 1fr;
  }

  .modal-row__icon {
    text-align: center;
  }

  .modal,
  .wizard-modal {
    place-items: end center;
    padding: 10px;
  }

  .modal__dialog,
  .wizard-modal__dialog {
    width: 100%;
    max-height: 88vh;
    border-radius: 16px 16px 0 0;
  }

  .modal__content,
  .wizard-modal__content {
    padding: 16px 14px 14px;
  }

  .modal__body,
  .wizard-modal__body {
    padding: 0;
  }
}

/* ========================================
   Wizard Pointer / Highlight
======================================== */
.glow-target {
  animation: glowPulse 1.6s ease-out;
  border-radius: 16px;
}

.wizard-link-target {
  position: relative;
  display: inline-block;
  padding: 0.15rem 0.3rem;
  margin-left: -0.3rem;
  margin-right: -0.3rem;
  border-radius: 8px;
  background: rgba(11, 95, 255, 0.12);
  box-shadow: 0 0 0 2px rgba(11, 95, 255, 0.18);
  animation: wizardLinkPulse 1.4s ease-out 1;
}

.wizard-pointer {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  display: none;
  left: 0;
  top: 0;
  transform: translate3d(0, 0, 0);
  transition: opacity 180ms ease;
}

.wizard-pointer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(255, 45, 85, 0.14);
  animation: wizardPointerPulse 700ms ease-out infinite;
}

.wizard-pointer__wiggle {
  display: block;
  line-height: 1;
  animation: wizardPointerWiggleX 320ms ease-in-out infinite;
}

.wizard-pointer i {
  font-size: clamp(2rem, 6vw, 2.75rem);
  color: #ff2d55;
  filter: drop-shadow(0 8px 18px rgba(255, 45, 85, 0.55));
  display: block;
  line-height: 1;
  transform-origin: center;
}

.wizard-pointer.is-desktop .wizard-pointer__wiggle {
  animation: wizardPointerWiggleX 320ms ease-in-out infinite;
}

.wizard-pointer.is-desktop i {
  transform: rotate(0deg);
}

.wizard-pointer.is-desktop.is-right i {
  transform: rotate(180deg);
}

.wizard-pointer.is-mobile .wizard-pointer__wiggle {
  animation: wizardPointerWiggleY 320ms ease-in-out infinite;
}

.wizard-pointer.is-mobile i {
  transform: rotate(90deg);
}

.wizard-pointer.is-mobile.is-below i {
  transform: rotate(-90deg);
}

/* ========================================
   Dashboard
======================================== */
.dashboard-title {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: clamp(0.5rem, 2vw, 1rem) clamp(1rem, 4vw, 1rem);
  margin: 0 0 15px 0;
  background: #00205b;
  color: #fff;
  border-radius: 10px;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
}

.dashboard-p {
  background-color: #fff;
  border-radius: 6px;
  padding: clamp(1rem, 3vw, 1.6rem);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  font-size: clamp(0.95rem, 2.5vw, 1rem);
  line-height: 1.6;
}

.dashboard-embed {
  padding: 25px;
  margin: 20px 0;
  background: #f5f8ff;
  border: 1px solid #dbe5ff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(6, 28, 96, 0.08);
}

.dashboard-embed iframe {
  border-radius: 10px;
}

.dashboard-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.dashboard-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ========================================
   Risk Summary
======================================== */
.risk-summary {
  --risk-track: #dbe7f3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: fit-content;
  max-width: 100%;
  margin: 1.25rem auto 1.75rem;
  padding: 1.25rem 1.5rem;
  position: relative;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, var(--risk-bg) 100%);
  border: 1.2px solid var(--risk-color);
  border-radius: 16px;
  box-shadow:
    0 10px 28px rgba(6, 28, 96, 0.12),
    0 2px 6px rgba(0, 0, 0, 0.04);
  transition:
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    transform 0.35s ease;
}

.risk-circle {
  width: 132px;
  height: 132px;
  flex: 0 0 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #ffffff 52%, transparent 55%),
    conic-gradient(from -90deg,
      var(--risk-color) 0 var(--risk-percent),
      var(--risk-track) var(--risk-percent) 100%);
  box-shadow:
    inset 0 0 0 8px #ffffff,
    0 10px 24px rgba(0, 0, 0, 0.12);
  transition:
    background 0.6s ease,
    box-shadow 0.4s ease,
    transform 0.35s ease;
}

.risk-circle-value {
  display: block;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
  color: var(--risk-color-dark);
  transition:
    color 0.4s ease,
    transform 0.35s ease;
}

.risk-circle-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--risk-color-dark);
  opacity: 0.9;
  transition: color 0.4s ease;
}

.risk-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 480px;
}

.risk-title {
  margin: 0 0 0.4rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  color: #061c60;
}

.risk-sub {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.55;
  text-align: center;
  color: #1f2937;
}

.risk-summary.risk-low {
  --risk-color: #22c55e;
  --risk-color-dark: #166534;
  --risk-percent: 33%;
}

.risk-summary.risk-medium {
  --risk-color: #f59e0b;
  --risk-color-dark: #92400e;
  --risk-percent: 66%;
}

.risk-summary.risk-high {
  --risk-color: #dc2626;
  --risk-color-dark: #991b1b;
  --risk-percent: 100%;
}

.risk-summary.is-changing {
  animation: riskChangePulse 0.7s ease;
}

.risk-summary.is-changing .risk-circle {
  transform: scale(1.04);
}

.risk-summary.is-changing .risk-circle-value {
  transform: scale(1.06);
}

/* ========================================
   Newsletter Signup
======================================== */
#newsletter-email {
  margin-bottom: 0 !important;
}

.newsletter-signup {
  margin: -1rem;
  padding: 0;
  max-width: 1000px;
}

.newsletter-signup__content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.25rem;
  /*border-radius: 16px;*/
  background: linear-gradient(135deg, #252a69 0%, #873b74 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 24px rgba(37, 42, 105, 0.18);
}

.newsletter-signup__copy {
  min-width: 0;
}

.newsletter-signup__eyebrow {
  display: inline-block;
  margin: 0 0 0.35rem;
  padding: 0.28rem 0.6rem;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.newsletter-signup__copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.1rem, 2.3vw, 1.25rem);
  line-height: 1.35;
  font-weight: 700;
}

.newsletter-signup__form {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
  width: 100%;
}

.newsletter-signup__input {
  flex: 1 1 auto;
  min-width: 0;
  height: 46px;
  padding: 0 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 12px;
  background: #fff !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  font-size: 0.95rem;
  box-shadow: none !important;
}

.newsletter-signup__input::placeholder {
  color: #6b7280;
}

.newsletter-signup__input:focus {
  outline: 3px solid rgba(255, 255, 255, 0.28);
  outline-offset: 2px;
}

.newsletter-signup__button {
  flex: 0 0 auto;
  height: 46px;
  padding: 0 1rem;
  border: 1px solid #061c60;
  border-radius: 12px;
  background: #061c60;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(6, 28, 96, 0.24);
  transition:
    transform 0.18s ease,
    filter 0.18s ease;
  margin-top: 0 !important;
}

.newsletter-signup__button:hover,
.newsletter-signup__button:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.newsletter-signup__button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.28);
  outline-offset: 2px;
}

/* ========================================
   Animations
======================================== */
@keyframes glowPulse {
  0% {
    box-shadow: 0 0 0 rgba(11, 95, 255, 0);
  }

  40% {
    box-shadow:
      0 0 0 6px rgba(11, 95, 255, 0.25),
      0 0 18px rgba(11, 95, 255, 0.35);
  }

  100% {
    box-shadow: 0 0 0 rgba(11, 95, 255, 0);
  }
}

@keyframes wizardTargetPulse {
  0% {
    box-shadow: 0 0 0 rgba(11, 95, 255, 0);
  }

  35% {
    box-shadow:
      0 0 0 7px rgba(11, 95, 255, 0.18),
      0 0 22px rgba(11, 95, 255, 0.22);
  }

  100% {
    box-shadow: 0 0 0 rgba(11, 95, 255, 0);
  }
}

@keyframes wizardLinkPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(11, 95, 255, 0.3);
    background: rgba(11, 95, 255, 0.2);
  }

  100% {
    box-shadow: 0 0 0 10px rgba(11, 95, 255, 0);
    background: rgba(11, 95, 255, 0.12);
  }
}

@keyframes wizardPointerWiggleX {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(12px);
  }
}

@keyframes wizardPointerWiggleY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

@keyframes wizardPointerPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 45, 85, 0.35);
  }

  100% {
    box-shadow: 0 0 0 18px rgba(255, 45, 85, 0);
  }
}

@keyframes riskChangePulse {
  0% {
    transform: scale(0.985);
    box-shadow:
      0 10px 28px rgba(6, 28, 96, 0.12),
      0 2px 6px rgba(0, 0, 0, 0.04);
  }

  50% {
    transform: scale(1.015);
    box-shadow:
      0 14px 34px rgba(6, 28, 96, 0.16),
      0 0 0 8px rgba(6, 28, 96, 0.05);
  }

  100% {
    transform: scale(1);
    box-shadow:
      0 10px 28px rgba(6, 28, 96, 0.12),
      0 2px 6px rgba(0, 0, 0, 0.04);
  }
}

/* ==========================================================
   Action Links
   ========================================================== */

.action-link {
  position: relative;
  display: inline-block;

  color: var(--wf-blue) !important;
  font-weight: 700;
  text-decoration: none !important;

  transition: color 0.2s ease;
}

.action-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;

  width: 100%;
  height: 2px;

  background: var(--wf-gold);

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.action-link:hover,
.action-link:focus-visible {
  color: var(--wf-blue-dark) !important;
  outline: none;
}

.action-link:hover::after,
.action-link:focus-visible::after {
  transform: scaleX(1);
}

.action-link i {
  margin-right: 0.3rem;
}

/* ==========================================================
   Icon List – Prevent Content From Being Cut Off
   ========================================================== */

.icon-list>li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;

  width: 100%;
  min-width: 0;

  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(6, 28, 96, 0.1);
  box-shadow: 0 4px 12px rgba(6, 28, 96, 0.06);
}

.icon-list__content {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.icon-list__content p {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: #333;
  line-height: 1.6;

  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}

.icon-list__content p+p {
  margin-top: 0.85rem;
}

.icon-list__content strong {
  white-space: normal;
  overflow-wrap: anywhere;
}

/* Main wrapper: matches .tt-topic-hub */
.mpox-overview {
  width: 100%;
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: 24px;
  background: #f6f8fc;
  border: 1px solid var(--tt-border);
  box-shadow: none;
}

/* Header */
.mpox-overview__header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.5rem 0.5rem 1rem;
  margin: 0;
}

.mpox-overview__header-icon {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #eef4ff;
  color: var(--tt-blue);
  font-size: 2rem;
  border: 1px solid #b0c5ee;
}

.mpox-overview__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.35rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(6, 28, 96, 0.08);
  color: var(--tt-navy);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mpox-overview__title {
  margin: 0;
  color: var(--tt-navy);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  text-transform: capitalize;
}

/* Accordion group */
.mpox-accordion {
  display: grid;
  gap: 0.9rem;
}

/* Accordion item: matches .tt-topic-panel */
.mpox-accordion__item {
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--tt-border);
  box-shadow: 0 6px 16px rgba(6, 28, 96, 0.07);
}

.mpox-accordion__item[open] {
  border-color: rgba(6, 28, 96, 0.22);
  box-shadow: 0 10px 24px rgba(6, 28, 96, 0.1);
}

/* Accordion summary: matches Testing & Treatment grid header */
.mpox-accordion__summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: center;
  min-height: auto;
  padding: 1rem 1.15rem;
  cursor: pointer;
  list-style: none;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  color: var(--tt-navy);
}

.mpox-accordion__summary::-webkit-details-marker {
  display: none;
}

.mpox-accordion__summary::marker {
  content: "";
}

.mpox-accordion__summary:hover {
  background: linear-gradient(180deg, #f9fbff 0%, #f2f7ff 100%);
}

.mpox-accordion__summary:focus-visible {
  outline: 3px solid var(--tt-blue);
  outline-offset: 4px;
  border-radius: 8px;
}

/* Left side of summary */
.mpox-accordion__summary-main {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  min-width: 0;
}

/* Topic icon */
.mpox-accordion__icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 16px;
  background: var(--tt-blue);
  color: #ffffff;
  font-size: 1.15rem;
}

.mpox-accordion__item:nth-child(2) .mpox-accordion__icon {
  background: var(--tt-purple);
}

.mpox-accordion__item:nth-child(3) .mpox-accordion__icon {
  background: var(--tt-teal);
}

.mpox-accordion__item:nth-child(4) .mpox-accordion__icon {
  background: var(--tt-orange);
}

/* Heading text */
.mpox-accordion__heading {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.mpox-accordion__title {
  display: block;
  color: var(--tt-navy);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: capitalize;
}

.mpox-accordion__description {
  display: block;
  color: var(--tt-muted);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  opacity: 1;
  max-height: 40px;
  overflow: hidden;
  transition:
    opacity 0.2s ease,
    max-height 0.2s ease;
}

.mpox-accordion__item[open] .mpox-accordion__description {
  opacity: 0;
  max-height: 0;
}

/* Chevron: match Testing & Treatment plus/minus circle */
.mpox-accordion__chevron {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  border-radius: 50%;
  background: #eef4ff;
  color: #003588;
  transition: transform 220ms ease;
}

.mpox-accordion__item[open] .mpox-accordion__chevron {
  transform: rotate(180deg);
}

.mpox-accordion__chevron i {
  font-size: 0.9rem;
}

/* Accordion body
   Uses max-height instead of height: 0 so content is visible without JS.
*/
.mpox-accordion__panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 1.15rem;
  border-top: 1px solid transparent;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    padding 0.35s ease,
    border-color 0.2s ease;
}

.mpox-accordion__item[open] .mpox-accordion__panel {
  max-height: 2200px;
  opacity: 1;
  padding: 0 1.15rem 1.15rem;
  border-top-color: rgba(6, 28, 96, 0.12);
}

.mpox-accordion__content {
  padding: 1rem 0 0;
}

/* Shared content text */
.mpox-overview__lead {
  margin: 1rem 0 1rem;
  color: #26364d;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.6;
}

.mpox-overview__subheading {
  margin: 0 0 0.7rem;
  color: var(--tt-navy);
  font-size: 1.05rem;
  font-weight: 850;
  text-transform: capitalize;
  line-height: 1.3;
}

/* Clade cards */
.mpox-clade-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.mpox-clade-card {
  position: relative;
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(6, 28, 96, 0.12);
  box-shadow: 0 4px 10px rgba(6, 28, 96, 0.06);
}

.mpox-clade-card:first-child {
  border-left: 6px solid var(--tt-blue);
  border-right: 6px solid var(--tt-blue);
}

.mpox-clade-card:nth-child(2) {
  border-left: 6px solid var(--tt-light-purple);
  border-right: 6px solid var(--tt-light-purple);
}

.mpox-clade-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
}

.mpox-clade-card__label {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: var(--tt-navy);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
}

.mpox-clade-card__status {
  color: var(--tt-muted);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.35;
}

.mpox-clade-card p {
  margin: 0;
  color: #26364d;
  line-height: 1.58;
  font-size: 0.95rem;
}

.mpox-clade-card p+p {
  margin-top: 0.7rem;
}

/* Highlight year */
.year-highlight {
  padding: 2px 6px;
  border-radius: 6px;
  font-weight: 800;
  color: var(--tt-navy);
  background: rgba(11, 95, 255, 0.12);
}

.year-highlight-purple {
  padding: 2px 6px;
  border-radius: 6px;
  font-weight: 800;
  color: var(--tt-purple);
  background: rgba(99, 48, 117, 0.12);
}

/* ==========================================================
   Additional Information
========================================================== */

.mpox-spread-notes {
  margin-top: 1.5rem;
}

.mpox-spread-note {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;

  padding: 1.15rem 1.25rem;

  background: linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
  border: 1px solid rgba(180, 83, 9, 0.18);
  border-left: 6px solid var(--tt-orange);
  border-radius: 18px;

  box-shadow: 0 8px 18px rgba(180, 83, 9, 0.08);
}

.mpox-spread-note__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 54px;
  height: 54px;

  border-radius: 16px;

  background: #f7e7bc;
  color: #8b5a00;

  font-size: 1.25rem;
}

.mpox-spread-note p {
  margin: 0;
  color: #26364d;
  font-size: 0.92rem;
  line-height: 1.7;
}

.mpox-spread-note strong:first-child {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--tt-navy);
  text-transform: capitalize;
  font-size: 1.05rem;
  font-weight: 800;
}

.mpox-spread-note strong:not(:first-child) {
  color: var(--tt-navy);
}

/* Mobile */

@media (max-width: 1000px) {
  .mpox-spread-grid-override {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .mpox-spread-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .mpox-spread-note {
    grid-template-columns: 44px 1fr;
    gap: 0.85rem;
    padding: 1rem;
  }

  .mpox-spread-note__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {

  .mpox-accordion__item,
  .mpox-accordion__summary,
  .mpox-accordion__description,
  .mpox-accordion__chevron,
  .mpox-accordion__panel {
    transition: none !important;
  }
}

/* ========================================
   Mpox Section Divider
======================================== */

.mpox-section-divider {
  position: relative;

  width: 100%;
  max-width: 760px;
  height: 3px;

  margin: 2.5rem auto 2rem;

  border-radius: 999px;

  background: linear-gradient(90deg,
      transparent 0%,
      rgba(0, 43, 77, 0.1) 12%,
      rgba(0, 43, 77, 0.22) 30%,
      var(--wf-blue-dark) 50%,
      rgba(0, 43, 77, 0.22) 70%,
      rgba(0, 43, 77, 0.1) 88%,
      transparent 100%);

  box-shadow: 0 1px 8px rgba(0, 43, 77, 0.12);
}

.mpox-section-divider::before {
  content: "";
  position: absolute;
  inset: -6px 0;
  background: radial-gradient(ellipse at center,
      rgba(0, 43, 77, 0.08),
      transparent 72%);

  pointer-events: none;
}

#mpox-hme .mpox-section-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;

  width: 16px;
  height: 16px;

  transform: translate(-50%, -50%);
  border-radius: 50%;

  /* White ring */
  border: 2px solid var(--mpox-page-bg, #fff);

  /* Gold gradient */
  background: linear-gradient(180deg,
      #f7cb5d 0%,
      var(--wf-gold) 55%,
      #d99700 100%);

  box-shadow:
    0 0 0 4px rgba(243, 177, 37, 0.18),
    0 3px 8px rgba(0, 43, 77, 0.16),
    inset 0 1px 1px rgba(255, 255, 255, 0.45);
}

/* ==========================================================
   MPOX SYMPTOMS
========================================================== */

#mpox-hme .mpox-symptoms-content {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1rem;

  width: 100%;
}

/* ==========================================================
   SYMPTOM BLOCKS
========================================================== */

#mpox-hme .mpox-symptom-block {
  position: relative;
  min-width: 0;
  padding: 1.15rem;

  background: #ffffff;
  border: 1px solid rgba(6, 28, 96, 0.12);
  border-radius: 18px;

  box-shadow: 0 6px 16px rgba(6, 28, 96, 0.07);
}

/* Rash block */

#mpox-hme .mpox-symptom-block:first-child {
  background: linear-gradient(145deg, #f5f1fb 0%, #ffffff 72%);

  border-top: 5px solid var(--tt-purple);
}

/* Flu-like symptoms block */

#mpox-hme .mpox-symptom-block:last-child {
  background: linear-gradient(145deg, #eef8f7 0%, #ffffff 72%);

  border-top: 5px solid var(--tt-teal);
}

/* ==========================================================
   TITLES
========================================================== */

#mpox-hme .mpox-symptom-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem;

  margin: 0 0 0.85rem;

  color: var(--tt-navy);

  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.35;
}

/* Decorative title icon */

#mpox-hme .mpox-symptom-title::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 34px;
  height: 34px;
  flex: 0 0 34px;

  margin-right: 0.35rem;

  border-radius: 11px;

  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.9rem;
}

#mpox-hme .mpox-symptom-block:first-child .mpox-symptom-title::before {
  content: "\f06d";

  background: rgba(99, 48, 117, 0.12);
  color: var(--tt-purple);
}

#mpox-hme .mpox-symptom-block:last-child .mpox-symptom-title::before {
  content: "\f0f1";

  background: rgba(15, 118, 110, 0.12);
  color: var(--tt-teal);
}

#mpox-hme .mpox-symptom-title strong {
  color: var(--tt-purple);
  font-weight: 900;
}

/* ==========================================================
   INTRO PARAGRAPH
========================================================== */

#mpox-hme .mpox-symptom-block>p {
  margin: 0 0 1rem;

  color: #334155;

  font-size: 0.95rem;
  line-height: 1.65;
}

/* ==========================================================
   SHARED LIST
========================================================== */

#mpox-hme .mpox-simple-list {
  display: grid;
  gap: 0.7rem;

  margin: 0;
  padding: 0;

  list-style: none;
}

#mpox-hme .mpox-simple-list li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 0.7rem;
  align-items: center;

  min-width: 0;
  margin: 0;
  padding: 0.8rem;

  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(6, 28, 96, 0.1);
  border-radius: 14px;

  color: #26364d;

  font-size: 0.9rem;
  line-height: 1.5;

  box-shadow: 0 3px 9px rgba(6, 28, 96, 0.045);
}

#mpox-hme .mpox-simple-list li span {
  min-width: 0;
  font-weight: 700;
  overflow-wrap: anywhere;
}

/* Shared icons */

#mpox-hme .mpox-simple-list li>i {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  border-radius: 12px;

  font-size: 0.95rem;
  line-height: 1;
}

/* ==========================================================
   RASH DETAILS
========================================================== */

#mpox-hme .mpox-simple-list--two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#mpox-hme .mpox-simple-list--two-col li {
  align-items: start;

  background: rgba(99, 48, 117, 0.045);
  border-color: rgba(99, 48, 117, 0.14);
}

#mpox-hme .mpox-simple-list--two-col li>i {
  background: rgba(99, 48, 117, 0.12);
  color: var(--tt-purple);
}

#mpox-hme .mpox-simple-list--two-col li:last-child:nth-child(odd) {
  grid-column: 1 / -1 !important;
}

/* ==========================================================
   FLU-LIKE SYMPTOMS
========================================================== */

#mpox-hme .mpox-simple-list--flu {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#mpox-hme .mpox-simple-list--flu li {
  background: rgba(15, 118, 110, 0.045);
  border-color: rgba(15, 118, 110, 0.14);
}

#mpox-hme .mpox-simple-list--flu li>i {
  background: rgba(15, 118, 110, 0.12);
  color: var(--tt-teal);
}

/* Give the final odd symptom full width */

#mpox-hme .mpox-simple-list--flu li:last-child:nth-child(odd) {
  grid-column: 1 / -1 !important;
}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 900px) {
  #mpox-hme .mpox-symptoms-content {
    grid-template-columns: 1fr;
  }

  #mpox-hme .mpox-simple-list--two-col,
  #mpox-hme .mpox-simple-list--flu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 600px) {
  #mpox-hme .mpox-symptom-block {
    padding: 1rem;
    border-radius: 16px;
  }

  #mpox-hme .mpox-symptom-title {
    font-size: 1.02rem;
  }

  #mpox-hme .mpox-symptom-title::before {
    width: 32px;
    height: 32px;
    flex-basis: 32px;

    border-radius: 10px;
  }

  #mpox-hme .mpox-simple-list--two-col,
  #mpox-hme .mpox-simple-list--flu {
    grid-template-columns: 1fr;
  }

  #mpox-hme .mpox-simple-list--flu li:last-child:nth-child(odd) {
    grid-column: auto;
  }

  #mpox-hme .mpox-simple-list li {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 0.65rem;

    padding: 0.75rem;

    font-size: 0.88rem;
  }

  #mpox-hme .mpox-simple-list li>i {
    width: 34px;
    height: 34px;

    border-radius: 10px;
    font-size: 0.85rem;
  }
}

/* ==========================================================
   MPOX PREVENTION
========================================================== */

#mpox-hme .mpox-prevention-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;

  width: 100%;
  margin-top: 1.25rem;
}

/* ==========================================================
   PREVENTION CARDS
========================================================== */

#mpox-hme .mpox-prevention-card {
  position: relative;
  display: flex;
  flex-direction: column;

  min-width: 0;
  padding: 1.15rem;

  background: linear-gradient(145deg, #f7faff 0%, #ffffff 72%);

  border: 1px solid rgba(6, 28, 96, 0.12);
  border-top: 5px solid var(--tt-blue);
  border-radius: 18px;

  box-shadow: 0 6px 16px rgba(6, 28, 96, 0.07);
}

/* Full-width personal items card */

#mpox-hme .mpox-prevention-card--wide {
  grid-column: 1 / -1;

  background: linear-gradient(145deg, #fff8ed 0%, #ffffff 72%);

  border-top-color: var(--tt-orange);
}

/* Individual card accents */

#mpox-hme .mpox-prevention-card:nth-child(1) {
  border-top-color: var(--tt-blue);
}

#mpox-hme .mpox-prevention-card:nth-child(2) {
  border-top-color: var(--tt-purple);

  background: linear-gradient(145deg, #f7f2fa 0%, #ffffff 72%);
}

#mpox-hme .mpox-prevention-card:nth-child(4) {
  border-top-color: var(--tt-teal);

  background: linear-gradient(145deg, #eef8f7 0%, #ffffff 72%);
}

#mpox-hme .mpox-prevention-card:nth-child(5) {
  border-top-color: #376ea6;

  background: linear-gradient(145deg, #eef5fb 0%, #ffffff 72%);
}

#mpox-hme .mpox-prevention-card:nth-child(6) {
  border-top-color: var(--tt-purple);

  background: linear-gradient(145deg, #f7f2fa 0%, #ffffff 72%);
}
/* ==========================================================
   CARD HEADERS
========================================================== */

#mpox-hme .mpox-prevention-card__header {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;

  margin-bottom: 0.85rem;
}

#mpox-hme .mpox-prevention-card__header h3 {
  min-width: 0;
  margin: 0;

  color: var(--tt-navy);

  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1.3;
  text-transform: capitalize;

  overflow-wrap: anywhere;
}

/* ==========================================================
   CARD ICONS
========================================================== */

#mpox-hme .mpox-prevention-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  background: rgba(11, 95, 255, 0.11);
  border: 1px solid rgba(11, 95, 255, 0.14);
  border-radius: 15px;

  color: var(--tt-blue);

  font-size: 1.05rem;
  line-height: 1;
}

#mpox-hme .mpox-prevention-card:nth-child(2) .mpox-prevention-card__icon {
  background: rgba(99, 48, 117, 0.11);
  border-color: rgba(99, 48, 117, 0.14);
  color: var(--tt-purple);
}

#mpox-hme .mpox-prevention-card--wide .mpox-prevention-card__icon {
  background: rgba(180, 83, 9, 0.11);
  border-color: rgba(180, 83, 9, 0.14);
  color: var(--tt-orange);
}

#mpox-hme .mpox-prevention-card:nth-child(4) .mpox-prevention-card__icon {
  background: rgba(15, 118, 110, 0.11);
  border-color: rgba(15, 118, 110, 0.14);
  color: var(--tt-teal);
}

#mpox-hme .mpox-prevention-card:nth-child(5) .mpox-prevention-card__icon {
  background: rgba(55, 110, 166, 0.11);
  border-color: rgba(55, 110, 166, 0.14);
  color: #376ea6;
}

#mpox-hme .mpox-prevention-card:nth-child(6) .mpox-prevention-card__icon {
  background: rgba(99, 48, 117, 0.11);
  border-color: rgba(99, 48, 117, 0.14);
  color: var(--tt-purple);
}

/* ==========================================================
   CARD COPY
========================================================== */

#mpox-hme .mpox-prevention-card>p {
  margin: 0;
  color: #334155;
  font-size: 0.88rem;
  line-height: 1.65;
}

#mpox-hme .mpox-prevention-card>p strong {
  color: var(--tt-navy);
  font-weight: 800;
}

#mpox-hme .mpox-prevention-card h4 {
  margin: 1rem 0 0.7rem;
  color: var(--tt-navy);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

/* ==========================================================
   VACCINE BUTTON
========================================================== */

#mpox-hme .mpox-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;

  width: fit-content;
  max-width: 100%;

  margin-top: auto;
  padding: 0.72rem 1rem;

  background: var(--tt-blue);
  border: 1px solid var(--tt-blue);
  border-radius: 12px;

  color: #ffffff !important;

  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  text-decoration: none !important;

  box-shadow: 0 5px 12px rgba(11, 95, 255, 0.18);

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

#mpox-hme .mpox-prevention-card:first-child>p {
  margin-bottom: 1rem;
}

#mpox-hme .mpox-btn i {
  flex: 0 0 auto;

  transition: transform 0.2s ease;
}

#mpox-hme .mpox-btn:hover,
#mpox-hme .mpox-btn:focus-visible {
  background: var(--tt-navy);
  border-color: var(--tt-navy);

  color: #ffffff !important;

  box-shadow: 0 7px 16px rgba(6, 28, 96, 0.22);
  transform: translateY(-2px);
}

#mpox-hme .mpox-btn:hover i,
#mpox-hme .mpox-btn:focus-visible i {
  transform: translateX(4px);
}

#mpox-hme .mpox-btn:focus-visible {
  outline: 3px solid rgba(11, 95, 255, 0.35);
  outline-offset: 3px;
}

/* ==========================================================
   PERSONAL ITEMS GRID
========================================================== */

#mpox-hme .mpox-prevention-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;

  margin: 0;
  padding: 0;

  list-style: none;
}

#mpox-hme .mpox-prevention-items li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 0.65rem;
  align-items: center;
  min-width: 0;
  margin: 0;
  padding: 0.4rem;

  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(180, 83, 9, 0.14);
  border-radius: 14px;
  color: #26364d;

  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.45;
  box-shadow: 0 3px 9px rgba(180, 83, 9, 0.045);
}

#mpox-hme .mpox-prevention-items li span {
  min-width: 0;
  overflow-wrap: anywhere;
}

#mpox-hme .mpox-prevention-items li>i {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  background: rgba(180, 83, 9, 0.11);
  border-radius: 12px;

  color: var(--tt-orange);

  font-size: 0.9rem;
  line-height: 1;
}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 900px) {
  #mpox-hme .mpox-prevention-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 700px) {
  #mpox-hme .mpox-prevention-content {
    grid-template-columns: 1fr;
  }

  #mpox-hme .mpox-prevention-card--wide {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  #mpox-hme .mpox-prevention-card {
    padding: 1rem;
    border-radius: 16px;
  }

  #mpox-hme .mpox-prevention-card__header {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 0.7rem;
  }

  #mpox-hme .mpox-prevention-card__icon {
    width: 42px;
    height: 42px;

    border-radius: 13px;
    font-size: 0.95rem;
  }

  #mpox-hme .mpox-prevention-card__header h3 {
    font-size: 1rem;
  }

  #mpox-hme .mpox-prevention-card>p {
    font-size: 0.9rem;
  }

  #mpox-hme .mpox-prevention-items {
    grid-template-columns: 1fr;
  }

  #mpox-hme .mpox-prevention-items li {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 0.75rem;
  }

  #mpox-hme .mpox-prevention-items li>i {
    width: 34px;
    height: 34px;

    border-radius: 10px;
    font-size: 0.82rem;
  }

  #mpox-hme .mpox-btn {
    width: 100%;
  }
}

/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

  #mpox-hme .mpox-btn,
  #mpox-hme .mpox-btn i {
    transition: none;
  }
}

/* ========================================
   Responsive
======================================== */

@media (max-width: 1100px) {
  .actions {
    grid-template-columns: repeat(6, 1fr);
  }

  .mpox-simple-list--flu {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  #mpox-hme .mpox-prevention-items li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.265rem;
    padding: 0.4rem;
    text-align: center;
  }

  #mpox-hme .mpox-prevention-items li>i {
    flex: 0 0 auto;
  }

  #mpox-hme .mpox-prevention-items li>span {
    display: block;
    width: 100%;
  }
}

@media (max-width: 920px) {
  nav#left-menu {
    height: auto !important;
  }

  .wizard-split {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 0.9rem;
  }

  .wizard-split__left,
  .wizard-split__right {
    min-width: 0;
  }

  .wizard-card {
    padding: 0.85rem;
  }

  .wizard-card__header {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding: 0.65rem 0.8rem;
  }

  .wizard-step-label {
    font-size: 1.2rem;
    white-space: normal;
  }

  .wizard-step {
    padding: 3.25rem 1rem;
    min-height: 165px;
  }

  .wizard-step legend {
    top: 4rem;
    margin-bottom: 0.85rem;
    font-size: 1.2rem;
    line-height: 1.35;
  }

  .wizard-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin-top: 2rem;
  }

  .wizard-step[data-cols="3"] .wizard-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wizard-choice {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
    padding: 0.7rem;
    min-height: 78px;
  }

  .wizard-choice__sub {
    max-width: none;
  }

  .wizard-result,
  .wizard-result-row {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .wizard-result .btn,
  .wizard-result-row .btn,
  #wizardReset {
    width: 100%;
    max-width: 100%;
  }

  .newsletter-signup__content {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .newsletter-signup__form {
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
  }

  .newsletter-signup__button,
  .newsletter-signup__input {
    width: 100%;
  }

  .actions-dropdown {
    display: block;
  }

  #mpox-hme .mpox-prevention-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .mpox-symptoms__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .mpox-overview {
    padding: 0.85rem;
    border-radius: 20px;
  }

  .mpox-overview__header {
    align-items: flex-start;
    padding: 0.4rem 0.4rem 0.9rem;
  }

  .mpox-clade-grid,
  .mpox-spread-grid,
  .mpox-fact-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 740px) {
  .callouts {
    grid-template-columns: 1fr 1fr;
  }

  .toolbar {
    align-items: center;
    justify-content: space-between;
  }

  #searchHelp {
    max-width: max-content;
    width: 100%;
  }

  body.has-dph-leftnav .actions {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    justify-items: stretch;
  }

  body.has-dph-leftnav .actions .btn {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .actions {
    grid-template-columns: repeat(3, 1fr);
  }

  .mpox-symptom-block {
    padding: 1.2rem;
  }

  .mpox-simple-list--two-col,
  .mpox-simple-list--flu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 680px) {
  #mpox-hme.mpox-landing-page nav.actions.mpox-quick-links>a.btn {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    min-height: 90px !important;
    padding: 0.8rem !important;
    gap: 0.45rem !important;

    text-align: center !important;
    white-space: normal !important;
  }

  #mpox-hme.mpox-landing-page nav.actions.mpox-quick-links>a.btn>i {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;
    flex: 0 0 auto !important;
  }

  #mpox-hme.mpox-landing-page nav.actions.mpox-quick-links>a.btn>span {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    text-align: center !important;
    line-height: 1.25 !important;
    font-size: 0.85rem;
  }
}

@media (max-width: 651px) {
  .grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 640px) {
  #mpox-hme .mpox-prevention-content {
    grid-template-columns: 1fr;
    gap: 0.85rem;

    margin-top: 1rem;
  }

  #mpox-hme .mpox-prevention-card,
  #mpox-hme .mpox-prevention-card--wide {
    grid-column: auto;

    padding: 1rem;

    border-radius: 16px;
  }

  /* Stack the main card icon above the heading */

  #mpox-hme .mpox-prevention-card__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;

    margin-bottom: 0.75rem;
  }

  #mpox-hme .mpox-prevention-card__icon {
    width: 44px;
    height: 44px;

    border-radius: 13px;
    font-size: 1rem;
  }

  #mpox-hme .mpox-prevention-card__header h3 {
    width: 100%;
    margin: 0;

    font-size: 1.05rem;
    line-height: 1.3;
  }

  #mpox-hme .mpox-prevention-card>p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  #mpox-hme .mpox-prevention-card h4 {
    margin: 0.9rem 0 0.65rem;

    font-size: 0.92rem;
  }

  /* Vaccine button */

  #mpox-hme .mpox-btn {
    width: 100%;

    margin-top: 1rem;
    padding: 0.78rem 0.9rem;

    white-space: normal;
  }

  #mpox-hme .mpox-btn>span:not(.sr-only) {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  /* Personal item grid */

  #mpox-hme .mpox-prevention-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  #mpox-hme .mpox-prevention-items li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;

    min-height: 108px;
    padding: 0.75rem 0.55rem;

    text-align: center;
  }

  #mpox-hme .mpox-prevention-items li>i {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;

    border-radius: 11px;
    font-size: 0.85rem;
  }

  #mpox-hme .mpox-prevention-items li>span {
    display: block;
    width: 100%;

    font-size: 0.82rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .intro-lead {
    padding: 0.85rem 0.45rem 0.9rem;
  }

  .icon-list>li {
    grid-template-columns: 36px 1fr;
    gap: 0.7rem;
    padding: 0.8rem;
  }

  .icon-list__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 0.92rem;
  }

  .callout-lead {
    grid-template-columns: 18px 1fr;
    padding: 0.7rem 0.75rem;
  }

  .risk-summary {
    flex-direction: column;
    width: 100%;
    padding: 1rem;
  }

  .risk-circle {
    width: 108px;
    height: 108px;
    flex-basis: 108px;
    background:
      radial-gradient(circle at center, #ffffff 54%, transparent 55%),
      conic-gradient(from -90deg,
        var(--risk-color) 0 var(--risk-percent),
        var(--risk-track) var(--risk-percent) 100%);
    box-shadow:
      inset 0 0 0 7px #ffffff,
      0 8px 18px rgba(0, 0, 0, 0.1);
  }

  .risk-circle-value {
    font-size: 1.4rem;
  }

  /* Section and accordion spacing */

  #mpox-hme #testing-treatment {
    padding-inline: 0;
  }

  #mpox-hme .tt-accordion-group {
    display: grid;
    gap: 0.75rem;

    width: 100%;
    min-width: 0;
    margin-top: 1rem;
  }

  #mpox-hme .tt-topic-panel {
    width: 100%;
    min-width: 0;

    border-radius: 16px;
  }

  /* ========================================================
     ACCORDION SUMMARY
  ======================================================== */

  #mpox-hme .tt-topic-panel>summary {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 32px;
    grid-template-areas:
      "icon title control"
      "icon description control";
    gap: 0.2rem 0.7rem;
    align-items: center;

    min-height: 0;
    padding: 0.85rem;

    overflow-wrap: anywhere;
  }

  #mpox-hme .tt-topic-panel__icon {
    grid-area: icon;

    width: 44px;
    height: 44px;
    align-self: start;

    border-radius: 13px;
    font-size: 1rem;
  }

  #mpox-hme .tt-topic-panel__title {
    grid-area: title;

    min-width: 0;

    font-size: 1.05rem;
    line-height: 1.25;
  }

  #mpox-hme .tt-topic-panel__summary {
    grid-area: description;

    min-width: 0;

    font-size: 0.82rem;
    line-height: 1.4;

    white-space: normal;
    overflow-wrap: anywhere;
  }

  /* Supports an existing chevron or plus/minus control */

  #mpox-hme .tt-topic-panel>summary::after {
    grid-area: control;
    align-self: center;
    justify-self: end;
  }

  /* ========================================================
     ACCORDION BODY
  ======================================================== */

  #mpox-hme .tt-topic-panel__body {
    min-width: 0;
    padding: 0.9rem;

    overflow-wrap: anywhere;
  }

  #mpox-hme .tt-topic-panel__body p,
  #mpox-hme .tt-topic-panel__body li {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  #mpox-hme .tt-topic-panel__body a {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  /* ========================================================
     TESTING STEPS
  ======================================================== */

  #mpox-hme .tt-testing-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;

    width: 100%;
  }

  #mpox-hme .tt-testing-step {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 0.7rem;
    align-items: start;

    min-width: 0;
    padding: 0.9rem;

    border-radius: 14px;
  }

  #mpox-hme .tt-testing-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border-radius: 12px;
    font-size: 0.88rem;
  }

  #mpox-hme .tt-testing-step>div {
    min-width: 0;
  }

  #mpox-hme .tt-testing-step h3 {
    margin: 0 0 0.4rem;

    font-size: 1rem;
    line-height: 1.3;
  }

  #mpox-hme .tt-testing-step p {
    margin: 0;
  }

  #mpox-hme .tt-testing-step p+p {
    margin-top: 0.65rem;
  }

  /* Testing information note */

  #mpox-hme .tt-panel-intro {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 0.7rem;
    align-items: start;

    margin-top: 0.8rem;
    padding: 0.9rem;

    border-radius: 14px;
  }

  #mpox-hme .tt-panel-intro__icon {
    width: 38px;
    height: 38px;

    border-radius: 12px;
  }

  #mpox-hme .tt-panel-intro p {
    min-width: 0;
    margin: 0;
  }

  /* ========================================================
     TWO-COLUMN CONTENT CARDS
  ======================================================== */

  #mpox-hme .tt-content-grid,
  #mpox-hme .tt-content-grid--two {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;

    width: 100%;
  }

  #mpox-hme .tt-content-card {
    min-width: 0;
    padding: 1rem;

    border-radius: 15px;
  }

  #mpox-hme .tt-content-card h3 {
    margin: 0 0 0.65rem;

    font-size: 1rem;
    line-height: 1.35;
  }

  #mpox-hme .tt-content-card p {
    margin-top: 0;
  }

  /* ========================================================
     LISTS
  ======================================================== */

  #mpox-hme .tt-check-list,
  #mpox-hme .tt-list-clean {
    margin: 0.75rem 0 0;
    padding: 0;

    list-style: none;
  }

  #mpox-hme .tt-check-list li,
  #mpox-hme .tt-list-clean li {
    position: relative;

    min-width: 0;
    margin: 0;
    padding: 0.7rem 0.75rem 0.7rem 2rem;

    border-radius: 11px;

    overflow-wrap: anywhere;
  }

  #mpox-hme .tt-check-list li+li,
  #mpox-hme .tt-list-clean li+li {
    margin-top: 0.5rem;
  }

  /* ========================================================
     ANTIVIRAL MEDICATION CALLOUT
  ======================================================== */

  #mpox-hme .tt-medication-note {
    margin-top: 0.85rem;
    padding: 1rem;

    border-radius: 16px;
  }

  #mpox-hme .tt-medication-note__header {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 0.75rem;
    align-items: start;
  }

  #mpox-hme .tt-medication-note__icon {
    width: 44px;
    height: 44px;

    border-radius: 13px;
    font-size: 1rem;
  }

  #mpox-hme .tt-medication-note__header>div {
    min-width: 0;
  }

  #mpox-hme .tt-medication-note__header h3 {
    margin: 0 0 0.4rem;

    font-size: 1.05rem;
    line-height: 1.3;
  }

  #mpox-hme .tt-medication-note__header p {
    margin: 0;
  }

  #mpox-hme .tt-medication-note__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;

    margin-top: 0.85rem;
  }

  #mpox-hme .tt-medication-note__grid article {
    min-width: 0;
    padding: 0.85rem;

    border-radius: 13px;
  }

  #mpox-hme .tt-medication-note__grid article strong {
    display: block;
    margin-bottom: 0.35rem;

    font-size: 0.92rem;
  }

  #mpox-hme .tt-medication-note__grid article p {
    margin: 0;
  }

  #mpox-hme .tt-medication-note__footer {
    margin: 0.85rem 0 0;
    padding: 0.85rem;

    border-radius: 13px;
  }

  /* ========================================================
     RETURN TO WORK / SCHOOL
  ======================================================== */

  #mpox-hme .tt-return-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;

    width: 100%;
    margin-top: 0.85rem;
  }

  #mpox-hme .tt-return-grid article {
    min-width: 0;
    padding: 1rem;

    border-radius: 15px;
  }

  #mpox-hme .tt-return-grid h3 {
    margin: 0 0 0.5rem;

    font-size: 1rem;
    line-height: 1.35;
  }

  #mpox-hme .tt-return-grid p {
    margin: 0;
  }
}

@media (max-width: 620px) {

  .wizard-card,
  .wizard-step,
  .wizard-step legend,
  .wizard-options,
  .wizard-choice {
    min-width: 0;
  }

  .wizard-card {
    padding: 0.75rem;
  }

  .wizard-card__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 0.7rem 0.75rem;
  }

  .wizard-step {
    width: 100%;
    min-width: 0;
    min-height: auto;
    padding: 1rem 0.85rem;
    margin: 0;
    overflow: hidden;
  }

  .wizard-step legend {
    position: relative;
    top: 2.5rem;
    width: auto;
    max-width: 100%;
    margin: 0 0 2.5rem;
    padding: 0;
    font-size: 1.1rem;
    line-height: 1.35;
    text-align: left;
    white-space: normal;
  }

  .wizard-options,
  .wizard-step[data-cols="3"] .wizard-options {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    margin-top: 0;
    width: 100%;
  }

  .wizard-choice {
    width: 100%;
    min-height: auto;
    padding: 0.85rem 0.8rem;
    justify-items: start;
    text-align: left;
  }

  .wizard-choice__title,
  .wizard-choice__sub {
    text-align: left;
    max-width: 100%;
  }

  .wizard-step-actions,
  #wizardReset {
    width: 100%;
  }
}

@media (max-width: 600px) {
  #searchHelp {
    max-width: none;
    width: auto;
  }

  .card-links {
    margin-bottom: 2rem;
  }

  .card details.card-links>summary {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
    font-weight: 700;
  }

  .card details.card-links>summary::-webkit-details-marker {
    display: none;
  }

  .card details.card-links>ul {
    display: none;
    padding-left: 18px;
    padding-bottom: 10px;
    margin: 10px 0 0;
  }

  .card details.card-links[open]>ul {
    display: block;
  }

  .card details.card-links>summary::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--muted);
    border-bottom: 2px solid var(--muted);
    transform: rotate(45deg);
    transition: transform 0.2s ease;
  }

  .card details.card-links[open]>summary::after {
    transform: rotate(-135deg);
  }
}

@media (max-width: 560px) {
  .mpox-symptoms {
    padding: 0.85rem;
    border-radius: 18px;
  }

  .mpox-symptoms__header {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 0.75rem;

    padding: 0.35rem;
  }

  .mpox-symptoms__header-icon {
    width: 44px;
    height: 44px;

    border-radius: 14px;
  }

  .mpox-symptom-card {
    padding: 1rem;
    border-radius: 16px;
  }

  .mpox-symptom-card__icon {
    width: 50px;
    height: 50px;

    border-radius: 15px;
  }

  .mpox-flu-grid {
    grid-template-columns: 1fr;
  }

  .mpox-flu-grid li:last-child {
    grid-column: auto;
  }

  .mpox-symptoms__timing,
  .mpox-symptoms__care {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 0.75rem;

    padding: 0.85rem;
  }

  .mpox-symptoms__timing-icon,
  .mpox-symptoms__care-icon {
    width: 42px;
    height: 42px;

    border-radius: 12px;
  }
}

@media (max-width: 520px) {
  .modal {
    place-items: end center;
    padding: 10px;
  }

  .modal__dialog {
    width: 100%;
    max-height: 88vh;
    border-radius: 16px 16px 0 0;
  }

  .modal__header {
    padding: 14px 14px;
  }

  .modal__body {
    padding: 12px 14px 14px;
  }

  .mpox-accordion__summary {
    padding: 0.85rem;
  }

  .mpox-accordion__summary-main {
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: flex-start;
  }

  .mpox-accordion__icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 14px;
  }

  .mpox-accordion__title {
    font-size: 1.05rem;
  }

  .mpox-accordion__description {
    font-size: 0.84rem;
  }

  .mpox-accordion__panel {
    padding-inline: 0.85rem;
  }

  .mpox-accordion__item[open] .mpox-accordion__panel {
    padding: 0 0.85rem 0.85rem;
  }

  .mpox-fact-card,
  .mpox-spread-grid li {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .mpox-fact-card__icon,
  .mpox-spread-grid__icon {
    width: 38px;
    height: 38px;
  }

  .mpox-section-divider {
    margin: 2rem auto 1.5rem;
  }

  .mpox-section-divider::after {
    width: 17px;
    height: 17px;
  }

  .mpox-symptoms-content {
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .mpox-symptom-block {
    padding: 1rem;

    border-left-width: 5px;
    border-radius: 15px;
  }

  .mpox-symptom-title {
    align-items: flex-start;

    font-size: 1.1rem;
  }

  .mpox-symptom-title::before {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .mpox-simple-list--two-col,
  .mpox-simple-list--flu {
    grid-template-columns: 1fr;
  }

  .mpox-simple-list--flu li {
    grid-template-columns: 52px minmax(0, 1fr);
    grid-template-rows: auto;
    justify-items: start;
    align-items: center;
    gap: 0.85rem;

    min-height: 0;

    text-align: left;
  }

  .mpox-simple-list--flu li span {
    align-items: center;
    justify-content: flex-start;

    min-height: 0;

    text-align: left;
  }

  .mpox-symptom-note {
    padding: 0.9rem 1rem;
  }
}

@media (max-width: 480px) {
  .mpox-simple-list--flu {
    grid-template-columns: repeat(2, 1fr);
  }

  .mpox-search__toggle:checked~.mpox-search__field .mpox-search__button {
    top: 4px;
  }

  .mpox-search__icon {
    top: 4px;
  }

  .mpox-overview-callout,
  .current-situation-callout {
    padding: 14px;
    border-left-width: 4px;
    border-right-width: 4px;
    border-radius: 14px;
  }

  .icon-list {
    gap: 0.75rem;
  }

  .icon-list>li {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 0.95rem;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(6, 28, 96, 0.12);
    box-shadow: 0 8px 20px rgba(6, 28, 96, 0.08);
  }

  .icon-list__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    margin: 0;
  }

  .icon-list__content {
    min-width: 0;
  }

  .icon-list__content>strong {
    display: block;
    margin: 0 0 0.45rem;
    font-size: 1rem;
    line-height: 1.3;
  }

  .icon-list__content p {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .sub-list {
    list-style: none;
    margin: 0.7rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
  }

  .sub-list li {
    margin: 0;
    padding: 0.75rem 0.8rem;
    border-radius: 12px;
    background: #f4f8ff;
    border: 1px solid rgba(11, 95, 255, 0.12);
    line-height: 1.5;
  }

  .sub-list li strong {
    display: inline;
    color: #003588;
  }

  .icon-list>li {
    display: block !important;
    padding: 0.95rem !important;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(6, 28, 96, 0.12);
    box-shadow: 0 8px 20px rgba(6, 28, 96, 0.08);
  }

  .icon-list__icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    margin: 0 0 0.7rem 0;
    border-radius: 12px;
    vertical-align: top;
  }

  .icon-list__content {
    display: block;
    min-width: 0;
  }

  .icon-list__content>strong {
    display: block;
    margin: 0 0 0.45rem;
    font-size: 1rem;
    line-height: 1.3;
  }

  .icon-list__content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  #searchHelp {
    width: 100%;
    max-width: 100%;
    display: none;
  }

  .mpox-search__field {
    width: 100% !important;
    border-width: 2px !important;
    border-color: var(--border) !important;
    background: #fff !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
  }

  .mpox-search__input {
    opacity: 1 !important;
    pointer-events: auto !important;
    width: calc(100% - 44px - 44px);
  }

  .mpox-search__input::placeholder {
    opacity: 1 !important;
  }

  .mpox-search__button--toggle {
    display: none !important;
  }

  .mpox-search__button--submit {
    display: flex !important;
    border: unset !important;
    background: unset !important;
    box-shadow: unset !important;
    margin-top: 0 !important;
  }

  .mpox-search__close,
  .mpox-search__label--close {
    display: none !important;
  }

  #main-content input[type="search"] {
    padding: 5px 0 !important;
    font-size: clamp(0.8rem, 1.8vw, 0.85rem);
    left: 26px;
  }

  .card {
    display: flex;
    flex-direction: column;
  }

  .card .card-links {
    margin-top: auto;
  }

  #mpox-sitemap.grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
  }

  #mpox-sitemap .card {
    padding: 12px 12px 46px;
    border-radius: 14px;
  }

  #mpox-sitemap .card-icon {
    width: 32px;
    height: 32px;
    top: 10px;
    left: 10px;
    border-radius: 10px;
  }

  #mpox-sitemap .card h2 {
    margin-top: 40px;
    margin-bottom: 6px;
    line-height: 1.15;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  #mpox-sitemap .card p {
    margin-bottom: 10px;
    font-size: 0.85rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  #mpox-sitemap .card details.card-links {
    margin-top: auto;
  }

  #mpox-sitemap .card details.card-links>summary {
    padding: 10px 10px;
    margin-top: 8px;
    font-size: 0.85rem;
  }

  #mpox-sitemap .card::after {
    width: 96px;
    height: 30px;
    font-size: 0.7rem;
    padding-right: 6px;
    border-top-left-radius: 14px;
  }

  #mpox-sitemap .card::before {
    right: 12px;
    bottom: 8px;
  }

  .wizard-split {
    padding: 0.75rem;
    margin: 0.75rem 0 1rem;
    border-radius: 14px;
  }

  .wizard-card {
    padding: 0.75rem;
    border-radius: 14px;
  }

  .wizard-card__header {
    gap: 0.5rem;
    padding: 0.6rem 0.75rem;
  }

  .wizard-step {
    padding: 3.25rem 1rem;
    min-height: auto;
    margin-top: -1rem;
  }

  .wizard-step legend {
    font-size: 1.1rem !important;
    top: 4rem !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.35;
  }

  .wizard-options,
  .wizard-step[data-cols="3"] .wizard-options {
    grid-template-columns: 1fr !important;
    margin-top: 2rem;
  }

  .wizard-choice {
    width: 100%;
    min-height: auto;
    padding: 0.8rem 0.75rem;
  }

  .wizard-choice__title {
    font-size: 1.05rem;
  }

  .wizard-choice__sub {
    font-size: 0.84rem;
    max-width: none;
  }

  .wizard-note {
    /*grid-template-columns: 1fr;*/
    gap: 0.45rem;
    padding: 0.75rem 0.85rem;
  }

  .wizard-note .fas {
    margin-top: 1rem;
    font-size: 1.7rem;
  }

  .wizard-steps {
    justify-content: center;
    width: 100%;
  }

  .wizard-result,
  .wizard-result-row {
    width: 100%;
  }

  .wizard-result .btn,
  .wizard-result-row .btn,
  #wizardReset {
    width: 100%;
    max-width: 100%;
  }

  .wizard-modal__dialog {
    width: calc(100vw - 1rem);
    max-height: calc(100vh - 1rem);
    margin: 0.5rem auto;
    padding: 1rem 0.9rem;
    border-radius: 14px;
  }

  .wizard-modal__content {
    padding-right: 1.75rem;
  }

  .wizard-modal__title {
    font-size: 1.2rem;
  }

  .newsletter-signup__content {
    border-radius: 14px;
    padding: 0.9rem;
  }

  .newsletter-signup__copy h2 {
    font-size: 1rem;
  }

  .newsletter-signup__input,
  .newsletter-signup__button {
    height: 44px;
  }

  .actions {
    grid-template-columns: repeat(3, 1fr);
  }

  .mpox-prevention-items {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@media (max-width: 400px) {
  .mpox-simple-list--flu {
    grid-template-columns: 1fr;
  }

  #mpox-hme .tt-topic-panel>summary {
    grid-template-columns: 40px minmax(0, 1fr) 28px;
    gap: 0.2rem 0.6rem;
    padding: 0.75rem;
  }

  #mpox-hme .tt-topic-panel__icon {
    width: 40px;
    height: 40px;

    border-radius: 12px;
  }

  #mpox-hme .tt-topic-panel__summary {
    font-size: 0.78rem;
  }

  #mpox-hme .tt-topic-panel__body {
    padding: 0.75rem;
  }

  #mpox-hme .tt-testing-step,
  #mpox-hme .tt-panel-intro,
  #mpox-hme .tt-medication-note__header {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 0.6rem;
  }

  #mpox-hme .tt-testing-step__number,
  #mpox-hme .tt-panel-intro__icon,
  #mpox-hme .tt-medication-note__icon {
    width: 34px;
    height: 34px;

    border-radius: 10px;
  }
}

@media (max-width: 380px) {
  .wizard-options {
    margin-top: 3rem;
  }

  .wizard-step legend {
    top: 5rem !important;
  }

  .wizard-step {
    margin-top: -1rem;
  }
}

@media (max-width: 360px) {
  .btn {
    font-size: 0.85rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .card {
    padding-top: 52px;
  }

  .card-icon {
    width: 36px;
    height: 36px;
  }

  .actions {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 340px) {
  #mpox-sitemap.grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 300px) {
  .wizard-options {
    margin-top: 3rem;
  }

  .wizard-step legend {
    top: 5rem !important;
  }

  .wizard-step {
    margin-top: -2rem;
  }
}

@media (max-width: 280px) {
  #main-content input[type="search"] {
    padding: 5px 0 !important;
    left: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .actions-dropdown .menu-wrap,
  .actions-dropdown summary .chev,
  .modal,
  .modal__dialog,
  #left-menu details>summary i,
  #wizardResult,
  .wizard-pointer__wiggle,
  .wizard-pointer::before,
  .wizard-step,
  .wizard-choice {
    transition: none !important;
    animation: none !important;
  }

  #wizardResult {
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ==========================================================
   MPOX LANDING PAGE — DESIGN TOKENS AND PAGE SCOPE
   Purpose:
   - Defines the Mpox color palette, spacing, radii, and shadows.
   - Scoped to this page so these styles do not affect other pages.
========================================================== */

#mpox-hme.mpox-landing-page {
  --mpox-navy: #061c60;
  --mpox-blue: #0b5fff;
  --mpox-blue-dark: #003f70;
  --mpox-purple: #633075;
  --mpox-teal: #0f766e;
  --mpox-gold: #f3b125;
  --mpox-ink: #1f2937;
  --mpox-muted: #526174;
  --mpox-line: #dce5f0;
  --mpox-soft: #f5f8fc;
  --mpox-soft-blue: #edf4ff;
  --mpox-white: #ffffff;

  --mpox-radius-sm: 12px;
  --mpox-radius-md: 18px;
  --mpox-radius-lg: 26px;

  --mpox-shadow-sm: 0 4px 14px rgba(6, 28, 96, 0.07);
  --mpox-shadow-md: 0 14px 34px rgba(6, 28, 96, 0.1);

  color: var(--mpox-ink);
  background: var(--mpox-white);
}

/* ==========================================================
   MPOX PAGE WIDTH AND ANCHOR SPACING
   Purpose:
   - Keeps page content aligned to a maximum width of 1000px.
   - Adds space above anchored sections when quick links are used.
========================================================== */

#mpox-hme.mpox-landing-page .page-container {
  width: min(100% - 2rem, 1000px);
  margin-inline: auto;
}

#mpox-hme.mpox-landing-page main>section {
  scroll-margin-top: 1.5rem;
}

/* ==========================================================
   MPOX QUICK LINKS — OUTER NAVIGATION BAR
   Purpose:
   - Displays all six quick links in one desktop row.
   - Creates the dark Public Health navigation background.
   - Keeps all cards equal in width and height.
========================================================== */

#mpox-hme.mpox-landing-page .mpox-quick-links {
  position: relative;
  isolation: isolate;

  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
  gap: 0.7rem;
  padding: 0.85rem;
  overflow: hidden;

  background: linear-gradient(135deg,
      var(--mpox-navy) 0%,
      var(--mpox-blue-dark) 100%);

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 0;
  border-radius: 0 0 var(--mpox-radius-lg) var(--mpox-radius-lg);

  box-shadow: var(--mpox-shadow-md);
}

/* ==========================================================
   MPOX QUICK LINKS — DECORATIVE BACKGROUND
   Purpose:
   - Adds a subtle background circle without affecting content.
   - The element is decorative and does not receive pointer events.
========================================================== */

#mpox-hme.mpox-landing-page .mpox-quick-links::before {
  content: "";
  position: absolute;
  right: -5rem;
  bottom: -8rem;
  z-index: -1;

  width: 16rem;
  height: 16rem;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;

  pointer-events: none;
}

/* ==========================================================
   MPOX QUICK LINKS — INDIVIDUAL CARDS
   Purpose:
   - Uses a compact horizontal icon-and-text layout.
   - Keeps long translated text contained within each card.
   - Overrides older generic .actions and .btn styles.
========================================================== */

#mpox-hme.mpox-landing-page .mpox-quick-links>.btn {
  position: relative;
  display: block;
  grid-template-columns: 2.65rem minmax(0, 1fr);
  align-items: center;
  justify-content: initial;
  gap: 0.65rem;

  min-width: 0;
  min-height: 72px;
  padding: 0.7rem 0.75rem;
  color: var(--mpox-navy);
  text-align: center;
  white-space: normal;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 15px;
  box-shadow: 0 5px 14px rgba(0, 20, 65, 0.14);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease;
}

/* ==========================================================
   MPOX QUICK LINKS — ICONS
   Purpose:
   - Gives every quick link a consistent icon container.
   - Uses alternating Mpox brand colors to improve scanning.
========================================================== */

#mpox-hme.mpox-landing-page .mpox-quick-links>.btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 2.65rem;
  height: 2.65rem;
  flex: 0 0 2.65rem;

  margin: 0;

  color: var(--mpox-blue-dark);
  background: var(--mpox-soft-blue);
  border: 1px solid rgba(11, 95, 255, 0.16);
  border-radius: 12px;

  font-size: 1.05rem;
  line-height: 1;

  transition:
    color 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease;
}

#mpox-hme.mpox-landing-page .mpox-quick-links>.btn:nth-child(2) i,
#mpox-hme.mpox-landing-page .mpox-quick-links>.btn:nth-child(5) i {
  color: var(--mpox-purple);
  background: #f7effa;
  border-color: rgba(99, 48, 117, 0.18);
}

#mpox-hme.mpox-landing-page .mpox-quick-links>.btn:nth-child(3) i,
#mpox-hme.mpox-landing-page .mpox-quick-links>.btn:nth-child(6) i {
  color: var(--mpox-teal);
  background: #eaf8f5;
  border-color: rgba(15, 118, 110, 0.18);
}

/* ==========================================================
   MPOX QUICK LINKS — TEXT
   Purpose:
   - Keeps labels readable without forcing a fixed character width.
   - Allows long words and translations to wrap safely.
========================================================== */

#mpox-hme.mpox-landing-page .mpox-quick-links>.btn span {
  display: block;
  min-width: 0;
  max-width: none;
  color: inherit;

  font-size: clamp(0.88rem, 0.9vw, 1rem);
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
  word-break: normal;
}

/* ==========================================================
   MPOX QUICK LINKS — HOVER AND KEYBOARD FOCUS
   Purpose:
   - Gives pointer users a subtle lift effect.
   - Provides a strong ADA-visible keyboard focus indicator.
========================================================== */

@media (hover: hover) {
  #mpox-hme.mpox-landing-page .mpox-quick-links>.btn:hover {
    transform: translateY(-3px);

    background: var(--mpox-white);
    border-color: rgba(243, 177, 37, 0.85);

    box-shadow: 0 11px 23px rgba(0, 20, 65, 0.22);
  }

  #mpox-hme.mpox-landing-page .mpox-quick-links>.btn:hover i {
    color: var(--mpox-white);
    background: var(--mpox-blue-dark);
    border-color: var(--mpox-blue-dark);
  }
}

#mpox-hme.mpox-landing-page .mpox-quick-links>.btn:focus-visible,
#mpox-hme.mpox-landing-page main a:focus-visible,
#mpox-hme.mpox-landing-page main summary:focus-visible,
#mpox-hme.mpox-landing-page main button:focus-visible,
#mpox-hme.mpox-landing-page main input:focus-visible,
#mpox-hme.mpox-landing-page main select:focus-visible {
  outline: 3px solid var(--mpox-gold);
  outline-offset: 3px;
}

/* ==========================================================
   MPOX CONTENT WIDTH PROTECTION
   Purpose:
   - Prevents grid and flex children from creating overflow.
========================================================== */

#mpox-hme.mpox-landing-page .info-panel,
#mpox-hme.mpox-landing-page .dashboard-section {
  min-width: 0;
}

/* ==========================================================
   MPOX QUICK LINKS — LARGE TABLET
   Purpose:
   - Changes six desktop cards into two rows of three.
========================================================== */

@media (max-width: 1050px) {
  #mpox-hme.mpox-landing-page .mpox-quick-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  #mpox-hme.mpox-landing-page .mpox-quick-links>.btn span {
    font-size: 0.9rem;
  }
}

/* ==========================================================
   MPOX QUICK LINKS — SMALL TABLET
   Purpose:
   - Changes the quick links into two columns.
========================================================== */

@media (max-width: 700px) {
  #mpox-hme.mpox-landing-page .mpox-quick-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    padding: 0.7rem;
    border-radius: 0 0 20px 20px;
  }

  #mpox-hme.mpox-landing-page .page-container {
    width: min(100% - 1rem, 1000px);
  }

  #mpox-hme.mpox-landing-page .mpox-quick-links>.btn {
    min-height: 68px;
    padding: 0.65rem;
  }
}

/* ==========================================================
   MPOX QUICK LINKS — MOBILE
   Purpose:
   - Stacks links into one column for narrow screens.
   - Preserves a large and accessible touch target.
========================================================== */

@media (max-width: 460px) {
  #mpox-hme.mpox-landing-page .mpox-quick-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #mpox-hme.mpox-landing-page .mpox-quick-links>.btn {
    grid-template-columns: 1.75rem minmax(0, 1fr);
    min-height: 64px;
  }

  #mpox-hme.mpox-landing-page .mpox-quick-links>.btn i {
    width: 1.75rem;
    height: 1.75rem;
    flex-basis: 1.75rem;
  }

  #mpox-hme.mpox-landing-page .mpox-quick-links>.btn span {
    font-size: 0.9rem;
  }
}

/* ========================================
   Extra Small Phones (380px and below)
======================================== */

@media (max-width: 380px) {

  /* Quick Links Container */
  #mpox-hme.mpox-landing-page .mpox-quick-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    padding: 0.5rem;
  }

  /* Individual Button */
  #mpox-hme.mpox-landing-page .mpox-quick-links>a,
  #mpox-hme.mpox-landing-page .mpox-quick-links>.btn {
    min-height: 54px;
    padding: 0.65rem 0.75rem;
    gap: 0.65rem;
    border-radius: 12px;
  }

  /* Icon */
  #mpox-hme.mpox-landing-page .mpox-quick-links i,
  #mpox-hme.mpox-landing-page .mpox-quick-links img {
    width: 22px;
    height: 22px;
    font-size: 1rem;
  }

  /* Text */
  #mpox-hme.mpox-landing-page .mpox-quick-links span {
    font-size: 0.82rem;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: 0;
  }

  /* General Page Typography */
  #mpox-hme h1 {
    font-size: 1.9rem !important;
  }

  #mpox-hme h2 {
    font-size: 1.45rem;
  }

  #mpox-hme h3 {
    font-size: 1.15rem;
  }

  #mpox-hme p,
  #mpox-hme li {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  #mpox-hme.mpox-landing-page .mpox-quick-links>.btn span {
    font-size: 0.8rem;
  }

  #mpox-hme.mpox-landing-page .mpox-quick-links>.btn i {
    width: 1.75rem;
    height: 1.75rem;
    flex-basis: 1.75rem;
  }

  /* Cards */
  #mpox-hme .card,
  #mpox-hme article,
  #mpox-hme section {
    padding: 0.9rem;
  }

  /* Accordion */
  #mpox-hme .mpox-accordion__summary {
    padding: 0.85rem;
    min-height: auto;
  }

  #mpox-hme .mpox-accordion__title {
    font-size: 1rem;
  }

  #mpox-hme .mpox-accordion__description {
    font-size: 0.82rem;
  }

  /* Buttons */
  #mpox-hme .btn {
    font-size: 0.85rem;
    padding: 0.7rem 0.9rem;
  }
}

/* ========================================
   Ultra Small Phones (340px and below)
======================================== */

@media (max-width: 340px) {
  #mpox-hme.mpox-landing-page .mpox-quick-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  #mpox-hme.mpox-landing-page .mpox-quick-links>a,
  #mpox-hme.mpox-landing-page .mpox-quick-links>.btn {
    display: flex;
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
    text-align: center;

    min-height: 90px;
    padding: 0.8rem;
    gap: 0.45rem;
  }

  /* Icon first */
  #mpox-hme.mpox-landing-page .mpox-quick-links>a>i,
  #mpox-hme.mpox-landing-page .mpox-quick-links>a>img,
  #mpox-hme.mpox-landing-page .mpox-quick-links>.btn>i,
  #mpox-hme.mpox-landing-page .mpox-quick-links>.btn>img {
    order: 1;
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    margin: 0;
  }

  /* Text below icon */
  #mpox-hme.mpox-landing-page .mpox-quick-links>a>span,
  #mpox-hme.mpox-landing-page .mpox-quick-links>.btn>span {
    order: 2;
    display: block;
    width: 100%;
    max-width: 100%;

    text-align: center;
    font-size: 0.82rem;
    line-height: 1.3;

    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}


/* ==========================================================
   MPOX — CONSOLIDATED MOBILE LAYOUT
   480px and below

   Placed after the older 480px, 460px, 380px, and 340px rules
   so these declarations become the final narrow-screen layout.
========================================================== */

@media screen and (max-width: 480px) {
  /* ----------------------------------------------------------
     Page width and overflow protection
  ---------------------------------------------------------- */

  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  #mpox-hme,
  #mpox-hme.mpox-landing-page,
  #mpox-hme.mpox-landing-page main,
  #mpox-hme.mpox-landing-page .page-container,
  #mpox-hme.mpox-landing-page .container,
  #mpox-hme.mpox-landing-page .info-panel,
  #mpox-hme.mpox-landing-page .dashboard-section {
    min-width: 0;
    max-width: 100%;
  }

  #mpox-hme.mpox-landing-page .page-container {
    width: calc(100% - 1rem);
    margin-inline: auto;
  }

  #mpox-hme.mpox-landing-page .container {
    width: 100%;
    margin: 0.75rem auto;
    padding: 0.75rem;
    border-radius: 12px;
  }

  #mpox-hme img,
  #mpox-hme iframe,
  #mpox-hme video,
  #mpox-hme canvas,
  #mpox-hme svg {
    max-width: 100%;
  }

  #mpox-hme img,
  #mpox-hme video {
    height: auto;
  }

  /* ----------------------------------------------------------
     Typography
  ---------------------------------------------------------- */

  #mpox-hme h1 {
    font-size: clamp(1.75rem, 9vw, 2.15rem) !important;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  #mpox-hme h2,
  #mpox-hme .hero-subheader,
  #mpox-hme .mpox-overview__title {
    font-size: clamp(1.3rem, 7vw, 1.65rem);
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  #mpox-hme h3 {
    font-size: clamp(1.05rem, 5.5vw, 1.25rem);
    line-height: 1.3;
    overflow-wrap: anywhere;
  }

  #mpox-hme p,
  #mpox-hme li {
    font-size: 0.94rem;
    line-height: 1.6;
    overflow-wrap: anywhere;
  }

  #mpox-hme a,
  #mpox-hme button,
  #mpox-hme summary,
  #mpox-hme input,
  #mpox-hme select,
  #mpox-hme textarea {
    max-width: 100%;
  }

  /* ----------------------------------------------------------
     Hero and introduction
  ---------------------------------------------------------- */

  #mpox-hme header.hero {
    padding: 1rem;
    border-radius: 14px;
  }

  #mpox-hme .hero .last-updated {
    max-width: 100%;
    padding: 0.4rem 0.7rem;
    white-space: normal;
  }

  #mpox-hme .hero-subheader {
    margin-top: 0.75rem;
    padding-bottom: 0.65rem;
  }

  #mpox-hme .hero-subheader::after {
    width: 64px;
    height: 3px;
  }

  #mpox-hme .intro,
  #mpox-hme .intro-lead,
  #mpox-hme .info-panel {
    padding-inline: 0;
  }

  /* ----------------------------------------------------------
     Quick links
     Two columns with icon above text
  ---------------------------------------------------------- */

  #mpox-hme.mpox-landing-page .mpox-quick-links {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.55rem !important;

    width: 100% !important;
    margin: 0 auto 1rem !important;
    padding: 0.6rem !important;

    border-radius: 0 0 16px 16px !important;
  }

  #mpox-hme.mpox-landing-page .mpox-quick-links>a,
  #mpox-hme.mpox-landing-page .mpox-quick-links>.btn,
  #mpox-hme.mpox-landing-page .mpox-quick-links>a.btn {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    min-width: 0 !important;
    min-height: 96px !important;
    padding: 0.7rem 0.45rem !important;
    gap: 0.5rem !important;

    text-align: center !important;
    white-space: normal !important;
    border-radius: 12px !important;
  }

  #mpox-hme.mpox-landing-page .mpox-quick-links>a>i,
  #mpox-hme.mpox-landing-page .mpox-quick-links>.btn>i,
  #mpox-hme.mpox-landing-page .mpox-quick-links>a.btn>i,
  #mpox-hme.mpox-landing-page .mpox-quick-links>a>img,
  #mpox-hme.mpox-landing-page .mpox-quick-links>.btn>img {
    order: 1 !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 2.25rem !important;
    height: 2.25rem !important;
    flex: 0 0 2.25rem !important;

    margin: 0 !important;
    font-size: 1rem !important;
  }

  #mpox-hme.mpox-landing-page .mpox-quick-links>a>span,
  #mpox-hme.mpox-landing-page .mpox-quick-links>.btn>span,
  #mpox-hme.mpox-landing-page .mpox-quick-links>a.btn>span {
    order: 2 !important;

    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;

    margin: 0 !important;

    font-size: 0.78rem !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    text-align: center !important;

    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  /* ----------------------------------------------------------
     Shared cards, callouts, and panels
  ---------------------------------------------------------- */

  #mpox-hme .mpox-overview,
  #mpox-hme .mpox-overview-callout,
  #mpox-hme .current-situation-callout,
  #mpox-hme .key-facts-callout,
  #mpox-hme .callout,
  #mpox-hme .mpox-symptom-block,
  #mpox-hme .dashboard-section {
    width: 100%;
    margin-inline: 0;
    padding: 0.85rem;
    border-radius: 14px;
  }

  #mpox-hme .current-situation-callout,
  #mpox-hme .key-facts-callout,
  #mpox-hme .mpox-overview-callout {
    border-left-width: 4px;
    border-right-width: 4px;
  }

  #mpox-hme .callout-lead {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    padding: 0.75rem;
  }

  /* ----------------------------------------------------------
     Overview accordion
  ---------------------------------------------------------- */

  #mpox-hme .mpox-overview {
    padding: 0.7rem;
    border-radius: 16px;
  }

  #mpox-hme .mpox-overview__header {
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.25rem 0.25rem 0.75rem;
  }

  #mpox-hme .mpox-overview__header-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 12px;
  }

  #mpox-hme .mpox-overview__eyebrow {
    white-space: normal;
  }

  #mpox-hme .mpox-accordion {
    gap: 0.65rem;
  }

  #mpox-hme .mpox-accordion__item {
    border-radius: 14px;
  }

  #mpox-hme .mpox-accordion__summary {
    grid-template-columns: minmax(0, 1fr) 30px;
    align-items: start;
    gap: 0.55rem;

    min-height: 0;
    padding: 0.75rem;
  }

  #mpox-hme .mpox-accordion__summary-main {
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: start;
    gap: 0.65rem;
  }

  #mpox-hme .mpox-accordion__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 1rem;
  }

  #mpox-hme .mpox-accordion__title {
    font-size: 1rem;
    line-height: 1.25;
  }

  #mpox-hme .mpox-accordion__description {
    max-height: none;
    font-size: 0.8rem;
    line-height: 1.4;
  }

  #mpox-hme .mpox-accordion__chevron {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  #mpox-hme .mpox-accordion__content,
  #mpox-hme .mpox-accordion__item[open] .mpox-accordion__content {
    padding: 0.8rem;
  }

  /* ----------------------------------------------------------
     Grids and lists
  ---------------------------------------------------------- */

  #mpox-hme .grid,
  #mpox-hme .mpox-clade-grid,
  #mpox-hme .mpox-spread-grid,
  #mpox-hme .mpox-fact-grid,
  #mpox-hme .mpox-simple-list--two-col,
  #mpox-hme .mpox-simple-list--flu,
  #mpox-hme .sub-list {
    grid-template-columns: 1fr !important;
  }

  #mpox-hme .grid {
    gap: 0.75rem;
  }

  #mpox-hme .mpox-clade-card,
  #mpox-hme .mpox-fact-card,
  #mpox-hme .mpox-spread-grid li,
  #mpox-hme .mpox-simple-list li,
  #mpox-hme .sub-list li {
    min-width: 0;
    padding: 0.8rem;
    border-radius: 12px;
  }

  #mpox-hme .mpox-spread-grid li,
  #mpox-hme .mpox-fact-card {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 0.65rem;
  }

  #mpox-hme .mpox-spread-grid__icon,
  #mpox-hme .mpox-fact-card__icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  #mpox-hme .mpox-simple-list--flu li {
    grid-template-columns: 42px minmax(0, 1fr) !important;
    grid-template-rows: auto;
    align-items: center;
    justify-items: stretch;
    text-align: left;
  }

  /* ----------------------------------------------------------
     Icon lists
  ---------------------------------------------------------- */

  #mpox-hme .icon-list {
    gap: 0.65rem;
  }

  #mpox-hme .icon-list>li {
    display: grid !important;
    grid-template-columns: 40px minmax(0, 1fr) !important;
    gap: 0.7rem;

    padding: 0.8rem !important;
    border-radius: 13px;
  }

  #mpox-hme .icon-list__icon {
    width: 40px;
    height: 40px;
    margin: 0;
    border-radius: 11px;
  }

  #mpox-hme .icon-list__content>strong {
    font-size: 0.98rem;
  }

  #mpox-hme .icon-list__content p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  /* ----------------------------------------------------------
     Generic cards
  ---------------------------------------------------------- */

  #mpox-hme .card {
    min-width: 0;
    padding: 0.85rem;
    border-radius: 14px;
  }

  #mpox-hme .card h2 {
    margin-top: 42px;
    font-size: 1.15rem;
  }

  #mpox-hme .card-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  #mpox-hme .card::after {
    width: 104px;
    height: 32px;
    font-size: 0.7rem;
  }

  /* ----------------------------------------------------------
     Search
  ---------------------------------------------------------- */

  #mpox-hme .toolbar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    margin: 0.85rem 0;
  }

  #mpox-hme .mpox-search,
  #mpox-hme .search-wrap,
  #mpox-hme #searchHelp {
    width: 100%;
    max-width: 100%;
  }

  #mpox-hme .mpox-search__field {
    height: 44px;
  }

  #mpox-hme .mpox-search__input {
    left: 8px;
    width: calc(100% - 58px);
    height: 44px;
    padding: 0 0.55rem;
    font-size: 0.92rem;
  }

  #mpox-hme .mpox-search__label--actions {
    width: 48px;
    height: 44px;
    padding-left: 0;
  }

  #mpox-hme .search-results,
  #mpox-hme #searchResults {
    max-width: calc(100vw - 2rem);
  }

  /* ----------------------------------------------------------
     Buttons and controls
  ---------------------------------------------------------- */

  #mpox-hme .btn:not(.mpox-quick-links .btn) {
    min-height: 44px;
    padding: 0.7rem 0.85rem;
    font-size: 0.86rem;
    white-space: normal;
  }

  #mpox-hme nav#dph-secondnav.actions {
    width: 100%;
    padding: 0.6rem;
    border-radius: 14px;
  }

  #mpox-hme nav#dph-secondnav.actions .btn {
    flex: 1 1 100%;
    width: 100%;
  }

  /* ----------------------------------------------------------
     Tables and embedded content
  ---------------------------------------------------------- */

  #mpox-hme .table-responsive,
  #mpox-hme [class*="table-wrap"],
  #mpox-hme [class*="table-container"] {
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  #mpox-hme table {
    min-width: 560px;
  }
}


/* ==========================================================
   MPOX ACCESSIBILITY — REDUCED MOTION
   Purpose:
   - Removes decorative animation when users request less motion.
========================================================== */

@media (prefers-reduced-motion: reduce) {

  #mpox-hme.mpox-landing-page *,
  #mpox-hme.mpox-landing-page *::before,
  #mpox-hme.mpox-landing-page *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  #mpox-hme.mpox-landing-page .mpox-quick-links>.btn:hover {
    transform: none;
  }
}

/* ==========================================================
   MPOX ACCESSIBILITY — WINDOWS HIGH CONTRAST
   Purpose:
   - Preserves visible borders in forced-colors mode.
========================================================== */

@media (forced-colors: active) {

  #mpox-hme.mpox-landing-page .mpox-quick-links,
  #mpox-hme.mpox-landing-page .mpox-quick-links>.btn,
  #mpox-hme.mpox-landing-page .mpox-quick-links>.btn i {
    border: 1px solid CanvasText;
  }
}