/* =======================================================================
   AZURA THALASSO & VOYAGES — STYLES GLOBAUX
   Palette turquoise méditerranéen + or sable + crème
   Fonts : Cormorant Garamond (titres) + Inter (corps)
   Mobile-first — breakpoint 768px
   ======================================================================= */

:root {
  --primary: #3E8FA3;
  --primary-deep: #2D5E6B;
  --primary-glow: #5FB8C9;
  --accent: #B8DADA;
  --gold: #C9A961;
  --gold-deep: #9B7D3C;
  --bg: #F7F3EA;
  --bg-alt: #EFE8D8;
  --card: #FFFFFF;
  --text: #253339;
  --text-muted: #6A7D82;
  --border: #E0D8C5;
  --success: #5A8F6B;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(45, 94, 107, 0.08);
  --shadow-md: 0 6px 24px rgba(45, 94, 107, 0.12);
  --shadow-lg: 0 16px 48px rgba(45, 94, 107, 0.18);
  --gradient-hero: linear-gradient(135deg, rgba(62,143,163,0.88), rgba(45,94,107,0.78));
  --gradient-sand: linear-gradient(180deg, #F7F3EA 0%, #EFE8D8 100%);
  --gradient-primary: linear-gradient(135deg, #3E8FA3 0%, #5FB8C9 100%);
  --gradient-gold: linear-gradient(135deg, #C9A961 0%, #E3C37F 100%);
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --font-title: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--primary-deep);
  line-height: 1.2;
  margin: 0 0 16px 0;
}

h1 { font-size: 28px; }
h2 { font-size: 24px; }
h3 { font-size: 20px; }

p { margin: 0 0 16px 0; }

a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-deep); text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

ul, ol { padding-left: 24px; margin: 0 0 16px 0; }
li { margin-bottom: 6px; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================= HEADER ================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 234, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--primary-deep);
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: var(--font-title); font-size: 18px; font-weight: 700; color: var(--primary-deep); }
.logo-tagline { font-size: 11px; color: var(--text-muted); letter-spacing: 0.5px; }

.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  width: 26px;
  height: 3px;
  background: var(--primary-deep);
  border-radius: 3px;
  transition: all .3s;
}

.nav-links {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
}

.nav-links li { margin: 0; }

.nav-links a {
  display: block;
  padding: 12px 0;
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

.nav-links a:hover { color: var(--primary); text-decoration: none; }
.nav-links li:last-child a { border-bottom: none; }

/* ================= BOUTONS ================= */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--white); text-decoration: none; }

.btn-gold {
  background: var(--gradient-gold);
  color: var(--primary-deep);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--primary-deep); text-decoration: none; }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); text-decoration: none; }

.btn-block { display: block; width: 100%; }

.cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.hero-subtitle {
  font-size: 17px;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.95);
  font-weight: 400;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  font-size: 13px;
  color: var(--white);
  font-weight: 500;
}

.badge-gold {
  background: var(--gold);
  color: var(--primary-deep);
  border: none;
}

/* ================= SECTIONS ================= */
section { padding: 56px 0; }
section.tight { padding: 40px 0; }

.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title h2 { font-size: 28px; margin-bottom: 10px; }
.section-title p { color: var(--text-muted); max-width: 640px; margin: 0 auto; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
  font-weight: 600;
}

.bg-sand { background: var(--gradient-sand); }
.bg-alt { background: var(--bg-alt); }
.bg-white { background: var(--white); }
.bg-primary { background: var(--primary-deep); color: var(--white); }
.bg-primary h2, .bg-primary h3 { color: var(--white); }
.bg-primary p { color: rgba(255,255,255,0.88); }

/* ================= GRIDS ================= */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.feature-card {
  background: var(--card);
  padding: 28px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
  color: var(--primary-deep);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0;
}

/* ================= HÔTELS CARDS ================= */
.hotel-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.hotel-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.hotel-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.hotel-card:hover .hotel-image img { transform: scale(1.05); }

.hotel-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(37,51,57,0.4) 100%);
  z-index: 1;
}

.hotel-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background: var(--gold);
  color: var(--primary-deep);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hotel-body {
  padding: 26px 22px;
}

.hotel-body h3 { font-size: 22px; margin-bottom: 4px; }
.hotel-location {
  font-size: 13px;
  color: var(--gold-deep);
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 14px;
  display: block;
}

.hotel-features {
  list-style: none;
  padding: 0;
  margin: 18px 0 0 0;
}

