/* CGTR Educ'action : Editorial Militant */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700;800&family=Source+Sans+3:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --cgt-red: #E30613;
  --cgt-red-dark: #B30410;
  --cgt-red-soft: #FDEBED;
  --cgt-yellow: #F5C518;
  --cgt-yellow-soft: #FEF6D9;
  --ink-900: #121212;
  --ink-700: #2E2E2E;
  --ink-500: #6B6B6B;
  --ink-300: #C8C8C8;
  --paper: #FFFFFF;
  --paper-alt: #F7F7F7;

  --shadow-sm: 0 2px 8px rgba(18,18,18,0.04);
  --shadow-md: 0 8px 24px rgba(18,18,18,0.08);
  --shadow-red: 0 8px 16px rgba(227,6,19,0.15);

  --radius: 2px;
  --fast: 200ms ease-out;
  --smooth: 350ms cubic-bezier(0.4, 0, 0.2, 1);

  --xs: 4px; --sm: 8px; --md: 16px; --lg: 24px; --xl: 32px;
  --2xl: 48px; --3xl: 64px; --4xl: 96px; --5xl: 128px;

  --container: 1200px;
  --header-h: 80px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--paper); color: var(--ink-900); }
body {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Density modifier */
body.dense {
  --2xl: 32px; --3xl: 48px; --4xl: 64px; --5xl: 80px;
}

img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  color: var(--ink-900);
}
h1 { font-weight: 800; text-transform: uppercase; line-height: 1.1; letter-spacing: -0.01em; }
h2 { font-weight: 700; text-transform: uppercase; line-height: 1.15; }
h3 { font-weight: 700; line-height: 1.2; }
h4, h5, h6 { font-weight: 600; line-height: 1.25; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--lg); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 var(--lg);
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background var(--fast), color var(--fast), transform var(--fast), box-shadow var(--fast), border-color var(--fast);
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 2px solid var(--ink-900);
  outline-offset: 2px;
}
.btn-primary {
  background: var(--cgt-red);
  color: var(--paper);
  position: relative;
}
.btn-primary:hover {
  background: var(--cgt-red-dark);
  transform: scale(1.02);
  box-shadow: var(--shadow-red);
}
.btn-primary.btn-arrow:hover::after {
  color: var(--cgt-yellow);
}
.btn-secondary {
  background: var(--ink-900);
  color: var(--paper);
}
.btn-secondary:hover { background: var(--ink-700); }
.btn-ghost {
  background: transparent;
  border: 2px solid var(--cgt-red);
  color: var(--cgt-red);
}
.btn-ghost:hover { background: var(--cgt-red-soft); }
.btn-lg { min-height: 56px; padding: 0 var(--xl); font-size: 16px; }
.btn-sm { min-height: 40px; padding: 0 var(--md); font-size: 13px; }
.btn-arrow::after { content: "→"; font-family: inherit; }

/* ===== Badges ===== */
.badge {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 8px;
  background: var(--paper-alt);
  color: var(--ink-700);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
}
.badge-red {
  background: var(--cgt-red);
  color: var(--paper);
}
.badge-yellow {
  background: var(--cgt-yellow);
  color: var(--ink-900);
}
.badge-outline {
  background: transparent;
  border: 1px solid var(--ink-300);
}

/* ===== Cards ===== */
.card {
  background: var(--paper);
  border: 1px solid var(--paper-alt);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--smooth), box-shadow var(--smooth);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card-media {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  background: var(--ink-900);
}
.card-body {
  padding: var(--lg);
  display: flex;
  flex-direction: column;
  gap: var(--sm);
  flex: 1;
}
.card-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: var(--ink-900);
  text-transform: none;
}
.card-meta {
  font-size: 13px;
  color: var(--ink-500);
  display: flex;
  gap: var(--sm);
  align-items: center;
}
.card-excerpt {
  color: var(--ink-700);
  font-size: 15px;
  line-height: 1.5;
}

/* ===== Geometric placeholder media ===== */
.media-geo {
  width: 100%;
  height: 100%;
  background: var(--ink-900);
  position: relative;
  overflow: hidden;
}
.media-geo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.04) 0 2px,
    transparent 2px 14px
  );
}
.media-geo .geo-shape {
  position: absolute;
  background: var(--cgt-red);
}

