/* ============================================================
   GUIDE COPROPRIÉTÉ — Main Stylesheet
   Palette : #1C1C1E anthracite · #F97316 orange · #FAFAF8 warm white
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --anthracite:   #1C1C1E;
  --orange:       #F97316;
  --orange-light: #FFF7ED;
  --bg-warm:      #FAFAF8;
  --bg-secondary: #F5F5F2;
  --text:         #1C1C1E;
  --text-muted:   #6B7280;
  --text-hint:    #9CA3AF;
  --border:       #E0DFDB;
  --white:        #FFFFFF;

  /* Categories */
  --copro-text:   #C2410C;
  --copro-bg:     #FFF0E6;
  --assur-text:   #1D4ED8;
  --assur-bg:     #E6F1FF;
  --amo-text:     #065F46;
  --amo-bg:       #ECFDF5;

  /* Typography */
  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans:  -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-size-base: 16px;
  --line-height: 1.7;
}

html { font-size: var(--font-size-base); scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg-warm);
  color: var(--text);
  line-height: var(--line-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--orange); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* --- Container --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   MASTHEAD / HEADER
   ============================================================ */

.site-header {
  background: var(--anthracite);
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Top bar */
.header-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 24px;
  border-bottom: 0.5px solid #2D2D2D;
}

.header-topbar__tagline {
  font-size: 10px;
  color: #6B7280;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.header-topbar__links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.header-topbar__links a {
  font-size: 10px;
  color: #6B7280;
  transition: color .2s;
}

.header-topbar__links a:hover,
.header-topbar__links a.accent {
  color: var(--orange);
}

.header-topbar__links .accent {
  font-weight: 500;
}

/* Masthead row */
.header-masthead {
  padding: 14px 24px 12px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.site-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.site-title a { color: var(--white); }
.site-title a:hover { color: var(--white); }

.header-masthead__dot {
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  margin-bottom: 3px;
}

.header-masthead__byline {
  font-size: 11px;
  color: #6B7280;
  line-height: 1;
}

/* Primary nav */
.primary-nav {
  border-top: 0.5px solid #2D2D2D;
  padding: 0 24px;
}

.primary-nav ul {
  display: flex;
  gap: 0;
}

.primary-nav ul li a {
  display: block;
  font-size: 11px;
  color: #6B7280;
  padding: 10px 16px 10px 0;
  margin-right: 16px;
  font-weight: 400;
  transition: color .2s;
  border-bottom: 2px solid transparent;
}

.primary-nav ul li a:hover,
.primary-nav ul li.current-menu-item a,
.primary-nav ul li.current-category-ancestor a {
  color: var(--white);
  border-bottom-color: var(--orange);
}

/* ============================================================
   HOMEPAGE — HERO ASYMÉTRIQUE
   ============================================================ */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 0.5px solid var(--border);
  background: var(--white);
}

/* Featured article — left */
.hero__featured {
  padding: 36px 28px;
  border-right: 0.5px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero__featured .cat-label { margin-bottom: 14px; }

.hero__featured h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--anthracite);
  margin-bottom: 14px;
}

.hero__featured h2 span { color: var(--orange); }

.hero__featured .excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 360px;
}

.hero__featured .hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-primary {
  display: inline-block;
  background: var(--anthracite);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 4px;
  letter-spacing: 0.02em;
  transition: background .2s;
}

.btn-primary:hover {
  background: #2D2D2D;
  color: var(--white);
}

/* Secondary articles — right */
.hero__secondary {
  display: flex;
  flex-direction: column;
}

.hero__secondary-item {
  padding: 22px 24px;
  border-bottom: 0.5px solid var(--border);
  flex: 1;
  transition: background .2s;
}

.hero__secondary-item:last-child {
  border-bottom: none;
  background: var(--bg-secondary);
}

.hero__secondary-item:hover { background: var(--bg-secondary); }

.hero__secondary-item h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--anthracite);
  line-height: 1.4;
  margin: 8px 0 8px;
}

/* ============================================================
   LABELS / CATÉGORIES
   ============================================================ */

.cat-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

