/* =========================================================
   LE RESIDENZE DELL'ALLORO — BLOG STYLESHEET (assets/blog.css)
   Foglio di stile CONDIVISO dalle pagine del blog.

   Le sezioni 1-9 sono estratte 1:1 dal design system di
   index.html (stesse variabili --ink/--paper/--gold/--bone,
   stessi font Fraunces + Inter, stessa nav/mobile-menu/footer,
   stessi componenti .btn / .chapter / .eyebrow / .display /
   .lead / .link-u / .reveal). Nessuna invenzione: stessa mood
   board oro/verde-oliva del sito, campagna elegante.

   Le pagine blog NON includono selettore lingua (.nav-lang /
   .lang-switch) né cookie banner: nessun servizio terzo
   (Google Translate, Google Maps) viene caricato da queste
   pagine — il footer rimanda direttamente a index.html per
   Privacy / Cookie / Termini. Niente Lenis/GSAP/Flatpickr:
   le pagine blog usano solo IntersectionObserver vanilla per
   il reveal-on-scroll, per restare leggere.

   La sezione 10 contiene i componenti NUOVI, specifici del
   blog (griglia magazine, card articolo, hero tipografico
   articolo, prose, callout, box CTA soggiorno, correlati,
   pillole categoria/filtri, figure con credito Wikimedia).
========================================================= */

/* ===== 1. VARIABILI (identiche a index.html) ===== */
:root {
  --ink: #141311;
  --ink-80: rgba(20, 19, 17, 0.82);
  --ink-60: rgba(20, 19, 17, 0.58);
  --ink-40: rgba(20, 19, 17, 0.38);
  --ink-20: rgba(20, 19, 17, 0.18);
  --ink-10: rgba(20, 19, 17, 0.10);

  --paper: #F4EEE3;
  --paper-2: #EDE4D3;
  --paper-3: #E3D7C0;
  --bone: #FAF6EC;
  --bone-2: #F0EAD6;

  --gold: #A37E3F;
  --gold-2: #8A682F;
  --gold-soft: #E8C98A;

  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, system-ui, sans-serif;

  --max: 1480px;
  --gutter: clamp(20px, 4vw, 64px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===== 2. RESET + TIPOGRAFIA BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0 !important; padding: 0 !important; max-width: 100vw !important; width: 100% !important; overflow-x: hidden !important; }
body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
main { display: block; width: 100%; }
img { max-width: 100%; display: block; background: var(--paper-3); }
img.broken {
  background: linear-gradient(135deg, var(--paper-2) 0%, var(--paper-3) 100%);
  position: relative; min-height: 160px;
}
img.broken::after {
  content: "Le Residenze dell'Alloro";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-style: italic; color: var(--ink-40); font-size: 14px;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
::selection { background: var(--gold); color: var(--bone); }

.link-u { position: relative; display: inline-block; padding-bottom: 2px; }
.link-u::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform 0.5s var(--ease);
}
.link-u:hover::after { transform: scaleX(1); transform-origin: left; }

/* ===== 3. NAV (identica al sito, senza selettore lingua) ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px var(--gutter);
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(244, 238, 227, 0.86);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--ink-10);
  padding: 14px var(--gutter);
}
.nav.scrolled .nav-brand small { opacity: 0.55; }

.nav-brand {
  font-family: var(--font-display); font-weight: 400; font-size: 18px;
  letter-spacing: 0.16em; text-transform: uppercase;
  display: flex; flex-direction: column; line-height: 1.1;
}
.nav-brand small {
  font-size: 9px; letter-spacing: 0.32em; opacity: 0.7; margin-top: 3px;
  font-family: var(--font-sans); transition: opacity 0.3s var(--ease);
}
.nav-menu { display: flex; gap: 36px; list-style: none; }
.nav-menu a { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; }
.nav-menu a.current { color: var(--gold-2); }
.nav-cta {
  padding: 12px 22px; border: 1px solid currentColor; border-radius: 999px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.4s var(--ease);
  background: var(--ink); color: var(--bone); border-color: var(--ink);
}
.nav-cta:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-2px); }

.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 10px; min-width: 44px; min-height: 44px; align-items: flex-end; justify-content: center; }
.nav-burger span { width: 22px; height: 1px; background: currentColor; display: block; transition: transform 0.4s var(--ease), opacity 0.3s; }
@media (max-width: 900px) {
  .nav-menu { display: none; }
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
  .nav { padding: 16px var(--gutter); }
  .nav.scrolled { padding: 10px var(--gutter); }
  .nav-brand { font-size: 15px; }
  .nav-brand small { font-size: 8px; }
}

/* ===== 4. MOBILE MENU (overlay pieno, come index.html) ===== */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--ink); color: var(--bone);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display); font-size: clamp(2rem, 7vw, 3.5rem); font-weight: 300; font-style: italic;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.mobile-menu.open a { opacity: 1; transform: translateY(0); }
.mobile-menu.open a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.18s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.26s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.34s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.42s; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.50s; }
.mobile-menu.open a:nth-child(7) { transition-delay: 0.58s; }
.menu-open .nav-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
.menu-open .nav-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
body.menu-open { overflow: hidden; }