/* hero photo placeholder */
.photo-placeholder {
  background: var(--ink-900);
  position: relative;
  overflow: hidden;
}
.photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.03) 0 4px,
    transparent 4px 24px
  );
}
.photo-placeholder .ph-label {
  position: absolute;
  bottom: var(--md);
  left: var(--md);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.photo-placeholder .ph-accent {
  position: absolute;
  background: var(--cgt-red);
  mix-blend-mode: normal;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--paper-alt);
  transition: height var(--smooth), box-shadow var(--smooth);
  height: var(--header-h);
}
.header.shrunk {
  height: 60px;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--xl);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Oswald', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 18px;
  color: var(--ink-900);
}
.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}
.header .brand-logo { width: 52px; height: 52px; }
.header.shrunk .brand-logo { width: 40px; height: 40px; transition: width var(--smooth), height var(--smooth); }
.footer .brand-logo { width: 56px; height: 56px; }
.brand-text { line-height: 1.1; }
.brand-mark {
  width: 36px;
  height: 36px;
  background: var(--cgt-red);
  display: grid;
  place-items: center;
  color: var(--paper);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.brand-mark span { transform: translateY(1px); }
.brand small {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--ink-500);
  letter-spacing: 0.1em;
  line-height: 1;
  margin-top: 2px;
}
.nav {
  display: flex;
  gap: var(--lg);
  margin-left: auto;
  align-items: center;
}
.nav a {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ink-900);
  padding: 8px 0;
  position: relative;
  transition: color var(--fast);
}
.nav a:hover { color: var(--cgt-red); }
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: var(--cgt-red);
}
.nav-cta { margin-left: var(--md); }

/* ===== Ticker ===== */
.ticker {
  background: var(--ink-900);
  color: var(--paper);
  height: 44px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.ticker-label {
  background: var(--cgt-red);
  color: var(--paper);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  padding: 0 var(--md);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  z-index: 2;
  border-right: 3px solid var(--cgt-yellow);
}
.ticker-label .pulse {
  width: 8px;
  height: 8px;
  background: var(--paper);
  border-radius: 50%;
  animation: pulse 1.4s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.ticker-track {
  display: flex;
  gap: var(--2xl);
  white-space: nowrap;
  animation: ticker 60s linear infinite;
  padding-left: var(--2xl);
  font-size: 14px;
  font-weight: 500;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 12px; }
.ticker-track span::before {
  content: "●";
  color: var(--cgt-red);
  font-size: 8px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Footer ===== */
.footer {
  background: var(--ink-900);
  color: var(--paper);
  padding: var(--3xl) 0 var(--xl);
  margin-top: var(--4xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--xl);
  margin-bottom: var(--2xl);
}
.footer h4 {
  color: var(--paper);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.08em;
  margin-bottom: var(--md);
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer a {
  color: var(--ink-500);
  font-size: 14px;
  transition: color var(--fast);
}
.footer a:hover { color: var(--paper); }
.footer-brand-text {
  color: var(--ink-500);
  font-size: 14px;
  margin-top: var(--md);
  max-width: 280px;
  line-height: 1.6;
}
.footer-bottom {
  border-top: 1px solid var(--ink-700);
  padding-top: var(--lg);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== Hero ===== */
.hero {
  padding: var(--3xl) 0 var(--4xl);
  border-bottom: 1px solid var(--paper-alt);
}
.hero.hero-compact {
  padding: var(--2xl) 0 var(--3xl);
}
.hero-compact h1 {
  font-size: clamp(40px, 5.2vw, 72px);
}
.hero-visual-compact {
  aspect-ratio: 5/4;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--3xl);
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--cgt-red);
  margin-bottom: var(--lg);
}
.hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--cgt-red);
}
.hero-eyebrow::after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--cgt-yellow);
  display: inline-block;
}
.hero h1 {
  font-size: clamp(48px, 6.5vw, 88px);
  margin-bottom: var(--lg);
}
.hero h1 .underlined {
  background-image: linear-gradient(transparent 78%, var(--cgt-yellow) 78%, var(--cgt-yellow) 92%, transparent 92%);
  background-repeat: no-repeat;
  padding-right: 4px;
}
.hero p.lead {
  font-size: clamp(17px, 1.4vw, 19px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink-700);
  margin-bottom: var(--xl);
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: var(--md);
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: var(--2xl);
  margin-top: var(--2xl);
  padding-top: var(--xl);
  border-top: 1px solid var(--paper-alt);
}
.hero-stat .num {
  font-family: 'Oswald', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--ink-900);
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-500);
  margin-top: 6px;
}
.hero-visual {
  aspect-ratio: 4/5;
  position: relative;
}

/* ===== Section utilities ===== */
.section {
  padding: var(--4xl) 0;
}
.section.alt { background: var(--paper-alt); }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: var(--2xl);
  gap: var(--xl);
}
.section-head h2 {
  font-size: clamp(36px, 4vw, 56px);
  max-width: 720px;
}
.section-head .kicker {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--cgt-red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--sm);
}
.section-head .kicker::after {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--cgt-yellow);
  display: inline-block;
}
.section-head p { color: var(--ink-700); max-width: 520px; }