.cat-copropriete { color: var(--copro-text); background: var(--copro-bg); }
.cat-assurance   { color: var(--assur-text); background: var(--assur-bg); }
.cat-amo         { color: var(--amo-text);   background: var(--amo-bg); }
.cat-default     { color: var(--text-muted); background: var(--bg-secondary); }

.read-time {
  font-size: 10px;
  color: var(--text-hint);
}

/* ============================================================
   SECTION : GRILLE MAGAZINE
   ============================================================ */

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
}

.section-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-hint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-link {
  font-size: 11px;
  color: var(--anthracite);
  border-bottom: 1px solid var(--anthracite);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}

.section-link:hover {
  color: var(--orange);
  border-color: var(--orange);
}

/* Magazine grid : 1 big left + 3 stacked right */
.magazine-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  border: 0.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.magazine-grid__featured {
  padding: 24px;
  border-right: 0.5px solid var(--border);
}

.magazine-grid__featured .post-thumb {
  width: 100%;
  height: 140px;
  background: var(--anthracite);
  border-radius: 6px;
  margin-bottom: 18px;
  overflow: hidden;
  position: relative;
}

.magazine-grid__featured .post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.magazine-grid__featured .post-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: var(--anthracite);
  display: flex;
  align-items: flex-end;
  padding: 12px;
}

.magazine-grid__featured .post-thumb-placeholder span {
  font-size: 10px;
  color: #4B5563;
}

.magazine-grid__featured h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--anthracite);
  margin: 10px 0 10px;
}

.magazine-grid__featured .excerpt {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.65;
}

.author-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.author-avatar {
  width: 24px;
  height: 24px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.author-line span {
  font-size: 10px;
  color: var(--text-hint);
}

/* Right stack */
.magazine-grid__stack {
  display: flex;
  flex-direction: column;
}

.magazine-grid__item {
  padding: 16px 20px;
  border-bottom: 0.5px solid var(--border);
  transition: background .2s;
  cursor: pointer;
}

.magazine-grid__item:last-child { border-bottom: none; }
.magazine-grid__item:hover { background: var(--bg-warm); }

.magazine-grid__item h4 {
  font-size: 12px;
  font-weight: 600;
  color: var(--anthracite);
  line-height: 1.4;
  margin: 6px 0 6px;
}

/* ============================================================
   ARTICLES LIST (archives)
   ============================================================ */

.articles-section {
  padding: 36px 0;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.article-card {
  border: 0.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  transition: border-color .2s;
}

.article-card:hover { border-color: #C4C2BC; }

.article-card__thumb {
  height: 120px;
  background: var(--anthracite);
  overflow: hidden;
}

.article-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity .3s;
}

.article-card:hover .article-card__thumb img { opacity: 1; }

.article-card__body { padding: 16px; }

.article-card__body h3 {
  font-size: 13px;
  font-weight: 600;
  color: var(--anthracite);
  line-height: 1.4;
  margin: 8px 0 8px;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */

.newsletter-section {
  background: var(--white);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 32px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.newsletter-section__text h2 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--anthracite);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.newsletter-section__text p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 380px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.newsletter-form input[type="email"] {
  border: 0.5px solid var(--border);
  background: var(--bg-warm);
  border-radius: 4px;
  padding: 9px 14px;
  font-size: 12px;
  color: var(--text);
  font-family: var(--font-sans);
  width: 220px;
  outline: none;
  transition: border-color .2s;
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--anthracite);
}

.newsletter-form input[type="email"]::placeholder {
  color: var(--text-hint);
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  font-family: var(--font-sans);
  transition: background .2s;
  white-space: nowrap;
}

.btn-orange:hover { background: #EA6C0A; }

.newsletter-form .nl-note {
  font-size: 10px;
  color: var(--text-hint);
  margin-top: 6px;
}

/* ============================================================
   SINGLE ARTICLE
   ============================================================ */

.single-header {
  background: var(--white);
  padding: 40px 0 32px;
  border-bottom: 0.5px solid var(--border);
}

.single-header .cat-label { margin-bottom: 16px; }

.single-header h1 {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--anthracite);
  margin-bottom: 16px;
  max-width: 680px;
}

.single-header .post-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: var(--text-hint);
}

.single-header .post-meta .author-avatar { width: 28px; height: 28px; font-size: 10px; }

.single-content {
  max-width: 680px;
  padding: 36px 0 48px;
}

.single-content p { margin-bottom: 1.4rem; font-size: 16px; line-height: 1.8; color: #2D2D2D; }
.single-content h2 { font-family: var(--font-serif); font-size: 22px; font-weight: 700; margin: 2rem 0 1rem; letter-spacing: -0.01em; }
.single-content h3 { font-size: 17px; font-weight: 600; margin: 1.6rem 0 0.8rem; }
.single-content ul, .single-content ol { margin: 0 0 1.4rem 1.5rem; }
.single-content ul { list-style: disc; }
.single-content ol { list-style: decimal; }
.single-content li { margin-bottom: 0.4rem; font-size: 16px; line-height: 1.7; }
.single-content blockquote {
  border-left: 3px solid var(--orange);
  padding: 14px 20px;
  margin: 1.8rem 0;
  background: var(--orange-light);
  border-radius: 0 6px 6px 0;
  font-style: italic;
  color: #4B2A0E;
}
.single-content a { color: var(--orange); border-bottom: 1px solid transparent; transition: border-color .2s; }
.single-content a:hover { border-bottom-color: var(--orange); }
.single-content strong { font-weight: 600; color: var(--anthracite); }
.single-content .callout {
  border: 0.5px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px;
  background: var(--bg-warm);
  margin: 2rem 0;
}
.single-content .callout-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

/* ── Barre de progression lecture ──────────────────────────── */
#gc-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--orange);
  z-index: 9999;
  transition: width 0.1s linear;
  pointer-events: none;
}


/* ── Layout article : contenu + sidebar ─────────────────────── */
.single-hero-img {
  padding-top: 28px;
  border-radius: 8px;
  overflow: hidden;
  max-height: 420px;
}
.single-hero-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.single-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
  padding-top: 32px;
  padding-bottom: 32px;
}

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


