/* ── Hero ─────────────────────────────────────────── */

.symp-hero {
  background: #EFF6FF;
  border-bottom: 3px solid #DC2626;
  padding: calc(var(--header-height, 64px) + 2rem + 10px) 1.5rem calc(3.5rem - 20px + 10px);
}
.symp-hero[data-cat="cardio"]   { border-bottom-color: #DC2626; }
.symp-hero[data-cat="respi"]    { border-bottom-color: #2563EB; }
.symp-hero[data-cat="neuro"]    { border-bottom-color: #7C3AED; }
.symp-hero[data-cat="digestif"] { border-bottom-color: #16A34A; }
.symp-hero[data-cat="muscu"]    { border-bottom-color: #EA580C; }

.symp-hero__inner {
  max-width: 1240px;
  margin: 0 auto;
  border-left: 3px solid #DC2626;
  padding-left: 2rem;
}
.symp-hero[data-cat="cardio"]   .symp-hero__inner { border-left-color: #DC2626; }
.symp-hero[data-cat="respi"]    .symp-hero__inner { border-left-color: #2563EB; }
.symp-hero[data-cat="neuro"]    .symp-hero__inner { border-left-color: #7C3AED; }
.symp-hero[data-cat="digestif"] .symp-hero__inner { border-left-color: #16A34A; }
.symp-hero[data-cat="muscu"]    .symp-hero__inner { border-left-color: #EA580C; }

/* ── Breadcrumb hero ──────────────────────────────── */

.symp-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.62rem;
  color: #6B7280;
  margin-bottom: 1.25rem;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  box-shadow: 0 1px 6px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.8);
}

.symp-hero__breadcrumb a { color: #6B7280; text-decoration: none; transition: color .18s; }

.symp-hero[data-cat="cardio"]   .symp-hero__breadcrumb a:hover,
.symp-hero[data-cat="cardio"]   .symp-hero__breadcrumb .bc-current { color: #DC2626; }
.symp-hero[data-cat="respi"]    .symp-hero__breadcrumb a:hover,
.symp-hero[data-cat="respi"]    .symp-hero__breadcrumb .bc-current { color: #2563EB; }
.symp-hero[data-cat="neuro"]    .symp-hero__breadcrumb a:hover,
.symp-hero[data-cat="neuro"]    .symp-hero__breadcrumb .bc-current { color: #7C3AED; }
.symp-hero[data-cat="digestif"] .symp-hero__breadcrumb a:hover,
.symp-hero[data-cat="digestif"] .symp-hero__breadcrumb .bc-current { color: #16A34A; }
.symp-hero[data-cat="muscu"]    .symp-hero__breadcrumb a:hover,
.symp-hero[data-cat="muscu"]    .symp-hero__breadcrumb .bc-current { color: #EA580C; }

.symp-hero__breadcrumb .bc-sep { color: #D1D5DB; }

.symp-hero__breadcrumb .bc-current { font-weight: 600; }

.symp-hero__title {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: #111827;
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.symp-hero__desc {
  font-size: 0.95rem;
  color: #4B5563;
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 1.5rem;
}

/* ── Share buttons ────────────────────────────────── */

.symp-hero__share { display: flex; align-items: center; gap: calc(0.65rem + 3px); }

.symp-hero__share-label { font-size: 0.72rem; color: #9CA3AF; font-weight: 500; margin-right: 0.15rem; }

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.75);
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  box-shadow: 0 1px 4px rgba(0,0,0,0.07), inset 0 1px 0 rgba(255,255,255,0.8);
  color: #6B7280;
}

.share-btn:hover { opacity: 0.75; transform: translateY(-1px); }

.share-btn--copied { color: #059669; }

@media (max-width: 600px) {
  .symp-hero__share-label { display: none; }
  .share-btn { width: 34px; height: 34px; }
}

/* ── Layout ───────────────────────────────────────── */

.symp-layout {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3.5rem 2.5rem 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, 700px) 300px;
  gap: 5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .symp-layout { grid-template-columns: 1fr; }
  .symp-sidebar { display: none; }
}

/* ── Article ──────────────────────────────────────── */

.symp-article h2 {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 2.5rem 0 0.85rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.symp-article h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.symp-article h2.h2--tight    { margin-top: 1rem; }
.symp-article h2.h2--section  { margin-top: 0; padding-top: 2.5rem; }
.symp-article h2.h2--compact  { margin-top: 0; padding-top: 1rem; }



.symp-subh { font-family: var(--font-sans); font-size: 1rem; font-weight: 700; color: var(--text-primary); margin: 1.75rem 0 1rem; }

/* ── Profile list ─────────────────────────────────── */

.profile-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 1.75rem; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }

.profile-row { display: flex; align-items: center; gap: 0.85rem; padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); }

.profile-row:last-child { border-bottom: none; }

.profile-row__icon { width: 30px; height: 30px; border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.profile-row__title { font-size: 0.875rem; font-weight: 700; color: var(--text-primary); flex: 1; display: flex; flex-direction: column; gap: 0; }

.profile-row__duration { font-size: 0.72rem; font-weight: 400; color: #9CA3AF; margin-top: -2px; }

.profile-row__desc { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; flex: 2; }

/* ── Mechanism ────────────────────────────────────── */

.mechanism-steps { display: flex; flex-direction: column; gap: 0; margin: 1.5rem 0; position: relative; }

.mechanism-steps::before { content: ''; position: absolute; left: 17px; top: 18px; bottom: 18px; width: 2px; background: #DBEAFE; }

.mechanism-step { display: flex; align-items: flex-start; gap: 1rem; padding: 0.75rem 0; position: relative; }

.mechanism-step__num { width: 36px; height: 36px; background: var(--brand, #1B6EC2); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700; flex-shrink: 0; position: relative; z-index: 1; }

.mechanism-step__title { font-size: 0.93rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.25rem; }

.mechanism-step__desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.55; }

/* ── Info boxes ───────────────────────────────────── */

.info-box { border-radius: 14px; padding: 1.25rem 1.35rem; margin: 1.5rem 0; }

.info-box--green  { background: #F0FDF4; border: 1.5px solid #BBF7D0; }

.info-box--blue   { background: #EFF6FF; border: 1.5px solid #BFDBFE; }

.info-box--orange { background: #FFFBEB; border: 1.5px solid #FDE68A; }

.info-box--red    { background: #FFF1F2; border: 1.5px solid #FECDD3; }

.info-box__title { font-size: 0.875rem; font-weight: 700; margin-bottom: 0.65rem; display: flex; align-items: center; gap: 0.6rem; }

.info-box--green  .info-box__title { color: #15803D; }

.info-box--blue   .info-box__title { color: #1D4ED8; }

.info-box--orange .info-box__title { color: #92400E; }

.info-box--red    .info-box__title { color: #B91C1C; }

.info-box__icon { width: 24px; height: 24px; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.info-box--green  .info-box__icon { background: #DCFCE7; }

.info-box--blue   .info-box__icon { background: #DBEAFE; }

.info-box--orange .info-box__icon { background: #FEF3C7; }

.info-box--red    .info-box__icon { background: #FFE4E6; }

.info-box p, .info-box li { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; }

.info-box ul { padding-left: 1.1rem; margin: 0; }

.info-box li { margin-bottom: 0.35rem; }

.info-box--sm { padding: 0.85rem 1rem; border-radius: 10px; }

.info-box--sm .info-box__title { font-size: 0.78rem; gap: 0.45rem; }

.info-box--sm .info-box__icon { width: 20px; height: 20px; }

.info-box--sm p, .info-box--sm li { font-size: 0.8rem; line-height: 1.6; }

.info-box--sm li { margin-bottom: 0.25rem; }

/* ── Crisis CTA ───────────────────────────────────── */

.crisis-cta { display: flex; align-items: center; gap: 1rem; background: #FDF2F8; border: 1.5px solid #F9A8D4; border-left: 3px solid #EC4899; border-radius: 10px; padding: 1rem 1.25rem; text-decoration: none; color: #111827; margin: 1.25rem 0; transition: background 0.15s, transform 0.15s; }

.crisis-cta:hover { background: #FCE7F3; transform: translateY(-1px); }

.crisis-cta__icon { width: 38px; height: 38px; background: #FBCFE8; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.crisis-cta__title { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.2rem; color: #DB2777; }

.crisis-cta__desc { font-size: 0.78rem; color: #6B7280; line-height: 1.45; }

.crisis-cta__arrow { margin-left: auto; flex-shrink: 0; color: #EC4899; opacity: 0.6; }

/* ── Technique list ───────────────────────────────── */

.technique-list { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.25rem 0; }

.technique-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 1.1rem; background: #fff; border: 1px solid var(--border); border-radius: 14px; transition: border-color 0.2s, box-shadow 0.2s; }

.technique-item:hover { border-color: #C5D4E8; box-shadow: 0 4px 12px rgba(27,110,194,0.07); }

.technique-item__icon { width: 40px; height: 40px; border-radius: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 0.1rem; }

.technique-item__title { font-size: 0.92rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.25rem; }

.technique-item__desc { font-size: 0.845rem; color: var(--text-secondary); line-height: 1.6; }


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

.symp-sidebar { display: flex; flex-direction: column; gap: 1rem; position: sticky; top: calc(var(--header-height, 64px) + 1.5rem); align-self: start; }

.admin-bar .symp-sidebar { top: calc(var(--header-height, 64px) + 1.5rem + 32px); }

@media (max-width: 782px) { .admin-bar .symp-sidebar { top: calc(var(--header-height, 64px) + 1.5rem + 46px); } }

/* ── Blocs pub ── */

/* ── Symptômes associés ───────────────────────────── */




















/* ── Brain zones ───────────────────────────────────── */

.brain-zones {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin: 1.25rem 0;
    }

.brain-zone-card {
      background: #F5F3FF;
      border: 1px solid #DDD6FE;
      border-radius: 10px;
      padding: 1rem 1.1rem;
    }

.bz-header {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      margin-bottom: 0.5rem;
    }

.bz-emoji {
      width: 36px;
      height: 36px;
      background: #EDE9FE;
      border-radius: 8px;
      flex-shrink: 0;
    }

.bz-name {
      display: block;
      font-weight: 700;
      font-size: 0.9rem;
      color: #111827;
    }

.bz-role {
      display: block;
      font-size: 0.75rem;
      color: #7C3AED;
      font-weight: 500;
    }

.bz-arrow {
      display: block;
      font-size: 0.75rem;
      color: #7C3AED;
      font-weight: 600;
      margin: 0.4rem 0;
    }

.bz-impact {
      font-size: 0.83rem;
      color: #6B7280;
      line-height: 1.55;
    }

/* Profile list */

/* Crisis sidebar card */

/* Related links */

/* Profile list */

/* Crisis sidebar card */

/* Related links */

/* ── Body map ──────────────────────────────────────── */

.body-map {
      background: #F5F3FF;
      border: 1px solid #DDD6FE;
      border-radius: 12px;
      padding: 1.25rem;
      margin: 1.25rem 0;
    }

.body-map h4 {
      font-size: 0.82rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      color: #7C3AED;
      margin: 0 0 1rem;
    }

.zones-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.6rem;
    }

.zone-item {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      background: #fff;
      border: 1px solid #EDE9FE;
      border-radius: 8px;
      padding: 0.6rem 0.75rem;
    }

.zone-icon {
      width: 28px;
      height: 28px;
      background: #EDE9FE;
      border-radius: 6px;
      flex-shrink: 0;
    }

.zone-item strong { display: block; font-size: 0.82rem; color: #111827; }

.zone-freq { display: block; font-size: 0.72rem; color: #7C3AED; font-weight: 500; }

/* ── Share buttons ────────────────────────────────── */

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

.sidebar-explore {
      border-radius: 12px;
      border: 1px solid #E5E7EB;
      overflow: hidden;
    }

.sidebar-explore__head {
      padding: 0.8rem 1rem;
      background: #F9FAFB;
      border-bottom: 1px solid #E5E7EB;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: #9CA3AF;
    }

.sidebar-explore__link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.65rem 1rem;
      border-bottom: 1px solid #F3F4F6;
      text-decoration: none;
      color: #374151;
      font-size: 0.84rem;
      font-weight: 500;
      background: #fff;
      border-left: 2px solid transparent;
      transition: all 0.15s;
    }

.sidebar-explore__link:last-child { border-bottom: none; }

.sidebar-explore__link:hover {
      border-left-color: #1B6EC2;
      background: #F5F8FF;
      color: #1B6EC2;
    }

.sidebar-explore__link svg {
      color: #E5E7EB;
      flex-shrink: 0;
      transition: color 0.15s, transform 0.15s;
    }

.sidebar-explore__link:hover svg {
      color: #1B6EC2;
      transform: translateX(2px);
    }

/* Profile list */

/* Sommaire */

.sidebar-toc {
      border-radius: 12px;
      border: 1px solid #E5E7EB;
      overflow: hidden;
    }

.sidebar-toc__head {
      padding: 0.8rem 1rem;
      background: #F9FAFB;
      border-bottom: 1px solid #E5E7EB;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: #9CA3AF;
    }

.sidebar-toc__link {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      padding: 0.6rem 1rem;
      text-decoration: none;
      color: #6B7280;
      font-size: 0.83rem;
      background: #fff;
      border-bottom: 1px solid #F3F4F6;
      border-left: 2px solid transparent;
      transition: border-color 0.15s, color 0.15s, background 0.15s;
    }

.sidebar-toc__link:last-child { border-bottom: none; }

.sidebar-toc__link:hover {
      border-left-color: #1B6EC2;
      color: #1B6EC2;
      background: #F5F8FF;
    }

.sidebar-toc__num {
      font-size: 0.68rem;
      font-weight: 700;
      color: #D1D5DB;
      width: 14px;
      flex-shrink: 0;
    }

/* Symptômes liés */

.sidebar-symptoms {
      border-radius: 12px;
      border: 1px solid #E5E7EB;
      overflow: hidden;
    }

.sidebar-symptoms__head {
      padding: 0.8rem 1rem;
      background: #F9FAFB;
      border-bottom: 1px solid #E5E7EB;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: #9CA3AF;
    }

.sidebar-symptoms__link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.65rem 1rem;
      border-bottom: 1px solid #F3F4F6;
      text-decoration: none;
      color: #374151;
      font-size: 0.84rem;
      font-weight: 500;
      background: #fff;
      border-left: 2px solid transparent;
      transition: all 0.15s;
    }

.sidebar-symptoms__link:last-child { border-bottom: none; }

.sidebar-symptoms__link:hover {
      border-left-color: #DC2626;
      background: #FFF5F5;
      color: #DC2626;
    }

.sidebar-symptoms__arrow {
      color: #E5E7EB;
      flex-shrink: 0;
      transition: color 0.15s, transform 0.15s;
    }

.sidebar-symptoms__link:hover .sidebar-symptoms__arrow {
      color: #DC2626;
      transform: translateX(2px);
    }

/* unused legacy */

/* ── CSS extrait des pages symptômes ────────────── */

/* ── Hero ─────────────────────────────────────────── */

.symp-hero__tag {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: #FEE2E2;
      color: #B91C1C;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.3rem 0.75rem;
      border-radius: 99px;
      margin-bottom: 1.5rem;
    }

.symp-hero__tag-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #DC2626;
      flex-shrink: 0;
    }

/* ── Article ──────────────────────────────────────── */

/* Profils */

.symp-profiles {
      margin-bottom: 2.5rem;
      padding-bottom: 2.5rem;
      border-bottom: 1px solid var(--border);
    }

.symp-profiles__intro {
      font-size: 0.875rem;
      color: var(--text-secondary);
      margin-bottom: 1rem;
    }

.symp-profile-item {
      border-top: 1px solid var(--border);
    }

.symp-profile-item:last-child {
      border-bottom: 1px solid var(--border);
    }

.symp-profile-item summary {
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 0;
      cursor: pointer;
      gap: 1rem;
    }

.symp-profile-item summary::-webkit-details-marker { display: none; }

.symp-profile-item__header {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

.symp-profile-item__tag {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--brand, #1B6EC2);
      background: #EFF6FF;
      padding: 0.2rem 0.6rem;
      border-radius: 99px;
      white-space: nowrap;
    }

.symp-profile-item__title {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-primary);
    }

.symp-profile-item__chevron {
      flex-shrink: 0;
      color: #9CA3AF;
      transition: transform 0.2s;
    }

.symp-profile-item[open] .symp-profile-item__chevron {
      transform: rotate(180deg);
    }

.symp-profile-item__body {
      font-size: 0.875rem;
      color: var(--text-secondary);
      line-height: 1.7;
      padding: 0 0 1.1rem;
    }

/* Subheading */

/* Mechanism */

/* Ligne continue de centre-en-centre */

/* Info boxes */

/* Technique list */

/* Exercise CTA */

.exercise-cta {
      background: linear-gradient(135deg, #0D2B6B, #1B6EC2);
      border-radius: 16px;
      padding: 1.5rem 1.75rem;
      margin: 1.75rem 0;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 1.25rem;
    }

.exercise-cta__icon {
      width: 52px;
      height: 52px;
      background: rgba(255,255,255,0.12);
      border: 1.5px solid rgba(255,255,255,0.2);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

.exercise-cta__title {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 0.3rem;
    }

.exercise-cta__desc {
      font-size: 0.845rem;
      color: rgba(255,255,255,0.72);
      line-height: 1.5;
      margin-bottom: 0.85rem;
    }

.exercise-cta__btn {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.5rem 1.1rem;
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 8px;
      color: #fff;
      font-size: 0.855rem;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.2s;
    }

.exercise-cta__btn:hover { background: rgba(255,255,255,0.25); }

@media (max-width: 540px) {
      .exercise-cta { flex-direction: column; }
    }


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

/* Bottom nav */

.symp-nav {
      background: var(--sand-100, #F9FAFB);
      border-top: 1px solid var(--border);
      padding: 1.25rem 1.5rem;
    }

.symp-nav__inner {
      max-width: 780px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
    }

.symp-nav__link {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      text-decoration: none;
      color: var(--text-secondary);
      font-size: 0.855rem;
      font-weight: 500;
      padding: 0.55rem 0.9rem;
      border: 1px solid var(--border);
      border-radius: 10px;
      transition: border-color 0.18s, color 0.18s;
    }

.symp-nav__link:hover {
      border-color: var(--brand, #1B6EC2);
      color: var(--brand, #1B6EC2);
    }

.symp-nav__center {
      font-size: 0.8rem;
      color: #9CA3AF;
      text-decoration: none;
    }

.symp-nav__center:hover { color: var(--brand, #1B6EC2); }

/* Fallback composants legacy */

.technique-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 1rem 1.15rem; margin-bottom: 0.75rem; }

.technique-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.3rem; }

.technique-card p { font-size: 0.855rem; color: var(--text-secondary); line-height: 1.6; margin: 0; }

/* Hero — override */

/* Breadcrumb */

/* Hero text */

/* Share buttons */

/* Layout — grid override */

/* Ad blocks */

      display: flex;
      align-items: center;
      justify-content: center;
      background: #F9FAFB;
      border: 1.5px dashed #E5E7EB;
      border-radius: 8px;
      color: #9CA3AF;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      position: relative;
    }


      height: 150px;
      margin: 2.5rem 0;
    }


      height: 150px;
      margin: 2rem 0;
      display: none;
    }

/* Article p — reset margin */

/* Related symptoms */


/* ── Info box small ───────────────────────────────── */

/* ── Crisis CTA ────────────────────────────────────── */

/* ── Breadcrumb hero ──────────────────────────────── */

/* ── Layout ───────────────────────────────────────── */

/* Crisis CTA */

/* ── Blocs pub ────────────────────────────────────── */

/* ── Symptômes liés ───────────────────────────────── */