/* "Pourquoi" 3 columns */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--xl);
}
.benefit {
  padding: var(--xl);
  background: var(--paper);
  border: 1px solid var(--paper-alt);
}
.benefit-icon {
  width: 56px;
  height: 56px;
  border: 1.5px solid var(--ink-900);
  display: grid;
  place-items: center;
  margin-bottom: var(--lg);
}
.benefit h3 {
  text-transform: uppercase;
  font-size: 22px;
  margin-bottom: var(--sm);
}
.benefit p { color: var(--ink-700); font-size: 15px; }

/* ===== Actu list ===== */
.actu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--xl);
}
.actu-grid .featured {
  grid-column: span 2;
  grid-row: span 2;
}
.actu-grid .featured .card-title { font-size: 32px; }
.actu-grid .featured .card-media { aspect-ratio: 16/10; }

/* Filter pills */
.filters {
  display: flex;
  gap: var(--sm);
  flex-wrap: wrap;
  margin-bottom: var(--xl);
}
.pill {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 var(--md);
  border: 1px solid var(--ink-300);
  background: var(--paper);
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-700);
  transition: all var(--fast);
}
.pill:hover { border-color: var(--ink-900); color: var(--ink-900); }
.pill.active {
  background: var(--ink-900);
  color: var(--paper);
  border-color: var(--ink-900);
}

/* ===== CTA bandeau ===== */
.cta-banner {
  background: var(--cgt-red);
  color: var(--paper);
  padding: var(--3xl) 0;
  position: relative;
  border-top: 4px solid var(--cgt-yellow);
}
.cta-banner h2 {
  color: var(--paper);
  font-size: clamp(36px, 5vw, 64px);
  max-width: 800px;
  margin-bottom: var(--lg);
}
.cta-banner p {
  font-size: 18px;
  font-weight: 500;
  max-width: 600px;
  margin-bottom: var(--xl);
  color: rgba(255,255,255,0.92);
}
.cta-banner .btn-primary {
  background: var(--paper);
  color: var(--cgt-red);
}
.cta-banner .btn-primary:hover {
  background: var(--ink-900);
  color: var(--paper);
}
.cta-banner .btn-ghost {
  border-color: var(--paper);
  color: var(--paper);
}
.cta-banner .btn-ghost:hover {
  background: rgba(255,255,255,0.12);
}

/* ===== Page hero (small) ===== */
.page-hero {
  padding: var(--3xl) 0 var(--xl);
  border-bottom: 1px solid var(--paper-alt);
}
.page-hero h1 {
  font-size: clamp(40px, 5vw, 72px);
  margin-bottom: var(--md);
}
.page-hero .breadcrumb {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-500);
  margin-bottom: var(--md);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
}
.page-hero .breadcrumb a:hover { color: var(--cgt-red); }
.page-hero p.lead {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink-700);
  max-width: 720px;
}

/* ===== Search ===== */
.search-wrap {
  background: var(--paper-alt);
  padding: var(--3xl) 0;
  border-bottom: 1px solid var(--ink-300);
}
.search-box {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.search-box input {
  width: 100%;
  height: 72px;
  padding: 0 var(--xl) 0 64px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  background: var(--paper);
  border: 2px solid var(--ink-900);
  border-radius: var(--radius);
  outline: none;
  transition: box-shadow var(--fast);
}
.search-box input:focus { box-shadow: var(--shadow-md); }
.search-box svg.search-icon {
  position: absolute;
  left: var(--lg);
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  color: var(--ink-900);
  pointer-events: none;
}
.search-suggest {
  margin-top: var(--md);
  font-size: 14px;
  color: var(--ink-500);
  text-align: center;
}
.search-suggest a {
  color: var(--ink-900);
  border-bottom: 1px solid var(--ink-300);
  margin: 0 6px;
  padding-bottom: 1px;
}
.search-suggest a:hover { border-color: var(--cgt-red); color: var(--cgt-red); }

/* ===== Tiles ===== */
.tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--md);
}
.tile {
  background: var(--paper);
  border: 1px solid var(--paper-alt);
  padding: var(--xl);
  display: flex;
  flex-direction: column;
  gap: var(--md);
  transition: transform var(--smooth), border-color var(--fast), box-shadow var(--smooth);
  cursor: pointer;
  min-height: 200px;
}
.tile:hover {
  transform: translateY(-4px);
  border-color: var(--ink-900);
  box-shadow: var(--shadow-md);
}
.tile-num {
  font-family: 'Oswald', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--cgt-red);
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tile-num::after {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--cgt-yellow);
}
.tile h3 {
  font-size: 22px;
  text-transform: uppercase;
  margin-top: auto;
}
.tile p {
  font-size: 13px;
  color: var(--ink-500);
  margin-top: 4px;
}