/* ── Sommaire flottant ──────────────────────────────────────── */
.single-sidebar {
  position: sticky;
  top: 90px;
}

.toc-widget {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 20px 16px;
}

.toc-widget__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

#gc-toc-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#gc-toc-nav li {
  border-left: 2px solid var(--border);
  margin-bottom: 2px;
  transition: border-color 0.2s;
}

#gc-toc-nav a {
  display: block;
  padding: 6px 12px;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s;
}

#gc-toc-nav a:hover {
  color: var(--anthracite);
}

#gc-toc-nav a.toc-active {
  color: var(--orange);
  font-weight: 600;
}

#gc-toc-nav li:has(a.toc-active) {
  border-left-color: var(--orange);
}


/* ── Boîte auteur ───────────────────────────────────────────── */
.author-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  margin: 32px 0 24px;
}

.author-box__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-serif);
}

.author-box__name {
  font-weight: 700;
  font-size: 15px;
  color: var(--anthracite);
  margin-bottom: 6px;
}

.author-box__bio {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 10px;
}

.author-box__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
}

.author-box__link:hover {
  text-decoration: underline;
}


/* ── Navigation précédent / suivant ────────────────────────── */
.post-navigation {
  border-top: 0.5px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.post-navigation a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.post-navigation a:hover {
  color: var(--orange);
}


/* ── Articles similaires ────────────────────────────────────── */
.related-section {
  background: var(--bg-secondary);
  padding: 52px 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .related-grid { grid-template-columns: 1fr; }
}

.related-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.15s, box-shadow 0.15s;
}

.related-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

.related-card__thumb {
  display: block;
  height: 160px;
  overflow: hidden;
}

.related-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card__body {
  padding: 16px 18px 20px;
}

.related-card__body h3 {
  font-size: 15px;
  font-family: var(--font-serif);
  margin: 8px 0 8px;
  line-height: 1.4;
}

.related-card__body h3 a {
  color: var(--anthracite);
  text-decoration: none;
}

.related-card__body h3 a:hover {
  color: var(--orange);
}


/* ── CTA Consultation ───────────────────────────────────────── */
.cta-consultation {
  background: var(--orange-light);
  border-left: 3px solid var(--orange);
  border-radius: 0 8px 8px 0;
  padding: 24px 28px;
  margin: 2.5rem 0;
}
.cta-consultation__title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--anthracite);
  margin-bottom: 8px;
}
.cta-consultation p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.cta-consultation .btn-primary {
  display: inline-block;
  padding: 10px 20px;
  font-size: 13px;
}