/* ===== 5. LAYOUT BASE (identica a index.html) ===== */
section { position: relative; padding: clamp(80px, 12vw, 180px) 0; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

.chapter { display: flex; align-items: baseline; gap: 24px; margin-bottom: 32px; }
.chapter-num { font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: 14px; color: var(--gold); }
.eyebrow {
  font-family: var(--font-sans); font-size: 11px; font-weight: 500; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--ink-60);
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; display: inline-block; }

.display {
  font-family: var(--font-display); font-weight: 300; letter-spacing: -0.02em; line-height: 0.98;
  font-variation-settings: "opsz" 144;
}
.display em { font-style: italic; font-weight: 300; color: var(--gold); }
.h1 { font-size: clamp(2.6rem, 6.6vw, 5.6rem); }
.h2 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
.h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }

.lead {
  font-family: var(--font-display); font-weight: 300; font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  line-height: 1.5; color: var(--ink-80); font-variation-settings: "opsz" 48; max-width: 62ch;
}
.body-text { color: var(--ink-80); max-width: 62ch; }

/* ===== 6. BREADCRUMB ===== */
.breadcrumb {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-60); margin-bottom: 28px; transition: color 0.3s var(--ease);
}
.breadcrumb .arr { width: 16px; height: 1px; background: currentColor; position: relative; transition: width 0.3s var(--ease); }
.breadcrumb .arr::before { content: ""; position: absolute; left: 0; top: -3px; width: 6px; height: 6px; border-left: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg); }
.breadcrumb:hover { color: var(--gold-2); }
.breadcrumb:hover .arr { width: 22px; }

/* ===== 7. BOTTONI (identici a index.html) ===== */
.btn {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 18px 32px; background: var(--ink); color: var(--bone); border-radius: 999px;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
  position: relative; overflow: hidden;
}
.btn:hover { background: var(--gold); transform: translateY(-2px); }
.btn .arrow { width: 20px; height: 1px; background: currentColor; position: relative; transition: width 0.4s var(--ease); }
.btn:hover .arrow { width: 28px; }
.btn .arrow::after {
  content: ""; position: absolute; right: 0; top: -3px; width: 6px; height: 6px;
  border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: rotate(45deg);
}
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bone); }
.btn-on-dark { background: var(--gold); color: var(--ink); }
.btn-on-dark:hover { background: var(--bone); }
.btn-on-dark .arrow::after, .btn-on-dark .arrow { background: currentColor; }

/* ===== 8. REVEAL ON SCROLL (identico a index.html) ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.55s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger, .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ===== 9. FOOTER + TO-TOP (identico a index.html) ===== */
footer { background: var(--ink); color: var(--bone); padding: 80px 0 32px; overflow: hidden; }
.footer-meta {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: clamp(32px, 5vw, 80px);
  padding: 0 var(--gutter); font-size: 14px; color: rgba(250, 246, 236, 0.75);
}
.footer-meta a:hover { color: var(--gold-soft); }
.footer-meta h4 {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(250, 246, 236, 0.45); margin-bottom: 12px; font-weight: 500;
}
.footer-meta a { display: block; margin-bottom: 6px; }
.footer-legal {
  margin-top: 48px; padding: 20px var(--gutter) 0; border-top: 1px solid rgba(250, 246, 236, 0.12);
  display: flex; justify-content: center; align-items: center; gap: 28px; flex-wrap: wrap;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(250, 246, 236, 0.7);
}
.footer-legal a { color: rgba(250, 246, 236, 0.7); text-decoration: none; transition: color .2s ease; border-bottom: 1px solid transparent; padding-bottom: 2px; }
.footer-legal a:hover { color: var(--gold-soft); border-bottom-color: var(--gold-soft); }
.footer-legal .sep { width: 3px; height: 3px; background: rgba(250, 246, 236, 0.3); border-radius: 50%; }
.footer-bottom {
  margin-top: 20px; padding: 20px var(--gutter) 0; border-top: 1px solid rgba(250, 246, 236, 0.08);
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(250, 246, 236, 0.45); flex-wrap: wrap;
}
@media (max-width: 700px) {
  .footer-meta { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-legal { gap: 14px; font-size: 10px; letter-spacing: 0.12em; }
  .footer-legal .sep { display: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

.to-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--ink); color: var(--bone);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transform: translateY(16px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), background 0.3s var(--ease);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
}
.to-top.in { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { background: var(--gold); }

/* =========================================================
   10. COMPONENTI BLOG (nuovi)
========================================================= */

/* --- Pillola categoria (card, hero articolo) --- */
.blog-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-2); background: var(--paper-2); border: 1px solid var(--ink-10);
  border-radius: 999px; padding: 7px 14px;
}