/* ===== Accordion ===== */
.accordion {
  border-top: 1px solid var(--ink-500);
}
.acc-item {
  border-bottom: 1px solid var(--ink-500);
}
.acc-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--lg) 0;
  text-align: left;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--ink-900);
  background: transparent;
  transition: padding var(--fast), background var(--fast);
}
.acc-header:hover { background: var(--paper-alt); padding-left: var(--md); padding-right: var(--md); }
.acc-chevron {
  width: 20px;
  height: 20px;
  transition: transform var(--fast);
  flex-shrink: 0;
  color: var(--ink-900);
}
.acc-item.open .acc-chevron { transform: rotate(180deg); }
.acc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--smooth);
}
.acc-body > div {
  overflow: hidden;
}
.acc-item.open .acc-body { grid-template-rows: 1fr; }
.acc-body-inner {
  padding: 0 0 var(--lg);
  color: var(--ink-700);
  font-size: 16px;
  line-height: 1.7;
  max-width: 760px;
}
.acc-body-inner p + p { margin-top: var(--md); }
.acc-body-inner ul { list-style: none; padding: 0; margin-top: var(--md); }
.acc-body-inner li {
  padding-left: var(--lg);
  position: relative;
  margin-bottom: 8px;
}
.acc-body-inner li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--cgt-red);
  font-weight: 700;
}
.acc-body-inner li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 8px;
  height: 2px;
  background: var(--cgt-yellow);
  opacity: 0.7;
}

/* ===== Adhérer form ===== */
.adherer-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--3xl);
  align-items: start;
}
.adherer-side {
  position: sticky;
  top: calc(var(--header-h) + var(--lg));
  background: var(--paper-alt);
  padding: var(--xl);
}
.adherer-side h3 {
  text-transform: uppercase;
  font-size: 22px;
  margin-bottom: var(--md);
}
.adherer-side p { color: var(--ink-700); font-size: 15px; line-height: 1.6; }
.adherer-side .badges-row {
  display: flex;
  flex-direction: column;
  gap: var(--md);
  margin-top: var(--xl);
  padding-top: var(--xl);
  border-top: 1px solid var(--ink-300);
}
.trust-badge {
  display: flex;
  gap: var(--md);
  align-items: start;
}
.trust-badge svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--ink-900);
  margin-top: 2px;
}
.trust-badge strong {
  display: block;
  font-weight: 600;
  color: var(--ink-900);
  font-size: 14px;
}
.trust-badge span {
  color: var(--ink-500);
  font-size: 13px;
}
.tax-callout {
  background: var(--cgt-red-soft);
  border-left: 3px solid var(--cgt-red);
  padding: var(--md);
  margin-top: var(--md);
  position: relative;
}
.tax-callout::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 4px;
  background: var(--cgt-yellow);
}
.tax-callout strong {
  color: var(--cgt-red);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 32px;
  display: block;
  line-height: 1;
}
.tax-callout span {
  color: var(--ink-900);
  font-size: 13px;
  font-weight: 500;
}

/* Stepper */
.stepper {
  display: flex;
  align-items: center;
  gap: var(--md);
  margin-bottom: var(--xl);
  padding-bottom: var(--xl);
  border-bottom: 1px solid var(--paper-alt);
}
.step {
  display: flex;
  align-items: center;
  gap: var(--sm);
  color: var(--ink-500);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.step .step-num {
  width: 32px;
  height: 32px;
  background: var(--paper-alt);
  color: var(--ink-500);
  display: grid;
  place-items: center;
  font-weight: 700;
}
.step.active { color: var(--ink-900); }
.step.active .step-num {
  background: var(--cgt-red);
  color: var(--paper);
}
.step.done .step-num {
  background: var(--ink-900);
  color: var(--paper);
}
.step.done { color: var(--ink-900); }
.step-divider {
  flex: 1;
  height: 1px;
  background: var(--ink-300);
  min-width: 24px;
}
.step-divider.done { background: var(--ink-900); }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--md) var(--lg);
}
.form-grid .full { grid-column: 1 / -1; }
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-900);
}
.field label .req { color: var(--cgt-red); }
.field input, .field select, .field textarea {
  height: 48px;
  padding: 0 var(--md);
  border: 1px solid var(--ink-500);
  background: var(--paper);
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  color: var(--ink-900);
  outline: none;
  transition: border var(--fast);
}
.field textarea {
  height: 120px;
  padding: var(--md);
  resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border: 2px solid var(--ink-900);
  padding: 0 calc(var(--md) - 1px);
}
.field textarea:focus { padding: calc(var(--md) - 1px); }
.field .hint { font-size: 12px; color: var(--ink-500); }
.field .err {
  font-size: 12px;
  color: var(--cgt-red);
  display: flex;
  align-items: center;
  gap: 4px;
}
.field.error input, .field.error select { border: 2px solid var(--cgt-red); padding: 0 calc(var(--md) - 1px); }