/* ── GSelect CTA Affilié ─────────────────────────────────── */
.gselect-cta {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-left: 4px solid #2563EB;
  border-radius: 8px;
  padding: 24px 28px;
  margin: 2.5rem 0;
}
.gselect-cta__label {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--anthracite);
  margin-bottom: 10px;
}
.gselect-cta__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}
.gselect-cta__btn {
  display: inline-block;
  background: #2563EB;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.18s;
  margin-bottom: 12px;
}
.gselect-cta__btn:hover {
  background: #1D4ED8;
  color: #fff;
}
.gselect-cta__note {
  font-size: 12px;
  color: var(--text-hint);
  margin: 0;
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  background: var(--anthracite);
  padding: 28px 24px;
}
.stats-band__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stats-band__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 36px;
  text-align: center;
}
.stats-band__number {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}
.stats-band__label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.stats-band__sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .stats-band__inner { gap: 16px; }
  .stats-band__sep { display: none; }
  .stats-band__item { padding: 0 16px; }
}


/* ============================================================
   THÉMATIQUES
   ============================================================ */
.thematiques-section {
  padding: 60px 0;
  background: var(--bg-secondary);
}
.thematiques-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.theme-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  border: 1px solid transparent;
}
.theme-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}
.theme-card__icon {
  font-size: 28px;
  margin-bottom: 16px;
  line-height: 1;
}
.theme-card__title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}
.theme-card__desc {
  font-size: 14px;
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 20px;
}
.theme-card__cta {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Variantes couleur par thématique */
.theme-copro {
  background: #FFF0E6;
  border-color: #F5D5C0;
}
.theme-copro .theme-card__title { color: #C2410C; }
.theme-copro .theme-card__desc  { color: #7C3010; }
.theme-copro .theme-card__cta   { color: #C2410C; }

.theme-assur {
  background: #E6F1FF;
  border-color: #BFDBFE;
}
.theme-assur .theme-card__title { color: #1D4ED8; }
.theme-assur .theme-card__desc  { color: #1e3a8a; }
.theme-assur .theme-card__cta   { color: #1D4ED8; }

.theme-amo {
  background: #ECFDF5;
  border-color: #A7F3D0;
}
.theme-amo .theme-card__title { color: #065F46; }
.theme-amo .theme-card__desc  { color: #064e3b; }
.theme-amo .theme-card__cta   { color: #065F46; }

@media (max-width: 768px) {
  .thematiques-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   CITATION ÉDITORIALE
   ============================================================ */
.editorial-quote {
  background: var(--anthracite);
  padding: 56px 24px;
  margin: 0;
  text-align: center;
}
.editorial-quote__text {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 30px);
  color: var(--white);
  font-style: italic;
  line-height: 1.5;
  max-width: 760px;
  margin: 0 auto 16px;
}
.editorial-quote__author {
  font-size: 13px;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 600;
}


/* ============================================================
   HERO — mise à jour : miniatures dans secondaires
   ============================================================ */
.hero__secondary-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.hero__secondary-thumb {
  width: 90px;
  height: 68px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
}
.hero__secondary-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__secondary-body { flex: 1; }


/* ============================================================
   MAGAZINE GRID — miniatures dans petits items
   ============================================================ */
.magazine-grid__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.magazine-grid__item:last-child { border-bottom: none; }
.magazine-grid__item-thumb {
  width: 80px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 5px;
  overflow: hidden;
}
.magazine-grid__item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.magazine-grid__item-body { flex: 1; }


/* ============================================================
   COMPOSANTS ARTICLES — Pull quote
   ============================================================ */
/*
  Usage dans un article :
  <blockquote class="pull-quote">
    <p>Votre texte mis en valeur ici.</p>
  </blockquote>
*/
.pull-quote {
  border: none;
  margin: 2.5rem 0;
  padding: 0;
  position: relative;
}
.pull-quote::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 80px;
  color: var(--orange);
  line-height: 0.6;
  display: block;
  margin-bottom: 12px;
}
.pull-quote p {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2.2vw, 21px);
  font-style: italic;
  line-height: 1.55;
  color: var(--anthracite);
  border-left: 3px solid var(--orange);
  padding-left: 20px;
  margin: 0;
}


/* ============================================================
   COMPOSANTS ARTICLES — Timeline verticale
   ============================================================ */
/*
  Usage :
  <ol class="gc-timeline">
    <li class="gc-timeline__step">
      <span class="gc-timeline__num">1</span>
      <div>
        <strong>Titre de l'étape</strong>
        <p>Description.</p>
      </div>
    </li>
  </ol>
*/
.gc-timeline {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  position: relative;
}
.gc-timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.gc-timeline__step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
  position: relative;
}
.gc-timeline__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.gc-timeline__step div { padding-top: 6px; }
.gc-timeline__step strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--anthracite);
  margin-bottom: 4px;
}
.gc-timeline__step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}


/* ============================================================
   COMPOSANTS ARTICLES — Tableau des garanties
   ============================================================ */
/*
  Usage :
  <div class="gc-table-wrap">
    <table class="gc-table">...</table>
  </div>
*/
.gc-table-wrap {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.gc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.gc-table th {
  background: var(--anthracite);
  color: white;
  padding: 12px 16px;
  text-align: left;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}
.gc-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.5;
}
.gc-table tr:last-child td { border-bottom: none; }
.gc-table tr:nth-child(even) td { background: var(--bg-secondary); }
.gc-table td:first-child { font-weight: 600; color: var(--anthracite); }
.gc-table .tag-orange { color: var(--orange); font-weight: 700; }


/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--anthracite);
  padding: 0;
}

.footer-main {
  padding: 36px 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  border-bottom: 0.5px solid #2D2D2D;
}

.footer-brand .site-title-footer {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 12px;
  color: #6B7280;
  line-height: 1.65;
  max-width: 240px;
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4B5563;
  margin-bottom: 14px;
}

.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 12px; color: #6B7280; transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom span { font-size: 10px; color: #4B5563; }

.footer-social {
  display: flex;
  gap: 18px;
}

.footer-social a { font-size: 10px; color: #4B5563; transition: color .2s; }
.footer-social a:hover { color: var(--white); }

/* ============================================================
   ARCHIVE / CATEGORY PAGE
   ============================================================ */

/* ── En-tête ─────────────────────────────────────────────── */
.archive-header {
  background: var(--white);
  padding: 40px 0 32px;
  border-bottom: 0.5px solid var(--border);
  margin-bottom: 0;
}

.archive-header__inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.archive-header__icon {
  font-size: 42px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 4px;
}

.archive-header__text { flex: 1; }

.archive-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--anthracite);
  margin-bottom: 8px;
  line-height: 1.2;
}

.archive-header__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 14px;
}

