/* =========================================================
   ARTICLE CSS - IRM Desaintonge
   Santé / Médical / Imagerie médicale
   Couleurs: #1e3a5f | #eef4fb | #0ea5e9
   ========================================================= */

/* ----- RESET & BASE ----- */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

img, video, iframe, svg, canvas {
  max-width: 100%;
  height: auto;
}

/* ----- VARIABLES ----- */
:root {
  --color-primary: #1e3a5f;
  --color-secondary: #0ea5e9;
  --color-bg-light: #eef4fb;
  --color-bg-white: #ffffff;
  --color-text-main: #1a2535;
  --color-text-muted: #64748b;
  --color-border: #d1e3f0;
  --color-success: #16a34a;
  --color-warning: #d97706;
  --color-danger: #dc2626;
  --font-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow-sm: 0 1px 4px rgba(30, 58, 95, 0.08);
  --shadow-md: 0 4px 16px rgba(30, 58, 95, 0.12);
  --shadow-lg: 0 8px 32px rgba(30, 58, 95, 0.16);
  --max-article: 820px;
  --max-wide: 960px;
}

/* ----- ARTICLE CONTAINER ----- */
.article-container {
  max-width: var(--max-article);
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- HERO ARTICLE ----- */
.article-hero {
  background-color: var(--color-primary);
  color: #fff;
  padding: 60px 24px 0;
}

.article-hero__inner {
  max-width: var(--max-article);
  margin: 0 auto;
}

.article-meta-top {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.article-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #0ea5e9;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

.article-date,
.article-readtime {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.article-hero__title {
  font-family: var(--font-system);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.article-hero__lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 28px;
  max-width: 700px;
}

.article-hero__disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 40px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.article-hero__disclaimer svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.article-hero__image {
  margin: 0 -24px;
  max-width: calc(var(--max-article) + 48px);
  margin-left: auto;
  margin-right: auto;
}

.article-hero__image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius) var(--radius) 0 0;
}

/* ----- TABLE OF CONTENTS ----- */
.article-toc {
  background-color: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border);
  padding: 32px 0;
}

.toc-wrapper {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
}

.toc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--color-bg-light);
}

.toc-nav {
  display: block;
}

.toc-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: toc-counter;
}

.toc-list li {
  counter-increment: toc-counter;
  margin-bottom: 6px;
}

.toc-list li::before {
  content: "0" counter(toc-counter);
  display: inline-block;
  width: 28px;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-secondary);
  vertical-align: middle;
}

.toc-list a {
  color: var(--color-text-main);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  transition: color 0.2s;
  border-bottom: 1px solid transparent;
}

.toc-list a:hover {
  color: var(--color-secondary);
  border-bottom-color: var(--color-secondary);
}

/* ----- ARTICLE BODY ----- */
.article-body {
  padding: 56px 0 48px;
  font-family: var(--font-system);
  color: var(--color-text-main);
}

/* ----- CONTENT SECTIONS ----- */
.content-section {
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--color-border);
}

.content-section:last-child {
  border-bottom: none;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-number {
  font-size: 11px;
  font-weight: 800;
  color: var(--color-secondary);
  letter-spacing: 0.1em;
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border);
  padding: 3px 8px;
  border-radius: 4px;
}

.section-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.content-section h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-primary);
  margin: 0 0 20px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.content-section h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 32px 0 14px;
  line-height: 1.35;
}

.content-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-main);
  margin: 0 0 18px;
}

.content-section strong {
  font-weight: 700;
  color: var(--color-primary);
}

/* ----- PULL QUOTE ----- */
.article-pullquote {
  background-color: var(--color-bg-light);
  border-left: 4px solid var(--color-secondary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 32px 24px;
  margin: 0 0 56px;
  position: relative;
}

.pullquote-icon {
  display: block;
  margin-bottom: 10px;
}

.article-pullquote p {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.65;
  color: var(--color-primary);
  margin: 0 0 12px;
  font-style: italic;
}

.article-pullquote cite {
  font-size: 13px;
  color: var(--color-text-muted);
  font-style: normal;
}

/* ----- INFO CARDS ----- */
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  border-radius: var(--radius);
  margin: 24px 0;
  border: 1px solid transparent;
}