.form-actions {
  margin-top: var(--xl);
  padding-top: var(--xl);
  border-top: 1px solid var(--paper-alt);
  display: flex;
  justify-content: space-between;
  gap: var(--md);
  align-items: center;
}
.form-actions .progress-text {
  font-size: 13px;
  color: var(--ink-500);
}

/* Cotisation tier cards */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--md);
  margin-bottom: var(--lg);
}
.tier {
  border: 2px solid var(--ink-300);
  padding: var(--lg);
  cursor: pointer;
  transition: border var(--fast), background var(--fast);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tier:hover { border-color: var(--ink-900); }
.tier.selected {
  border-color: var(--cgt-red);
  background: var(--cgt-red-soft);
}
.tier .tier-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.tier .tier-price {
  font-family: 'Oswald', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: var(--ink-900);
  line-height: 1;
}
.tier .tier-price small {
  font-size: 13px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 500;
  color: var(--ink-500);
}
.tier .tier-desc {
  font-size: 12px;
  color: var(--ink-500);
}

/* Events list rows */
.event-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: var(--xl);
  align-items: center;
  padding: var(--xl) 0;
  border-bottom: 1px solid var(--ink-300);
  transition: background var(--fast), padding var(--fast);
}
.event-row:hover { background: var(--paper-alt); padding-left: var(--md); padding-right: var(--md); }
.event-date {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  text-align: center;
  border-right: 2px solid var(--ink-900);
  padding-right: var(--lg);
  position: relative;
}
.event-date::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 0;
  width: 4px;
  height: 16px;
  background: var(--cgt-yellow);
}
.event-date .day { font-size: 48px; font-weight: 800; line-height: 1; color: var(--ink-900); }
.event-date .month { font-size: 14px; color: var(--cgt-red); font-weight: 600; letter-spacing: 0.08em; }
.event-info h3 { font-size: 22px; margin-bottom: 6px; text-transform: none; }
.event-info .meta { font-size: 13px; color: var(--ink-500); display: flex; gap: var(--md); }
.event-info .meta span { display: inline-flex; align-items: center; gap: 6px; }

/* Revendication blocks */
.bloc-thematique { margin-bottom: var(--3xl); }
.bloc-thematique h2 { margin-bottom: var(--lg); }
.bloc-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--md);
}
.bloc-cell {
  padding: var(--lg);
}
.bloc-cell h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-bottom: var(--sm);
  color: var(--ink-500);
}
.bloc-cell p { font-size: 15px; color: var(--ink-900); line-height: 1.5; }
.bloc-cell.constat { background: var(--paper-alt); }
.bloc-cell.exigence {
  background: var(--paper);
  border-left: 3px solid var(--cgt-red);
}
.bloc-cell.impact { background: var(--cgt-red-soft); }

/* Spacious / dense modifiers from Tweaks */
body.spacious .section { padding: var(--5xl) 0; }
body.spacious .hero { padding: var(--4xl) 0 var(--5xl); }

/* ===== Bureau trombinoscope ===== */
.bureau-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--lg);
}
.bureau-card {
  background: var(--paper);
  border: 1px solid var(--paper-alt);
  display: flex;
  flex-direction: column;
  transition: transform var(--smooth), box-shadow var(--smooth), border-color var(--fast);
}
.bureau-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--ink-300);
}
.bureau-portrait {
  aspect-ratio: 4/5;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.bureau-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 14px);
}
.bureau-initials {
  font-family: 'Oswald', sans-serif;
  font-weight: 800;
  font-size: 64px;
  letter-spacing: -0.02em;
  z-index: 1;
}
.bureau-accent {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 6px;
}
.bureau-body {
  padding: var(--md) var(--lg) var(--lg);
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.bureau-role {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cgt-red);
}
.bureau-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  color: var(--ink-900);
  text-transform: none;
}
.bureau-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
  font-size: 13px;
  color: var(--ink-700);
}
.bureau-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.bureau-meta svg { color: var(--ink-500); flex-shrink: 0; }
.bureau-since {
  margin-top: auto;
  padding-top: var(--sm);
  font-size: 12px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.bureau-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--lg);
}
.bureau-stat {
  background: var(--paper);
  padding: var(--xl);
  border-left: 3px solid var(--cgt-red);
  position: relative;
}
.bureau-stat::after {
  content: "";
  position: absolute;
  left: -3px;
  bottom: 0;
  width: 3px;
  height: 24px;
  background: var(--cgt-yellow);
}
.bureau-stat .num {
  font-family: 'Oswald', sans-serif;
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  color: var(--ink-900);
}
.bureau-stat .lbl {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-500);
  margin-top: 8px;
}