/* --- Header pagina blog.html --- */
.blog-hero { padding: clamp(140px, 18vw, 190px) 0 8px; background: var(--paper); }
.blog-hero .lead { margin-top: 20px; }

/* --- Filtri categoria (pillole cliccabili, JS vanilla) --- */
.blog-filters { display: flex; flex-wrap: wrap; gap: 10px; margin: 44px 0 8px; }
.blog-filters button {
  font-family: var(--font-sans); font-size: 12px; font-weight: 500; letter-spacing: 0.03em;
  color: var(--ink-80); background: var(--bone); border: 1px solid var(--ink-10); border-radius: 999px;
  padding: 10px 18px; transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.blog-filters button:hover { border-color: var(--gold); color: var(--gold-2); }
.blog-filters button.active { background: var(--ink); color: var(--bone); border-color: var(--ink); }

/* --- Featured article (card grande in evidenza) --- */
.blog-featured {
  display: block; position: relative; overflow: hidden;
  background: var(--ink); color: var(--bone); border-radius: 2px;
  padding: clamp(36px, 5vw, 64px);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.blog-featured::before {
  content: ''; position: absolute; right: -160px; top: -160px; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(163,126,63,0.28), transparent 68%);
}
.blog-featured:hover { transform: translateY(-4px); box-shadow: 0 40px 80px -30px rgba(20,19,17,0.45); }
.blog-featured .kicker {
  position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-soft);
  margin-bottom: 24px;
}
.blog-featured h2 {
  position: relative; z-index: 1;
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: 1.08; letter-spacing: -0.02em;
  max-width: 19ch; color: var(--bone);
}
.blog-featured h2 em { font-style: italic; color: var(--gold-soft); font-weight: 300; }
.blog-featured .excerpt { position: relative; z-index: 1; margin-top: 18px; max-width: 58ch; font-size: 15.5px; color: rgba(250,246,236,0.82); line-height: 1.6; }
.blog-featured .meta { position: relative; z-index: 1; display: flex; gap: 16px; flex-wrap: wrap; margin-top: 26px; font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(250,246,236,0.6); }
.blog-featured .go { position: relative; z-index: 1; margin-top: 28px; display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500; color: var(--bone); border-bottom: 1px solid rgba(250,246,236,0.4); padding-bottom: 4px; transition: gap 0.3s var(--ease), border-color 0.3s var(--ease); }
.blog-featured .go::after { content: ''; width: 14px; height: 1px; background: currentColor; position: relative; margin-left: 8px; transition: width 0.3s var(--ease); }
.blog-featured:hover .go::after { width: 22px; }