.info-card__icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.info-card__content strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.info-card__content p {
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.info-card--blue {
  background-color: #eff9ff;
  border-color: #b8e3f8;
}

.info-card--blue .info-card__content strong {
  color: #0369a1;
}

.info-card--blue .info-card__content p {
  color: #0c4a6e;
}

.info-card--yellow {
  background-color: #fffbeb;
  border-color: #fde68a;
}

.info-card--yellow .info-card__content strong {
  color: #92400e;
}

.info-card--yellow .info-card__content p {
  color: #78350f;
}

/* ----- TABLES ----- */
.table-responsive-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 24px 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.comparison-table,
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 500px;
}

.comparison-table caption,
.data-table caption {
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: left;
  padding: 0 0 8px;
  font-weight: 600;
}

.comparison-table thead th,
.data-table thead th {
  background-color: var(--color-primary);
  color: #fff;
  font-weight: 700;
  text-align: left;
  padding: 12px 16px;
  font-size: 13px;
  letter-spacing: 0.03em;
}

.comparison-table thead th:first-child,
.data-table thead th:first-child {
  border-radius: var(--radius-sm) 0 0 0;
}

.comparison-table thead th:last-child,
.data-table thead th:last-child {
  border-radius: 0 var(--radius-sm) 0 0;
}

.comparison-table tbody tr,
.data-table tbody tr {
  border-bottom: 1px solid var(--color-border);
  transition: background-color 0.15s;
}

.comparison-table tbody tr:hover,
.data-table tbody tr:hover {
  background-color: var(--color-bg-light);
}

.comparison-table tbody tr:last-child,
.data-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table td,
.data-table td {
  padding: 11px 16px;
  color: var(--color-text-main);
  vertical-align: middle;
  line-height: 1.5;
}

.comparison-table tbody tr:nth-child(even),
.data-table tbody tr:nth-child(even) {
  background-color: #f8fbfe;
}

/* Duration badges */
.duration-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
}

.duration-badge--short {
  background-color: #dcfce7;
  color: #166534;
}

.duration-badge--medium {
  background-color: #fef3c7;
  color: #92400e;
}

.duration-badge--long {
  background-color: #fee2e2;
  color: #991b1b;
}

.table-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 8px 0 0;
}

/* ----- CHECKLIST ----- */
.checklist-container {
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 20px 0;
}

.checklist-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(209, 227, 240, 0.5);
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-main);
}

.checklist-item:last-child {
  border-bottom: none;
}

.checklist-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.checklist-item--warning {
  color: #7f1d1d;
}

/* ----- TWO COL INFO ----- */
.two-col-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
}

.info-col {
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid transparent;
}

.info-col--green {
  background-color: #f0fdf4;
  border-color: #bbf7d0;
}

.info-col--red {
  background-color: #fef2f2;
  border-color: #fecaca;
}

.info-col__header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.info-col--green .info-col__header {
  color: var(--color-success);
}

.info-col--red .info-col__header {
  color: var(--color-danger);
}

.info-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-col ul li {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--color-text-main);
  padding: 5px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.info-col ul li:last-child {
  border-bottom: none;
}

.info-col--green ul li::before {
  content: "✓ ";
  color: var(--color-success);
  font-weight: 700;
}

.info-col--red ul li::before {
  content: "✗ ";
  color: var(--color-danger);
  font-weight: 700;
}

/* ----- TIMELINE ----- */
.timeline-container {
  position: relative;
  padding: 8px 0;
  margin: 32px 0;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--color-border);
}

.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
}

.timeline-item:hover .timeline-marker {
  transform: scale(1.1);
}