@media (max-width: 1023px) {
  .bureau-grid { grid-template-columns: repeat(3, 1fr); }
  .bureau-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .bureau-grid { grid-template-columns: repeat(2, 1fr); }
  .bureau-stat .num { font-size: 40px; }
}
/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--3xl);
  align-items: start;
}
.contact-side {
  position: sticky;
  top: calc(var(--header-h) + var(--lg));
  display: flex;
  flex-direction: column;
  gap: var(--md);
}
.contact-map {
  background: var(--paper-alt);
  border: 1px solid var(--ink-300);
  position: relative;
  overflow: hidden;
}
.contact-map svg { display: block; width: 100%; height: auto; }
.map-legend {
  display: flex;
  gap: var(--md);
  padding: var(--sm) var(--md);
  background: var(--paper);
  border-top: 1px solid var(--ink-300);
  font-size: 12px;
  color: var(--ink-700);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.map-legend span { display: inline-flex; align-items: center; gap: 6px; }
.map-legend .dot { width: 10px; height: 10px; display: inline-block; }
.map-legend .dot-red { background: var(--cgt-red); }
.map-legend .dot-yellow { background: var(--cgt-yellow); border: 1.5px solid var(--ink-900); box-sizing: border-box; }

.contact-block {
  background: var(--paper);
  padding: var(--lg);
  border: 1px solid var(--paper-alt);
  border-left: 3px solid var(--cgt-red);
  position: relative;
}
.contact-block::after {
  content: "";
  position: absolute;
  left: -3px;
  bottom: 0;
  width: 3px;
  height: 24px;
  background: var(--cgt-yellow);
}
.contact-block.alt { background: var(--paper-alt); }
.contact-block h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.04em;
  margin-bottom: var(--sm);
}
.contact-addr { font-size: 15px; color: var(--ink-900); line-height: 1.5; margin-bottom: var(--md); }
.contact-list, .perm-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-700);
}
.contact-list li svg { color: var(--ink-500); flex-shrink: 0; }
.perm-list li {
  font-size: 14px;
  color: var(--ink-700);
  padding-left: var(--md);
  position: relative;
  line-height: 1.5;
}
.perm-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--cgt-yellow);
}
.perm-list strong { color: var(--ink-900); }

.contact-form-wrap {
  background: var(--paper);
  padding: var(--xl);
  border: 1px solid var(--paper-alt);
}
.contact-success {
  text-align: left;
  padding: var(--lg) 0;
}
.contact-success-icon {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  background: var(--cgt-red);
  color: var(--paper);
  margin-bottom: var(--lg);
}

@media (max-width: 1023px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-side { position: static; }
}

/* Toast (flash messages) */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--ink-900);
  color: var(--paper);
  padding: var(--md) var(--lg);
  border-radius: var(--radius);
  z-index: 400;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: var(--sm);
  transition: transform var(--smooth);
  box-shadow: var(--shadow-md);
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.red { background: var(--cgt-red); }

/* Responsive */
@media (max-width: 1023px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--xl); }
  .hero-visual { aspect-ratio: 16/10; }
  .benefits, .actu-grid, .tiles { grid-template-columns: repeat(2, 1fr); }
  .actu-grid .featured { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .adherer-grid { grid-template-columns: 1fr; }
  .adherer-side { position: static; }
  .bloc-row { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .container { padding: 0 var(--md); }
  .nav { display: none; }
  .nav-cta { display: inline-flex; }
  .benefits, .actu-grid, .tiles, .tiers, .form-grid { grid-template-columns: 1fr; }
  .actu-grid .featured { grid-column: span 1; }
  .actu-grid .featured .card-title { font-size: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .event-row { grid-template-columns: 1fr; gap: var(--md); }
  .event-date { border-right: none; border-left: 3px solid var(--cgt-red); padding: 0 0 0 var(--md); text-align: left; display: flex; align-items: baseline; gap: 12px; }
  .hero-stats { gap: var(--lg); flex-wrap: wrap; }
  .stepper { overflow-x: auto; }
}

/* ===== Markdown body (articles + pages CMS) ===== */
.section .container > div h2,
.section .container > div h3,
.section .container > div h4 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  margin-top: var(--xl);
  margin-bottom: var(--md);
}
.section .container > div h2 { font-size: 28px; }
.section .container > div h3 { font-size: 22px; }
.section .container > div p { margin-bottom: var(--md); }
.section .container > div ul,
.section .container > div ol { margin: var(--md) 0; padding-left: var(--xl); }
.section .container > div li { margin-bottom: 6px; }
.section .container > div a { color: var(--cgt-red); border-bottom: 1px solid var(--cgt-red); }
.section .container > div a:hover { background: var(--cgt-red-soft); }
.section .container > div strong { color: var(--ink-900); }
.section .container > div blockquote {
  border-left: 3px solid var(--cgt-red);
  padding: var(--md) var(--lg);
  margin: var(--lg) 0;
  background: var(--paper-alt);
  font-style: italic;
}
.section .container > div code {
  background: var(--paper-alt);
  padding: 2px 6px;
  border-radius: var(--radius);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.9em;
}

/* Pagination Laravel */
.pagination {
  display: inline-flex;
  gap: 6px;
  list-style: none;
  align-items: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
}
.pagination li a,
.pagination li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid var(--ink-300);
  color: var(--ink-700);
  border-radius: var(--radius);
  background: var(--paper);
}
.pagination li.active span {
  background: var(--ink-900);
  color: var(--paper);
  border-color: var(--ink-900);
}
.pagination li.disabled span { opacity: 0.4; }
.pagination li a:hover { border-color: var(--ink-900); color: var(--ink-900); }