/* --- Griglia magazine + card articolo --- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  display: flex; flex-direction: column;
  background: var(--bone); border: 1px solid var(--ink-10); border-radius: 2px; padding: 30px 28px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.3s var(--ease);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(20,19,17,0.22); border-color: var(--ink-20); }
.blog-card .blog-pill { align-self: flex-start; margin-bottom: 16px; }
.blog-card h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(19px, 1.9vw, 23px); color: var(--ink); line-height: 1.22; letter-spacing: -0.01em; }
.blog-card .excerpt {
  margin-top: 12px; color: var(--ink-60); font-size: 14px; line-height: 1.55; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card .blog-meta { margin-top: 16px; display: flex; gap: 12px; flex-wrap: wrap; font-size: 11px; color: var(--ink-40); letter-spacing: 0.05em; }
.blog-card .go { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--ink-10); font-size: 12.5px; font-weight: 500; color: var(--gold-2); display: inline-flex; align-items: center; gap: 8px; transition: gap 0.3s var(--ease); }
.blog-card .go::after { content: ''; width: 12px; height: 1px; background: currentColor; margin-left: 6px; transition: width 0.3s var(--ease); }
.blog-card:hover .go::after { width: 20px; }
.blog-card[hidden] { display: none; }

@media (max-width: 1000px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

/* --- Hero tipografico (pagina articolo singolo, senza foto) --- */
.article-hero { padding: clamp(150px, 20vw, 200px) 0 48px; background: var(--paper); }
.article-hero .blog-pill { margin-bottom: 26px; }
.article-hero h1 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(2.3rem, 5.4vw, 4.2rem); line-height: 1.06; letter-spacing: -0.025em;
  color: var(--ink); max-width: 19ch;
}
.article-hero h1 em { font-style: italic; color: var(--gold); font-weight: 300; }
.article-hero .subtitle { margin-top: 22px; font-family: var(--font-display); font-weight: 300; font-size: clamp(1.05rem, 1.3vw, 1.25rem); color: var(--ink-80); max-width: 62ch; line-height: 1.55; }
.article-meta { margin-top: 30px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-60); }
.article-meta .sep { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-40); }

/* --- Corpo articolo (prose) --- */
.article-body { padding: clamp(56px, 8vw, 90px) 0; }
.prose { max-width: 70ch; }
.prose p { font-size: 16px; line-height: 1.8; color: var(--ink-80); }
.prose p + p { margin-top: 20px; }
.prose h2 {
  font-family: var(--font-display); font-weight: 400; font-size: clamp(24px, 3vw, 32px);
  color: var(--ink); letter-spacing: -0.015em; margin-top: 48px; margin-bottom: 18px; line-height: 1.2;
}
.prose h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.prose ul { margin: 22px 0; padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
.prose li { font-size: 15.5px; color: var(--ink-80); line-height: 1.65; }
.prose strong { color: var(--ink); font-weight: 600; }

/* --- Callout (box evidenza dentro il testo) --- */
.callout { background: var(--paper-2); border-left: 3px solid var(--gold); padding: 18px 22px; border-radius: 2px; font-size: 14.5px; color: var(--ink-80); line-height: 1.65; margin: 32px 0; max-width: 70ch; }
.callout strong { color: var(--ink); }

/* --- Box CTA soggiorno (dentro / fine articolo) --- */
.blog-cta {
  margin: 48px 0; max-width: 70ch; position: relative; overflow: hidden;
  background: var(--ink); color: var(--bone); border-radius: 2px; padding: clamp(32px, 4vw, 44px);
}
.blog-cta::before { content: ''; position: absolute; right: -140px; top: -140px; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(163,126,63,0.28), transparent 68%); }
.blog-cta h4 { position: relative; z-index: 1; font-family: var(--font-display); font-weight: 400; font-size: clamp(21px, 2.4vw, 28px); color: var(--bone); letter-spacing: -0.015em; max-width: 24ch; }
.blog-cta p { position: relative; z-index: 1; margin-top: 12px; font-size: 14.5px; color: rgba(250,246,236,0.8); max-width: 48ch; line-height: 1.6; }
.blog-cta .actions { position: relative; z-index: 1; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 26px; }
.blog-cta .actions .link { font-size: 13.5px; font-weight: 500; color: var(--gold-soft); border-bottom: 1px solid rgba(232,201,138,0.4); padding-bottom: 3px; transition: color 0.3s var(--ease), border-color 0.3s var(--ease); }
.blog-cta .actions .link:hover { color: var(--bone); border-bottom-color: var(--bone); }

/* --- Articoli correlati --- */
.blog-related { padding: clamp(56px, 8vw, 90px) 0; background: var(--bone-2); border-top: 1px solid var(--ink-10); }
.blog-related .h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
.blog-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.blog-related-grid .blog-card { background: var(--paper); }
@media (max-width: 900px) { .blog-related-grid { grid-template-columns: 1fr; } }

@media (max-width: 900px) { .article-hero { padding-top: 160px; } }

/* --- Foto articolo (Wikimedia Commons, credito in didascalia) --- */
.article-figure { margin: 38px 0 8px; }
.article-figure img { width: 100%; height: auto; max-height: 520px; object-fit: cover; border-radius: 2px; display: block; }
.article-figure figcaption { margin-top: 10px; font-size: 12px; color: var(--ink-60); letter-spacing: 0.02em; }
.article-figure figcaption a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.prose .article-figure { margin: 34px 0; }