.timeline-marker--1 { background-color: #dbeafe; }
.timeline-marker--2 { background-color: #e0f2fe; }
.timeline-marker--3 { background-color: #cffafe; }
.timeline-marker--4 { background-color: #d1fae5; }
.timeline-marker--5 { background-color: var(--color-secondary); }
.timeline-marker--6 { background-color: #ede9fe; }
.timeline-marker--7 { background-color: #dcfce7; }

.timeline-step {
  font-size: 15px;
  font-weight: 800;
  color: var(--color-primary);
}

.timeline-marker--5 .timeline-step {
  color: #fff;
}

.timeline-content {
  flex: 1;
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, border-color 0.2s;
  min-width: 0;
}

.timeline-item:hover .timeline-content {
  box-shadow: var(--shadow-md);
  border-color: var(--color-secondary);
}

.timeline-time {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.timeline-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 8px;
}

.timeline-body p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--color-text-main);
  margin: 0 0 10px;
}

.timeline-tooltip {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  background-color: var(--color-bg-light);
  border-left: 3px solid var(--color-secondary);
  padding: 8px 12px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 12.5px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.timeline-tooltip svg {
  flex-shrink: 0;
  margin-top: 1px;
}

/* ----- SOUNDS GRID ----- */
.sounds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.sound-card {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.sound-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.sound-card__icon {
  margin-bottom: 12px;
}

.sound-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 8px;
}

.sound-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0 0 14px;
}

.sound-intensity {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.sound-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-muted);
}

.sound-bar {
  flex: 1;
  height: 6px;
  background-color: var(--color-bg-light);
  border-radius: 3px;
  overflow: hidden;
  min-width: 40px;
}

.sound-bar__fill {
  display: block;
  height: 100%;
  border-radius: 3px;
  background-color: var(--color-secondary);
}

.sound-bar__fill--1 { width: 33%; background-color: #86efac; }
.sound-bar__fill--2 { width: 66%; background-color: #fbbf24; }
.sound-bar__fill--3 { width: 100%; background-color: #f87171; }

.sound-level {
  font-size: 11px;
  color: var(--color-text-muted);
  white-space: nowrap;
}

/* ----- ARTICLE IMAGE BLOCK ----- */
.article-image-block {
  margin: 0 0 56px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.article-image-block img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.article-image-block figcaption {
  background-color: var(--color-bg-light);
  color: var(--color-text-muted);
  font-size: 12.5px;
  padding: 10px 16px;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

/* ----- PROCESS STEPS ----- */
.process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.process-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 18px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.process-step:hover {
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-sm);
}

.process-step__number {
  flex-shrink: 0;
}

.process-step__content h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 6px;
}

.process-step__content p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
}

/* ----- STATS SECTION ----- */
.stats-section {
  background-color: var(--color-primary);
  padding: 56px 24px;
  margin: 0 0 56px;
}

.stats-header {
  text-align: center;
  margin-bottom: 40px;
  max-width: var(--max-article);
  margin-left: auto;
  margin-right: auto;
}

.stats-header h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
}

.stats-header p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--max-wide);
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 24px 16px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  transition: background-color 0.2s;
}

.stat-item:hover {
  background-color: rgba(255, 255, 255, 0.13);
}

.stat-number {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: 8px;
  line-height: 1.2;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

/* ----- FAQ ----- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.faq-item {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item:hover {
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.faq-question svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.faq-question h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.4;
}

.faq-answer p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-text-main);
  margin: 0;
  padding-left: 32px;
}

/* ----- CONCLUSION ----- */
.article-conclusion {
  margin-bottom: 0;
}

.article-conclusion h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin: 0 0 18px;
}

.article-conclusion p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-main);
  margin: 0 0 16px;
}

.conclusion-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: #f8fafc;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 24px;
}

.conclusion-disclaimer svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.conclusion-disclaimer p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
}

.conclusion-disclaimer strong {
  color: var(--color-primary);
}

/* ----- CTA SECTION ----- */
.article-cta-section {
  background-color: var(--color-bg-light);
  padding: 56px 24px;
  border-top: 1px solid var(--color-border);
}

.cta-block {
  background-color: var(--color-primary);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.cta-block__icon {
  margin-bottom: 20px;
}

.cta-block h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.3;
}

.cta-block p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 28px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-secondary);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.cta-button:hover {
  background-color: #0284c7;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.4);
}