/* ============================================================
   "VOS DROITS" : catalogue de fiches + page detail
   ============================================================ */

/* Couleurs par categorie (badges et bordures) */
.cat-sante           { --cat-color: #b91c1c; --cat-soft: #fef2f2; }
.cat-conges          { --cat-color: #1d4ed8; --cat-soft: #eff6ff; }
.cat-salaires        { --cat-color: #15803d; --cat-soft: #f0fdf4; }
.cat-statut          { --cat-color: #6d28d9; --cat-soft: #f5f3ff; }
.cat-droits-devoirs  { --cat-color: #c2410c; --cat-soft: #fff7ed; }
.cat-rps             { --cat-color: #be185d; --cat-soft: #fdf2f8; }
.cat-vie-eco         { --cat-color: #0e7490; --cat-soft: #ecfeff; }

/* Badges */
.droit-cat-badge {
  display: inline-block;
  padding: 4px 10px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--cat-soft);
  color: var(--cat-color);
  border-left: 3px solid var(--cat-color);
}
.droit-fil-badge {
  display: inline-block;
  padding: 3px 8px;
  font-size: 11px;
  background: var(--paper-alt);
  color: var(--ink-700);
  border-radius: 2px;
  margin-right: 4px;
  margin-bottom: 4px;
}
.droit-pin-badge { color: #d97706; font-size: 18px; line-height: 1; }

/* Grille des categories (cartes) */
.droit-cats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.droit-cat-tile {
  display: block;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--paper-alt);
  border-left: 4px solid var(--cat-color, var(--cgt-red));
  text-decoration: none;
  color: inherit;
  transition: transform var(--fast), box-shadow var(--fast), background var(--fast);
}
.droit-cat-tile:hover {
  transform: translateY(-3px);
  background: var(--cat-soft, var(--paper-alt));
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.droit-cat-tile .droit-cat-num {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--cat-color, var(--cgt-red));
  line-height: 1;
}
.droit-cat-tile h3 {
  font-size: 16px;
  margin-top: 8px;
  color: var(--ink-900);
}

/* Section par categorie sur la home /metiers */
.droit-cat-section { margin-top: 40px; }
.droit-cat-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cat-color, var(--ink-900));
  border-bottom: 2px solid var(--cat-color, var(--ink-300));
  padding-bottom: 8px;
  margin-bottom: 16px;
}
.droit-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.droit-mini-card {
  display: block;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--paper-alt);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--fast), transform var(--fast);
}
.droit-mini-card:hover { border-color: var(--cgt-red); transform: translateY(-2px); }
.droit-mini-card h4 { font-size: 16px; color: var(--ink-900); margin-bottom: 6px; }
.droit-mini-card .droit-mini-q { font-style: italic; color: var(--ink-700); font-size: 13px; margin-bottom: 10px; }
.droit-mini-card .droit-mini-link {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--cgt-red);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.droit-cat-more {
  display: inline-block;
  margin-top: 14px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink-900);
  text-decoration: none;
  border-bottom: 1px solid var(--ink-900);
  padding-bottom: 2px;
}
.droit-cat-more:hover { color: var(--cgt-red); border-color: var(--cgt-red); }

/* Resultats de recherche */
.droit-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.droit-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--paper-alt);
  border-left: 3px solid var(--cgt-red);
  text-decoration: none;
  color: inherit;
  transition: transform var(--fast), box-shadow var(--fast);
}
.droit-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.droit-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.droit-card h3 { font-size: 18px; color: var(--ink-900); margin-bottom: 8px; }
.droit-card-q { font-style: italic; font-size: 13px; color: var(--ink-700); margin-bottom: 10px; }
.droit-card-resume { font-size: 14px; color: var(--ink-900); line-height: 1.5; flex-grow: 1; }
.droit-card-foot { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--paper-alt); }