.archive-header__count {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-hint);
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 4px 12px;
}

/* Accent couleur par catégorie */
.archive-header--copropriete            { border-bottom-color: var(--copro-text); }
.archive-header--assurance-construction { border-bottom-color: var(--assur-text); }
.archive-header--amo                    { border-bottom-color: var(--amo-text); }

/* ── Corps ────────────────────────────────────────────────── */
.archive-body { padding: 40px 0 60px; }

/* ── Article mis en avant ─────────────────────────────────── */
.archive-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 0.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  margin-bottom: 40px;
}

.archive-featured__thumb {
  display: block;
  height: 380px;
  overflow: hidden;
  background: var(--anthracite);
}

.archive-featured__thumb--empty {
  background: var(--bg-secondary);
}

.archive-featured__thumb img {
  transition: transform 0.4s ease;
}

.archive-featured:hover .archive-featured__thumb img {
  transform: scale(1.03);
}

.archive-featured__body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.archive-featured__title {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--anthracite);
  margin-bottom: 4px;
}

.archive-featured__title a { color: inherit; }
.archive-featured__title a:hover { color: var(--orange); }

.archive-featured__excerpt {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

.archive-featured__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.archive-featured__cta {
  align-self: flex-start;
  margin-top: 8px;
}

/* ── Séparateur ───────────────────────────────────────────── */
.archive-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  color: var(--text-hint);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.archive-divider::before,
.archive-divider::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: var(--border);
}

