:root {
  --ink: #1a1612;
  --ink-soft: #4a4540;
  --ink-muted: #8a8480;
  --cream: #faf8f5;
  --cream-dark: #f2efe9;
  --border: #e5e0d8;
  --accent: #c8522a;
  --accent-soft: #f5ede8;
  --accent-2: #2a6cc8;
  --accent-2-soft: #e8f0f5;
  --gold: #b8860b;
  --gold-soft: #fdf5e0;
  --green: #2a8a4a;
  --green-soft: #e8f5ee;
  --red: #b83030;
  --red-soft: #faeaea;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ── Layout ── */
.site-wrapper {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
.article-header {
  padding: 64px 0 48px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 48px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.meta-tag {
  background: var(--ink);
  color: var(--cream);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.meta-info {
  font-size: 13px;
  color: var(--ink-muted);
}

.article-header h1 {
  font-family: 'Bitter', Georgia, serif;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 20px;
  color: var(--ink);
}

.article-header h1 em {
  font-style: italic;
  color: var(--accent);
}

.article-intro {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.7;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin-bottom: 28px;
}

.header-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding: 20px 0 0;
  border-top: 1px solid var(--border);
}

.header-stat {
  text-align: center;
}

.header-stat .num {
  display: block;
  font-family: 'Bitter', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.header-stat .label {
  font-size: 11px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 3px;
}

/* ── Table of contents ── */
.toc {
  background: var(--cream-dark);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 28px 32px;
  margin-bottom: 56px;
}

.toc-title {
  font-family: 'Bitter', serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toc ol {
  padding-left: 20px;
  counter-reset: toc-counter;
  list-style: none;
}

.toc ol li {
  counter-increment: toc-counter;
  position: relative;
  padding: 5px 0 5px 28px;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
}

.toc ol li:last-child { border-bottom: none; }

.toc ol li::before {
  content: counter(toc-counter);
  position: absolute;
  left: 0;
  top: 7px;
  width: 20px;
  height: 20px;
  background: var(--accent);
  color: white;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toc a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .15s;
}

.toc a:hover { color: var(--accent); }

.toc-sub {
  font-size: 12px;
  color: var(--ink-muted);
  display: block;
  margin-top: 2px;
}

/* ── Prose ── */
h2 {
  font-family: 'Bitter', serif;
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  margin: 60px 0 20px;
  color: var(--ink);
  letter-spacing: -.01em;
  padding-top: 16px;
  border-top: 2px solid var(--ink);
}

h3 {
  font-family: 'Bitter', serif;
  font-size: 20px;
  font-weight: 600;
  margin: 36px 0 14px;
  color: var(--ink);
}

p { margin-bottom: 20px; }

p:last-child { margin-bottom: 0; }

strong { font-weight: 600; color: var(--ink); }

em { font-style: italic; }

a { color: var(--accent-2); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }

/* ── Section anchor ── */
.section-anchor { display: block; position: relative; top: -80px; visibility: hidden; }

/* ── Highlight box ── */
.highlight {
  border-radius: 8px;
  padding: 24px 28px;
  margin: 32px 0;
  position: relative;
}

.highlight-gold {
  background: var(--gold-soft);
  border-left: 4px solid var(--gold);
}

.highlight-red {
  background: var(--red-soft);
  border-left: 4px solid var(--red);
}

.highlight-green {
  background: var(--green-soft);
  border-left: 4px solid var(--green);
}

.highlight-blue {
  background: var(--accent-2-soft);
  border-left: 4px solid var(--accent-2);
}

.highlight-neutral {
  background: var(--cream-dark);
  border-left: 4px solid var(--border);
}

.highlight-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
  opacity: .7;
}

/* ── Tool card ── */
.tool-card {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin: 28px 0;
}

.tool-card-header {
  padding: 20px 24px 16px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-bottom: 1px solid var(--border);
}

.tool-logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 800;
  color: white;
  font-family: 'Bitter', serif;
}

.tool-info h4 {
  font-family: 'Bitter', serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 3px;
}

.tool-tagline {
  font-size: 13px;
  color: var(--ink-muted);
}

.tool-badge {
  margin-left: auto;
  flex-shrink: 0;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.badge-gold { background: var(--gold-soft); color: var(--gold); border: 1px solid #d4a017; }
.badge-green { background: var(--green-soft); color: var(--green); border: 1px solid #4caf50; }
.badge-blue { background: var(--accent-2-soft); color: var(--accent-2); border: 1px solid #90caf9; }
.badge-warn { background: #fff3e0; color: #7a4000; border: 1px solid #ffcc80; }
.badge-red { background: var(--red-soft); color: var(--red); border: 1px solid #ef9a9a; }

.tool-card-body {
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: white;
}

.tool-card-body.single { grid-template-columns: 1fr; }

.score-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.score-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.score-label {
  font-size: 12px;
  color: var(--ink-muted);
  width: 80px;
  flex-shrink: 0;
}

.score-track {
  flex: 1;
  height: 6px;
  background: var(--cream-dark);
  border-radius: 3px;
  overflow: hidden;
}

.score-fill-bar {
  height: 100%;
  border-radius: 3px;
  transition: width .3s ease;
}

.score-val {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  width: 24px;
  text-align: right;
}

.tool-pros-cons { font-size: 14px; }
.tool-pros-cons h5 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
  color: var(--ink-muted);
}

.pros-list, .cons-list { list-style: none; padding: 0; }
.pros-list li, .cons-list li {
  padding: 4px 0;
  display: flex;
  gap: 7px;
  align-items: flex-start;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
  line-height: 1.5;
}
.pros-list li:last-child, .cons-list li:last-child { border-bottom: none; }

.tool-footer {
  padding: 14px 24px;
  background: var(--cream-dark);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.prix-info { font-size: 13px; }
.prix-free-tag {
  display: inline-block;
  background: var(--green-soft);
  color: var(--green);
  border: 1px solid #81c784;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
  margin-right: 6px;
}

.rating { display: flex; align-items: center; gap: 6px; font-size: 13px; }
.stars { color: #f59e0b; font-size: 13px; }
.rating-num { font-weight: 700; }
.rating-src { color: var(--ink-muted); font-size: 11px; }

/* ── Comparison table ── */
.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin: 28px 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid var(--border);
}

.comp-table thead {
  background: var(--ink);
  color: white;
}

.comp-table thead th {
  padding: 12px 14px;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.comp-table thead th.center { text-align: center; }

.comp-table tbody tr { border-bottom: 1px solid var(--border); }
.comp-table tbody tr:last-child { border-bottom: none; }
.comp-table tbody tr:nth-child(odd) { background: white; }
.comp-table tbody tr:nth-child(even) { background: var(--cream); }
.comp-table tbody tr:hover { background: var(--accent-soft); }

.comp-table td {
  padding: 11px 14px;
  vertical-align: middle;
}

.comp-table td.center { text-align: center; }

.rank-badge {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

.rb-gold { background: #ffc107; color: #5c3c00; }
.rb-silver { background: #90caf9; color: #0d3b6e; }
.rb-green { background: #4caf50; color: white; }
.rb-default { background: #e0e0dc; color: #666; }

.score-total { font-weight: 700; font-size: 15px; }

/* ── Profile grid ── */
.profiles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0;
}

.profile-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
}

.profile-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Bitter', serif;
}

.profile-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
}

.profile-tool-tag {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
}

.profile-tool-tag.primary {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.profile-note {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ── Callout ── */
.callout {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--cream-dark);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 20px 22px;
  margin: 28px 0;
}

.callout-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.callout-text { font-size: 14.5px; line-height: 1.65; }
.callout-text strong { color: var(--accent); }

/* ── Section divider ── */
.sec-divider {
  text-align: center;
  margin: 60px 0 44px;
  position: relative;
}

.sec-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.sec-divider span {
  position: relative;
  background: var(--cream);
  padding: 0 20px;
  font-size: 20px;
}

/* ── Image placeholder (screenshot mock) ── */
.screenshot-box {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin: 28px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}

.screenshot-browser {
  background: #f0ede8;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-bar {
  flex: 1;
  height: 18px;
  background: white;
  border-radius: 4px;
  margin: 0 8px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-size: 10px;
  color: var(--ink-muted);
  border: 1px solid var(--border);
}

.screenshot-content {
  padding: 28px 32px;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

.screenshot-caption {
  padding: 10px 16px;
  background: var(--cream-dark);
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--ink-muted);
  font-style: italic;
  text-align: center;
}

/* ── Canva mock ── */
.canva-mock {
  background: linear-gradient(135deg, #00c4cc10, #7c3aed10);
  display: grid;
  grid-template-columns: 180px 1fr 160px;
  gap: 0;
  height: 260px;
}

.canva-sidebar-left {
  background: #18181b;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sidebar-item {
  padding: 8px;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  font-size: 9px;
  color: #9ca3af;
}

.sidebar-item.active {
  background: #3f3f46;
  color: white;
}

.sidebar-icon { font-size: 16px; display: block; margin-bottom: 3px; }

.canva-canvas {
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
}

.canvas-slide {
  width: 100%;
  max-width: 280px;
  height: 160px;
  border-radius: 6px;
  background: linear-gradient(135deg, #6c5ce7, #a78bfa);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 8px 24px rgba(108,92,231,.3);
}

.canvas-slide-title {
  color: white;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Bitter', serif;
}

.canvas-slide-sub {
  color: rgba(255,255,255,.7);
  font-size: 10px;
}

.canva-sidebar-right {
  background: #fafaf8;
  border-left: 1px solid #e5e0d8;
  padding: 12px;
}

.prop-title {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #9ca3af;
  margin-bottom: 8px;
  font-weight: 600;
}

.color-swatches {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.swatch {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

.prop-slider {
  height: 4px;
  background: #e5e0d8;
  border-radius: 2px;
  margin-bottom: 8px;
  position: relative;
}

.prop-slider::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 60%;
  background: #6c5ce7;
  border-radius: 2px;
}

/* ── Gamma mock ── */
.gamma-mock {
  background: #0f0a1e;
  height: 260px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 16px;
}

.gamma-prompt-bar {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 12px 16px;
  color: rgba(255,255,255,.6);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gamma-prompt-cursor {
  width: 2px;
  height: 14px;
  background: #a78bfa;
  animation: blink 1s step-end infinite;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.gamma-slides-preview {
  display: flex;
  gap: 10px;
  flex: 1;
}

.gamma-slide-mini {
  flex: 1;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px;
  min-height: 0;
}

.gamma-slide-mini h5 {
  font-size: 10px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.gamma-slide-mini p {
  font-size: 8px;
  color: rgba(255,255,255,.6);
  margin: 0;
  line-height: 1.4;
}

/* ── Visme mock ── */
.visme-mock {
  height: 260px;
  background: #fff;
  display: flex;
  gap: 0;
}

.visme-left {
  width: 60px;
  background: #4d61fc;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0;
  gap: 4px;
}

.visme-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
}

.visme-icon.active { background: rgba(255,255,255,.2); }

.visme-canvas {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #f7f7f5;
}

.visme-infographic {
  flex: 1;
  background: white;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #e5e0d8;
}

.visme-chart-title {
  font-size: 11px;
  font-weight: 700;
  color: #333;
  text-align: center;
}

.visme-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
  padding-top: 10px;
}

.visme-bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 100%;
  justify-content: flex-end;
}

.visme-bar {
  width: 100%;
  border-radius: 3px 3px 0 0;
}

.visme-bar-label {
  font-size: 8px;
  color: #888;
  text-align: center;
}

/* ── RelayThat mock ── */
.relaythat-mock {
  background: #f0f5ff;
  height: 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}

.rt-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid #dce8f5;
}

.rt-upload-box {
  width: 60px;
  height: 60px;
  background: #2563eb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.rt-arrow {
  font-size: 20px;
  color: #2563eb;
}

.rt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  flex: 1;
}

.rt-format {
  background: white;
  border-radius: 6px;
  border: 1px solid #dce8f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 8px 4px;
}

.rt-format-visual {
  border-radius: 3px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.rt-format-label {
  font-size: 8px;
  color: #666;
  text-align: center;
}

/* ── Verdict table ── */
.verdict-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.verdict-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
}

.verdict-rank {
  font-size: 28px;
  margin-bottom: 6px;
}

.verdict-name {
  font-family: 'Bitter', serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.verdict-score {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  font-family: 'Bitter', serif;
}

.verdict-score span {
  font-size: 12px;
  color: var(--ink-muted);
  font-family: 'DM Sans', sans-serif;
}

.verdict-note {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 6px;
  line-height: 1.4;
}

/* ── Red flags section ── */
.red-flag-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.red-flag-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.red-flag-list li:last-child { border-bottom: none; }

.rf-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }

.rf-content h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.rf-content p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
}

/* ── Final box ── */
.final-stack {
  background: var(--ink);
  color: white;
  border-radius: 12px;
  padding: 36px 40px;
  margin: 40px 0;
}

.final-stack h3 {
  font-family: 'Bitter', serif;
  color: white;
  margin-bottom: 20px;
  font-size: 22px;
  border-bottom: 1px solid rgba(255,255,255,.2);
  padding-bottom: 14px;
}

.stack-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

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

.stack-profile {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  width: 180px;
  flex-shrink: 0;
}

.stack-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.stack-tool {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 500;
  color: white;
}

.stack-tool.primary {
  background: var(--accent);
  border-color: var(--accent);
}

/* ── Conclusion ── */
.conclusion {
  background: var(--accent-soft);
  border: 1.5px solid #ddb89a;
  border-radius: 10px;
  padding: 28px 32px;
  margin: 40px 0;
}

.conclusion p { font-size: 16px; line-height: 1.7; }

/* ── Footer ── */
.article-footer {
  border-top: 2px solid var(--ink);
  padding: 36px 0 60px;
  margin-top: 60px;
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-tag {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--ink-soft);
}

.footer-note {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .site-wrapper { padding: 0 16px; }
  .tool-card-body { grid-template-columns: 1fr; }
  .profiles-grid { grid-template-columns: 1fr; }
  .verdict-grid { grid-template-columns: 1fr; }
  .canva-mock { grid-template-columns: 48px 1fr; }
  .canva-sidebar-right { display: none; }
  .stack-profile { width: 120px; font-size: 12px; }
  .final-stack { padding: 24px 20px; }
  .rt-grid { grid-template-columns: repeat(3, 1fr); }
}
/* ── Masque le H1 redondant du markdown (déjà rendu par le layout) ── */
article > h1:first-of-type { display: none; }