.hotel-features li {
  padding: 8px 0 8px 26px;
  position: relative;
  color: var(--text);
  font-size: 14px;
}
.hotel-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--primary);
  font-weight: 700;
}

/* ================= STATS ================= */
.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}
.stat-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.stat-number {
  display: block;
  font-family: var(--font-title);
  font-size: 44px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.4;
}

/* ================= TÉMOIGNAGES ================= */
.testimonial-card {
  background: var(--card);
  padding: 26px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
}

.testimonial-stars { color: var(--gold); margin-bottom: 10px; font-size: 15px; letter-spacing: 2px; }
.testimonial-quote { font-style: italic; color: var(--text); line-height: 1.7; margin-bottom: 14px; }
.testimonial-author { font-weight: 600; color: var(--primary-deep); font-size: 14px; }
.testimonial-author small { display: block; color: var(--text-muted); font-weight: 400; }

/* ================= FAQ ================= */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--card);
  margin-bottom: 10px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  padding: 18px 22px;
  margin: 0;
  cursor: pointer;
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-question::after {
  content: '+';
  font-size: 24px;
  color: var(--primary);
  transition: transform .25s;
  flex-shrink: 0;
}
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer {
  display: none;
  padding: 0 22px 20px 22px;
  color: var(--text);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-answer { display: block; padding-top: 16px; }

/* ================= NEIGHBORS / VOISINES ================= */
.neighbors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.neighbor-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--primary-deep);
  font-weight: 500;
  transition: all .2s;
}
.neighbor-link:hover { background: var(--primary); color: white; transform: translateX(4px); text-decoration: none; }
.neighbor-distance { font-size: 13px; color: var(--text-muted); }
.neighbor-link:hover .neighbor-distance { color: rgba(255,255,255,0.85); }

/* ================= BREADCRUMB ================= */
.breadcrumb {
  padding: 14px 0;
  font-size: 13px;
  color: var(--text-muted);
  background: var(--bg-alt);
}
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumb li { margin: 0; }
.breadcrumb li:not(:last-child)::after { content: '›'; margin-left: 6px; color: var(--text-muted); }
.breadcrumb a { color: var(--primary); }

/* ================= FLOATING WHATSAPP ================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 1000;
  transition: transform .25s;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); text-decoration: none; }
.whatsapp-float svg { width: 32px; height: 32px; fill: white; }

/* ================= CTA BLOC ================= */
.cta-block {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 48px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-block h2 { color: var(--white); margin-bottom: 12px; }
.cta-block p { color: rgba(255,255,255,0.92); max-width: 540px; margin: 0 auto 24px auto; }
.cta-block .btn-primary { background: var(--white); color: var(--primary-deep); }
.cta-block .btn-primary:hover { background: var(--gold); color: var(--primary-deep); }

/* ================= ARTICLE / GUIDE CONTENT ================= */
.prose h2 { margin-top: 32px; margin-bottom: 14px; }
.prose h3 { margin-top: 22px; margin-bottom: 10px; color: var(--primary); }
.prose ul, .prose ol { margin-bottom: 16px; }
.prose p { color: var(--text); }
.prose a { color: var(--primary); text-decoration: underline; text-decoration-color: var(--accent); }
.prose blockquote {
  border-left: 4px solid var(--gold);
  padding: 8px 20px;
  margin: 24px 0;
  background: var(--bg-alt);
  font-style: italic;
  color: var(--primary-deep);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ================= FOOTER ================= */
.site-footer {
  background: var(--primary-deep);
  color: rgba(255,255,255,0.88);
  padding: 48px 0 24px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-col h4 {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.5px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.75); font-size: 14px; }
.footer-col a:hover { color: var(--gold); text-decoration: none; }

.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.7); }
.footer-contact li { padding-left: 22px; position: relative; font-size: 14px; }
.footer-contact li::before { position: absolute; left: 0; top: 0; font-size: 14px; }
.footer-contact .ico-phone::before { content: '📞'; }
.footer-contact .ico-mail::before { content: '✉'; }
.footer-contact .ico-loc::before { content: '📍'; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* ================= UTIL ================= */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 16px; }

.date-maj {
  font-size: 12px;
  color: var(--text-muted);
  margin: 8px 0 24px 0;
  text-align: center;
}