.cta-button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */

/* ----- TABLET (max 900px) ----- */
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sounds-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
}

/* ----- MOBILE (max 768px) ----- */
@media (max-width: 768px) {

  /* Hero */
  .article-hero {
    padding: 40px 16px 0;
  }

  .article-hero__title {
    font-size: 1.65rem;
  }

  .article-hero__lead {
    font-size: 1rem;
  }

  .article-hero__image img {
    height: 220px;
  }

  /* Meta top */
  .article-meta-top {
    gap: 10px;
  }

  .article-date,
  .article-readtime {
    font-size: 12px;
  }

  /* Container */
  .article-container {
    padding: 0 16px;
  }

  /* TOC */
  .toc-wrapper {
    padding: 16px 18px;
  }

  /* Sections */
  .content-section {
    margin-bottom: 44px;
    padding-bottom: 44px;
  }

  .content-section h2 {
    font-size: 1.4rem;
  }

  .content-section h3 {
    font-size: 1.1rem;
  }

  /* Two col */
  .two-col-info {
    grid-template-columns: 1fr;
  }

  /* Timeline */
  .timeline-container::before {
    left: 18px;
  }

  .timeline-marker {
    width: 38px;
    height: 38px;
  }

  .timeline-step {
    font-size: 13px;
  }

  .timeline-content {
    padding: 14px 16px;
  }

  /* Sounds */
  .sounds-grid {
    grid-template-columns: 1fr;
  }

  /* Process steps */
  .process-steps {
    grid-template-columns: 1fr;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stats-section {
    padding: 40px 16px;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  /* Image */
  .article-image-block img {
    height: 240px;
  }

  /* CTA */
  .cta-block {
    padding: 32px 20px;
  }

  .cta-block h2 {
    font-size: 1.25rem;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }

  /* Tables responsive */
  .comparison-table,
  .data-table {
    display: block;
    min-width: unset;
  }

  .comparison-table thead,
  .data-table thead {
    display: none;
  }

  .comparison-table tbody,
  .data-table tbody {
    display: block;
  }

  .comparison-table tr,
  .data-table tr {
    display: block;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    padding: 10px;
    background-color: var(--color-bg-white);
  }

  .comparison-table td,
  .data-table td {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 8px;
    border-bottom: 1px solid #f0f4f8;
    font-size: 13px;
  }

  .comparison-table td:last-child,
  .data-table td:last-child {
    border-bottom: none;
  }

  .comparison-table td::before,
  .data-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--color-primary);
    min-width: 110px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
    padding-top: 2px;
  }

  /* Pullquote */
  .article-pullquote {
    padding: 20px 20px 18px;
    margin-bottom: 40px;
  }

  .article-pullquote p {
    font-size: 1.05rem;
  }

  /* FAQ */
  .faq-answer p {
    padding-left: 0;
  }

  /* Article body */
  .article-body {
    padding: 40px 0 36px;
  }
}

/* ----- SMALL MOBILE (max 480px) ----- */
@media (max-width: 480px) {

  .article-hero__title {
    font-size: 1.45rem;
  }

  .article-hero__image img {
    height: 180px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding: 18px 14px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .timeline-item {
    gap: 14px;
  }

  .timeline-marker {
    width: 34px;
    height: 34px;
  }

  .timeline-step {
    font-size: 12px;
  }

  .info-card {
    flex-direction: column;
    gap: 10px;
  }

  .cta-block {
    padding: 24px 16px;
  }

  .sounds-grid {
    grid-template-columns: 1fr;
  }

  .toc-list li::before {
    width: 22px;
    font-size: 10px;
  }

  .content-section h2 {
    font-size: 1.3rem;
  }
}

/* ----- FOCUS VISIBLE ACCESSIBILITÉ ----- */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ----- PRINT ----- */
@media print {
  .article-cta-section,
  .stats-section,
  .article-toc {
    display: none;
  }

  .article-hero {
    background-color: #fff;
    color: #000;
    padding: 20px 0;
  }

  .article-hero__title,
  .article-hero__lead {
    color: #000;
  }
}