/* PAGE DETAIL d'une fiche */
.droit-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 1023px) {
  .droit-detail-grid { grid-template-columns: 1fr; }
}
.droit-detail-content { min-width: 0; }
.droit-detail-side { position: sticky; top: 100px; }

.droit-resume-box {
  background: var(--cgt-red-soft);
  border-left: 3px solid var(--cgt-red);
  padding: 20px;
  margin-bottom: 32px;
}
.droit-resume-label {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cgt-red);
  font-size: 12px;
  margin-bottom: 8px;
}
.droit-resume-box p { font-size: 16px; color: var(--ink-900); line-height: 1.6; margin: 0; }

.droit-md { font-size: 16px; color: var(--ink-900); line-height: 1.7; }
.droit-md h2 {
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--paper-alt);
  color: var(--ink-900);
}
.droit-md h3 { font-size: 18px; margin-top: 24px; margin-bottom: 10px; color: var(--cgt-red); }
.droit-md p { margin-bottom: 14px; }
.droit-md ul, .droit-md ol { margin-bottom: 16px; padding-left: 24px; }
.droit-md li { margin-bottom: 6px; }
.droit-md strong { color: var(--ink-900); }
.droit-md a { color: var(--cgt-red); text-decoration: underline; }
.droit-md a:hover { background: var(--cgt-red-soft); }
.droit-md blockquote {
  border-left: 3px solid var(--ink-300);
  padding-left: 16px;
  color: var(--ink-700);
  font-style: italic;
  margin: 16px 0;
}
.droit-md table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.droit-md th, .droit-md td {
  padding: 8px 10px;
  text-align: left;
  border-bottom: 1px solid var(--paper-alt);
  font-size: 14px;
}
.droit-md th { background: var(--paper-alt); font-weight: 700; }

.droit-demarches { margin-top: 40px; }
.droit-demarches h2 {
  font-size: 24px;
  margin-bottom: 16px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--paper-alt);
}
.droit-steps { list-style: none; padding: 0; margin: 0; }
.droit-steps li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--paper-alt);
}
.droit-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--cgt-red);
  color: var(--paper);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
}
.droit-step-body h3 { font-size: 16px; margin-bottom: 4px; color: var(--ink-900); }
.droit-step-body p { font-size: 14px; color: var(--ink-700); line-height: 1.5; margin: 0; }

.droit-refs { margin-top: 40px; }
.droit-refs h2 { font-size: 22px; margin-bottom: 12px; }
.droit-refs ul { padding-left: 20px; }
.droit-refs li { font-size: 14px; margin-bottom: 6px; color: var(--ink-700); }
.droit-refs li a { color: var(--cgt-red); text-decoration: underline; }

.droit-tags { margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--paper-alt); }
.droit-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--paper-alt);
  color: var(--ink-700);
  font-size: 12px;
  border-radius: 2px;
  margin-right: 6px;
  margin-bottom: 6px;
}

.droit-source-box {
  background: var(--paper);
  border: 2px solid var(--cgt-red);
  padding: 20px;
  margin-bottom: 24px;
}
.droit-source-box strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 12px;
  color: var(--cgt-red);
  margin-bottom: 6px;
}
.droit-source-box p { font-size: 14px; color: var(--ink-900); margin-bottom: 12px; line-height: 1.4; }
.droit-source-icon { color: var(--cgt-red); margin-bottom: 8px; }

.droit-cta-box {
  background: var(--ink-900);
  color: var(--paper);
  padding: 24px;
  margin-bottom: 24px;
}
.droit-cta-box h3 { font-size: 18px; color: var(--paper); margin-bottom: 8px; }
.droit-cta-box p { font-size: 14px; margin-bottom: 16px; color: rgba(255,255,255,0.85); line-height: 1.5; }
.btn.btn-block { width: 100%; margin-bottom: 4px; }

.droit-connexes h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
  color: var(--ink-900);
  margin-bottom: 12px;
}
.droit-connexes ul { list-style: none; padding: 0; }
.droit-connexes li { padding: 8px 0; border-bottom: 1px solid var(--paper-alt); }
.droit-connexes li a {
  color: var(--ink-900);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
  display: block;
}
.droit-connexes li a:hover { color: var(--cgt-red); }