/* ================= DESKTOP ≥ 768px ================= */
@media (min-width: 768px) {
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  h3 { font-size: 22px; }

  .burger { display: none; }
  .nav-links {
    display: flex;
    flex-direction: row;
    gap: 28px;
    align-items: center;
    position: static;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
  }
  .nav-links a { padding: 8px 0; border-bottom: none; font-size: 15px; }
  .nav-links .btn { padding: 10px 22px; font-size: 14px; color: white; }
  .nav-links .btn:hover { color: white; }

  .hero { min-height: 88vh; padding: 80px 0; }
  .hero h1 { font-size: 48px; margin-bottom: 18px; }
  .hero-subtitle { font-size: 20px; margin-bottom: 32px; }

  .cta-group { flex-direction: row; justify-content: center; }
  .btn-block { display: inline-block; width: auto; }

  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }

  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 56px; }

  .neighbors-grid { grid-template-columns: repeat(2, 1fr); }

  section { padding: 80px 0; }

  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; }

  .cta-block { padding: 64px 40px; }
  .cta-block h2 { font-size: 36px; }
}

@media (min-width: 1024px) {
  .neighbors-grid { grid-template-columns: repeat(3, 1fr); }
}


/* ==========================================================
   DROPDOWN MENUS — ajouté lors de l'upgrade
   ========================================================== */
.nav-links { gap: 0 !important; }
.nav-item { position: relative; }
.nav-item > a,
.nav-item > .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 0;
  cursor: pointer;
}
.nav-item > .dropdown-toggle::after {
  content: '▾';
  font-size: 11px;
  opacity: 0.65;
  transition: transform .2s;
}
.nav-item.open > .dropdown-toggle::after { transform: rotate(180deg); }

.dropdown {
  display: none;
  list-style: none;
  padding: 10px 0;
  margin: 0;
}

/* Mobile : accordéon sous le parent */
.dropdown > li > a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.dropdown > li:last-child > a { border-bottom: none; }
.dropdown > li > a:hover {
  background: var(--bg-alt);
  color: var(--primary);
  text-decoration: none;
}
.dropdown > li.dropdown-see-all > a {
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-item.open > .dropdown { display: block; }

@media (min-width: 768px) {
  .nav-item > a,
  .nav-item > .dropdown-toggle {
    padding: 10px 14px;
    font-size: 15px;
  }
  .nav-item > .dropdown-toggle:hover { color: var(--primary); }

  .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 8px 0;
    z-index: 200;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity .15s, transform .15s;
  }

  .nav-item:hover > .dropdown,
  .nav-item.open > .dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }

  .dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 14px;
    height: 14px;
    background: var(--card);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
    transform: rotate(45deg);
  }

  .dropdown > li > a {
    border-bottom: none;
    padding: 10px 18px;
  }

  .dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 6px 0;
  }
}

/* ==========================================================
   BLOG CARDS — présentation enrichie avec photo
   ========================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.blog-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--primary-deep);
}
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.blog-card:hover .blog-card-media img { transform: scale(1.06); }

.blog-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(45,94,107,0) 40%, rgba(45,94,107,0.55) 100%);
  pointer-events: none;
}

.blog-card-category {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--gold);
  color: var(--primary-deep);
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.blog-card-body {
  padding: 26px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 12px;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}
.blog-card-meta-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--text-muted);
}

.blog-card h3 {
  font-family: var(--font-title);
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 12px 0;
  color: var(--primary-deep);
}
.blog-card h3 a {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(90deg, var(--gold), var(--gold));
  background-repeat: no-repeat;
  background-size: 0 2px;
  background-position: 0 100%;
  transition: background-size .3s ease;
}
.blog-card:hover h3 a { background-size: 100% 2px; }

.blog-card p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.blog-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: gap .25s;
}
.blog-card:hover .blog-card-cta { gap: 10px; }

@media (min-width: 768px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .blog-card h3 { font-size: 24px; }
}

@media (min-width: 1100px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-card h3 { font-size: 22px; }
}

/* Blog featured (1 grand article en tête) */
.blog-featured {
  margin-bottom: 40px;
}
.blog-featured .blog-card { grid-column: 1 / -1; }

@media (min-width: 768px) {
  .blog-featured .blog-card {
    flex-direction: row;
  }
  .blog-featured .blog-card-media {
    aspect-ratio: auto;
    flex: 1.4;
  }
  .blog-featured .blog-card-body {
    flex: 1;
    padding: 36px 32px;
    justify-content: center;
  }
  .blog-featured .blog-card h3 { font-size: 30px; }
  .blog-featured .blog-card p { font-size: 16px; }
}