/* ── Grille des articles ──────────────────────────────────── */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.archive-card {
  border: 0.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}

.archive-card:hover {
  border-color: #C4C2BC;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.archive-card__thumb {
  display: block;
  height: 190px;
  overflow: hidden;
  background: var(--anthracite);
  flex-shrink: 0;
}

.archive-card__thumb img {
  transition: transform 0.35s ease;
}

.archive-card:hover .archive-card__thumb img {
  transform: scale(1.04);
}

.archive-card__thumb-empty {
  width: 100%;
  height: 100%;
  background: var(--bg-secondary);
}

.archive-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.archive-card__title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--anthracite);
}

.archive-card__title a { color: inherit; }
.archive-card__title a:hover { color: var(--orange); }

.archive-card__excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

/* ── Pagination ───────────────────────────────────────────── */
.archive-pagination {
  text-align: center;
  padding: 12px 0;
}

.archive-empty {
  color: var(--text-muted);
  padding: 40px 0;
  font-size: 15px;
}

/* ============================================================
   PAGE CONSULTATION
   ============================================================ */

/* ============================================================
   PAGE CONSULTATION — FUNNEL
   ============================================================ */

/* ── Shared section header ────────────────────────────────── */
.consult-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.consult-section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--anthracite);
  margin: 8px 0 12px;
  line-height: 1.25;
}

.consult-section-header__sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Hero ─────────────────────────────────────────────────── */
.consult-hero {
  background: var(--anthracite);
  padding: 72px 0 64px;
}

.consult-hero__inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: center;
}

.consult-hero__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.consult-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

.consult-hero__lead {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 32px;
}

.consult-hero__ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.consult-hero__link {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consult-hero__link:hover { color: var(--white); }

.consult-hero__badge {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  overflow: hidden;
}

.consult-hero__badge-inner {
  padding: 22px 28px;
  border-bottom: 0.5px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.consult-hero__badge-inner:last-child { border-bottom: none; }

.consult-hero__badge-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.consult-hero__badge-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

/* ── Situations ───────────────────────────────────────────── */
.consult-situations {
  padding: 72px 0;
  background: var(--bg-warm);
}

.consult-situations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.consult-situation-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.consult-situation-card:hover {
  border-color: #C4C2BC;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.consult-situation-card__icon {
  font-size: 28px;
  margin-bottom: 14px;
  line-height: 1;
}

.consult-situation-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--anthracite);
  line-height: 1.4;
  margin-bottom: 8px;
}

.consult-situation-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Formules ─────────────────────────────────────────────── */
.consult-formules {
  padding: 72px 0;
  background: var(--bg-secondary);
}

.consult-formules__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 32px;
}

.consult-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.consult-card--featured {
  border-color: var(--orange);
  border-width: 1.5px;
  box-shadow: 0 8px 32px rgba(249,115,22,0.12);
}

.consult-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.consult-card__header { display: flex; flex-direction: column; gap: 8px; }

.consult-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-hint);
}

.consult-card__price { display: flex; align-items: baseline; gap: 6px; }

.consult-card__amount {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  color: var(--anthracite);
  letter-spacing: -0.02em;
}

.consult-card__period {
  font-size: 13px;
  color: var(--text-hint);
}

.consult-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.consult-card__includes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.consult-card__includes li {
  font-size: 13px;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}

.consult-card__includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
  font-size: 12px;
}

.consult-card__btn {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.18s;
}

.btn-outline {
  border: 1.5px solid var(--anthracite);
  color: var(--anthracite);
  background: transparent;
}

.btn-outline:hover {
  background: var(--anthracite);
  color: var(--white);
}

.consult-formules__note {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  font-size: 12px;
  color: var(--text-hint);
  line-height: 1.6;
  padding: 16px 20px;
  border: 0.5px solid var(--border);
  border-radius: 6px;
  background: var(--white);
}

/* ── Process ──────────────────────────────────────────────── */
.consult-process {
  padding: 72px 0;
  background: var(--white);
}

.consult-process__steps {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.consult-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 0.5px solid var(--border);
}

.consult-step:last-child { border-bottom: none; }

.consult-step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.consult-step__body h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--anthracite);
  margin-bottom: 8px;
  padding-top: 10px;
}

.consult-step__body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Crédibilité ──────────────────────────────────────────── */
.consult-cred {
  background: var(--anthracite);
  padding: 64px 0;
}

.consult-cred__inner {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 36px;
  align-items: start;
  max-width: 720px;
}

.consult-cred__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}

.consult-cred__text h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.consult-cred__text p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 12px;
}

.consult-cred__link {
  display: inline-block;
  font-size: 13px;
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 4px;
}

.consult-cred__link:hover { color: #fb923c; }

/* ── FAQ ──────────────────────────────────────────────────── */
.consult-faq {
  padding: 72px 0;
  background: var(--bg-warm);
}

.consult-faq__list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.consult-faq__item {
  border-bottom: 0.5px solid var(--border);
}

.consult-faq__item:first-child { border-top: 0.5px solid var(--border); }

.consult-faq__question {
  list-style: none;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--anthracite);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.consult-faq__question::-webkit-details-marker { display: none; }

.consult-faq__question::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--text-hint);
  flex-shrink: 0;
  line-height: 1;
}

.consult-faq__item[open] .consult-faq__question::after {
  content: '−';
}

.consult-faq__answer {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  padding-bottom: 20px;
}

/* ── Formulaire de contact ────────────────────────────────── */
.consult-contact {
  padding: 72px 0 80px;
  background: var(--bg-secondary);
}

.consult-contact__wrap {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 40px 44px;
}

.consult-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.consult-form__row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.consult-form__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--anthracite);
}

.consult-form__hint {
  font-weight: 400;
  color: var(--text-hint);
}

.consult-form__input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
}

.consult-form__input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
}

.consult-form__select { appearance: none; cursor: pointer; }

.consult-form__textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}

.consult-form__submit {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  cursor: pointer;
  border: none;
}

.consult-form__mention {
  text-align: center;
  font-size: 12px;
  color: var(--text-hint);
  margin: 0;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .consult-hero__inner { grid-template-columns: 1fr; }
  .consult-hero__badge { flex-direction: row; }
  .consult-hero__badge-inner { flex: 1; }
  .consult-formules__grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .consult-card--featured { margin-top: 12px; }
}

@media (max-width: 768px) {
  .consult-situations__grid { grid-template-columns: 1fr 1fr; }
  .consult-hero { padding: 48px 0; }
  .consult-contact__wrap { padding: 28px 20px; }
  .consult-cred__inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .consult-situations__grid { grid-template-columns: 1fr; }
  .consult-hero__badge { flex-direction: column; }
}

/* ============================================================
   UTILITIES
   ============================================================ */

.section-padding { padding: 36px 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; }
  .hero__featured { border-right: none; border-bottom: 0.5px solid var(--border); padding: 24px 20px; }
  .hero__featured h2 { font-size: 22px; }
  .hero__secondary-item { padding: 18px 20px; }

  .magazine-grid { grid-template-columns: 1fr; }
  .magazine-grid__featured { border-right: none; border-bottom: 0.5px solid var(--border); }

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

  .newsletter-section { flex-direction: column; align-items: flex-start; gap: 20px; padding: 24px 20px; }
  .newsletter-form { width: 100%; }
  .newsletter-form input[type="email"] { flex: 1; width: auto; }

  .footer-main { grid-template-columns: 1fr; gap: 28px; padding: 28px 20px; }

  /* Archive mobile */
  .archive-header__inner { flex-direction: column; gap: 10px; }
  .archive-header__icon { font-size: 32px; }
  .archive-featured { grid-template-columns: 1fr; }
  .archive-featured__thumb { height: 220px; }
  .archive-featured__body { padding: 24px 20px; }
  .archive-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  .single-header h1 { font-size: 26px; }
  .single-content { font-size: 15px; }

  .primary-nav { overflow-x: auto; }
  .primary-nav ul { white-space: nowrap; }

  .header-topbar__tagline { display: none; }

  .container { padding: 0 16px; }
}

@media (max-width: 480px) {
  .site-title { font-size: 20px; }
  .hero__featured h2 { font-size: 20px; }
  .articles-grid { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: 1fr; }
  .archive-card__thumb { height: 160px; }
}
