/* Animation pour la carte Égypte */
.egypte-card-animated {
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
  transform: translateY(-60px);
}
/* Effet de chevauchement visible au scroll horizontal */
/* Animation d'apparition pour les boxes Nos formats */
.fade-in-box {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.fade-in-box.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Boutons bleus pour Nos formats */
.blue-btn-dark {
  background: #2563eb !important;
  color: #fff !important;
  border-radius: 8px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 500 !important;
  padding: 1rem 1.5rem !important;
  min-height: 48px !important;
  border: none !important;
}
.blue-btn-medium {
  background: #3b82f6 !important;
  color: #fff !important;
  border-radius: 8px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 500 !important;
  padding: 1rem 1.5rem !important;
  min-height: 48px !important;
  border: none !important;
}
.blue-btn-light {
  background: #93c5fd !important;
  color: #fff !important;
  border-radius: 8px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 500 !important;
  padding: 1rem 1.5rem !important;
  min-height: 48px !important;
  border: none !important;
}
/* Thème Menara : inspiré du Finance for Development Lab
   - Palette sable/jaune avec accents noirs, style oriental
*/
:root{
  /* Couleurs - Thème blanc */
  --sand-50: #ffffff;        /* blanc */
  --sand-100: #ffffff;       /* blanc */
  --sand-200: #f8f9fa;       /* gris très clair */
  --sand-300: #f8f9fa;       /* gris très clair */
  --sand-400: #e9ecef;       /* gris clair */
  --sand-500: #dee2e6;       /* gris moyen */
  
  --white: #ffffff;          /* blanc pur */
  --black: #000000;          /* noir profond */
  --gray-100: #f8f9fa;       /* gris très clair */
  --gray-200: #e9ecef;       /* gris clair */
  --gray-300: #dee2e6;       /* gris moyen */
  --gray-400: #6c757d;       /* gris */
  --gray-500: #495057;       /* gris foncé */
  --gray-800: #212529;       /* presque noir */
  --gray-900: #1a1a1a;       /* noir doux */
  
  /* Palette primary en gris/noir */
  --primary-50: #f8f9fa;
  --primary-100: #e9ecef;
  --primary-200: #dee2e6;
  --primary-300: #ced4da;
  --primary-500: #6c757d;
  --primary-600: #495057;
  --primary-700: #212529;
  --primary-800: #1a1a1a;
  
  /* Variables sémantiques */
  --text-primary: var(--black);
  --text-secondary: var(--gray-500);
  --text-muted: var(--gray-400);
  --background: #ffffff;
  --background-alt: #ffffff;
  --background-card: var(--white);
  --border: var(--gray-200);
  --accent: var(--gray-800);
  --accent-hover: var(--gray-500);
  --accent-secondary: var(--gray-800);
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --radius: 8px; 
  --radius-lg: 12px;
  --maxw: 1200px;
  --header-height: 72px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: var(--text-primary);
  background: #ffffff;
  line-height:1.65;
  -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
  transition: background 0.6s ease;
}

body.nav-open{
  overflow:hidden;
}

body.landing-highlight {
  background: #ffffff;
}

body.landing-highlight main {
  background: linear-gradient(90deg, #769ed9b7 0%, #c2d1e6 100%);
  transition: background 0.6s ease;
}

body.landing-highlight .blue-box-section {
  background: transparent !important;
}

/* Conteneur & sections */
.container{max-width:var(--maxw); margin:0 auto; padding:0 20px}
.section{padding:0}
.section.alt{background: var(--background-alt)}
.section-head{max-width:820px; margin:0 0 10px 0}
.section-head h2{
  font-family: Arial, Helvetica, sans-serif;
  font-weight:700; font-size:34px; line-height:1.2; margin:0 0 8px;
  color: var(--text-primary);
}
.section-head p{margin:0; color:var(--text-secondary)}

.section-head-centered {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.6rem);
}

.section-title-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.75rem;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: 0.55px;
  border-radius: 22px;
  margin: 0;
  box-shadow: 0 16px 32px rgba(10, 39, 106, 0.12);
}

.section-title-chip--blue {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #0f172a;
  background: linear-gradient(135deg, rgba(118, 158, 217, 0.78) 0%, rgba(138, 174, 221, 0.4) 50%, rgba(209, 220, 238, 0) 100%);
}

@media (max-width: 640px) {
  .section-title-chip {
    padding: 0.85rem 1.75rem;
    border-radius: 18px;
  }
}

.grid{display:grid; gap:22px}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
@media (max-width:980px){.grid-3{grid-template-columns:1fr 1fr}}
@media (max-width:640px){.grid-3{grid-template-columns:1fr}}

/* Boutons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  height:42px; padding:0 16px; border-radius:0; border:1px solid transparent;
  text-decoration:none; font-weight:600; color: var(--text-primary); background:transparent; 
  transition:all 0.2s ease; cursor:pointer;
  font-family: Arial, Helvetica, sans-serif;
}
.btn-lg{height:48px; padding:0 20px}
.btn-primary{
  background: #FFF9C4;
  color: var(--black); 
}
.btn-primary:hover{
  background: #FFF59D; 
  transform: translateY(-1px);
}
.quick-action-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0a276a;
  text-decoration: none;
  margin-top: 0.6rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.quick-action-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.quick-action-link:hover {
  color: #082055;
  transform: translateX(2px);
}

.quick-action-link:hover svg {
  transform: translateX(3px);
}
.btn-ghost{
  background: transparent; 
  border-color: var(--border);
  color: var(--text-secondary);
}
.btn-ghost:hover{
  background: var(--background-alt);
  border-color: var(--accent);
  color: var(--text-primary);
}
.btn-outline{
  border-color: var(--accent);
  color: var(--accent);
}
.btn-outline:hover{
  background: var(--accent);
  color: var(--black);
}

/* Topbar */
.topbar{
  background: #ffffff;
  border-bottom:1px solid var(--border);
}
.topbar .container{display:flex; align-items:center; justify-content:space-between; padding:10px 20px}
.topbar-text{color: var(--text-secondary)}
.topbar-cta{color: var(--accent-secondary); text-decoration:none; font-weight:600}
.topbar-cta:hover{text-decoration:underline}

/* Header amélioré - Navigation compacte */
.site-header{
  position:sticky; 
  top:0; 
  z-index:9999;
  background: rgba(255, 255, 255, 0.97); 
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--gray-200);
  /* Ombre supprimée */
  transition: all 0.3s ease;
}

.header-inner{
  display:flex; 
  align-items:center; 
  justify-content:space-between; 
  min-height:var(--header-height);
  gap: 0.75rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  position: relative;
}

.brand{
  display:flex; 
  align-items:center; 
  gap:0.75rem; 
  color: var(--text-primary); 
  text-decoration:none; 
  font-weight:700;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  margin-right: 1rem;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-logo{
  width: 34px; 
  height: 34px;
  border-radius: 0;
  object-fit: cover;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
  transition: filter 0.3s ease;
}

.brand:hover .brand-logo {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.brand-text{
  font-size: 20px; 
  letter-spacing: 0.5px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--primary-700);
  transition: color 0.2s ease;
}

.brand:hover .brand-text {
  color: var(--primary-800);
}

/* Navigation compacte qui tient sur une ligne */
.main-nav{
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: visible; /* allow dropdown menus to extend outside the nav bar */
}
.main-nav ul{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}
.main-nav li{position:relative}
.main-nav a{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid transparent;
  min-height: 48px;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav .is-active > a{
  background: rgba(254, 243, 199, 0.3);
  color: #92400e;
  border-color: rgba(254, 243, 199, 0.5);
  transform: translateY(-1px);
}

/* Boutons de navigation internes sur la page À propos */
.nav-button {
  display: inline-block;
  background-color: #ffffff;
  color: #000000;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
}

.nav-button:hover {
  color: #0a276a;
  border-color: #e5e7eb;
  transform: translateY(-1px);
}

/* Section hero de la page À propos */
.about-hero-heading {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  color: #0a276a;
  letter-spacing: 0.015em;
  margin: 0 0 1.5rem;
}


.about-hero-text {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #0d1b3f;
  margin: 0 0 1.5rem;
}

.about-hero-text strong {
  color: #0a276a;
  font-weight: 600;
}

.about-hero-text--italic {
  font-size: 1.1rem;
}

.header-actions{
  display:flex; 
  align-items:center; 
  gap:4px;
  flex-shrink: 0;
  margin-left: auto;
}
.header-actions .btn{
  font-size: 12px;
  padding: 5px 10px;
  white-space: nowrap;
}

/* Icônes sociales dans le header */
.social-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-right: 0.5rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--neutral-600);
  transition: all 0.2s ease;
  border-radius: 0;
}

.social-icons a:hover {
  color: var(--primary-600);
  background: var(--primary-50);
  transform: translateY(-1px);
}
.nav-toggle{
  display:none;
  background:transparent;
  border:none;
  cursor:pointer;
  padding:6px;
  margin-left:8px;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  width:44px;
  height:44px;
}
.nav-toggle .nav-bar{
  display:block;
  width:24px;
  height:2px;
  background: var(--text-primary);
  border-radius:2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle:focus-visible{
  outline:2px solid rgba(15, 23, 42, 0.35);
  outline-offset:4px;
}
.nav-toggle[aria-expanded="true"] .nav-bar:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-bar:nth-child(2){
  opacity:0;
}
.nav-toggle[aria-expanded="true"] .nav-bar:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

/* Hero sections - Style épuré */
.hero{
  position:relative; 
  padding:120px 0; 
  background: #ffffff;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: none;
  pointer-events: none;
}

.hero-lighthouse{
  background: #ffffff;
}

.hero-inner{display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; position: relative; z-index: 1}
.hero-content h1{
  font-family: Arial, Helvetica, sans-serif;
  font-size:clamp(42px, 6vw, 68px); 
  font-weight:700; 
  line-height:1.1; 
  margin:0 0 24px;
  color: var(--text-primary);
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.hero-subtitle{
  font-size:22px; 
  color: var(--text-secondary); 
  margin:0 0 40px; 
  line-height:1.6;
  font-family: Arial, Helvetica, sans-serif;
}
.hero-ctas{display:flex; gap:20px; margin:0 0 40px; flex-wrap: wrap}
.hero-meta{display:flex; gap:16px; flex-wrap:wrap}

.hero-page{
  padding: 100px 0 80px;
  background: #ffffff;
  text-align: center;
  position: relative;
}
.hero-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f2b844' fill-opacity='0.03'%3E%3Cpath d='M30 30c0-11 9-20 20-20s20 9 20 20-9 20-20 20-20-9-20-20zm-20 0c0-11 9-20 20-20s20 9 20 20-9 20-20 20-20-9-20-20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.hero-page--fade-blue {
  background: linear-gradient(180deg, rgba(118, 158, 217, 0.22) 0%, rgba(255, 255, 255, 0) 80%);
}
.hero-page--fade-blue::before {
  background: linear-gradient(180deg, rgba(118, 158, 217, 0.4) 0%, rgba(118, 158, 217, 0.12) 45%, rgba(255, 255, 255, 0) 90%);
}
.hero-page.contact-hero {
  padding: 90px 0 48px;
}
.hero-page h1{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}
.hero-page p{
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  position: relative;
  z-index: 1;
}
.hero-page h1{
  font-family:"EB Garamond", Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--text-primary);
}
.hero-page p{
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.section-soft-blue {
  position: relative;
  padding: clamp(3rem, 4vw, 4rem) 0;
  isolation: isolate;
}

.section-soft-blue::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(118, 158, 217, 0.14) 0%, rgba(118, 158, 217, 0.08) 45%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: -1;
}

.pill{
  background: var(--gray-100); 
  color: var(--text-secondary); 
  padding:6px 12px; 
  border-radius:999px; 
  font-size:14px; 
  font-weight:600;
}

/* Cards */
.card{
  background: var(--white); 
  border: 1px solid #e5e7eb; 
  border-radius:0; 
  padding:24px; 
  transition: all 0.2s ease;
}
.card:hover{
  border-color: #d1d5db;
}

/* Ajustements progressifs de l'en-tête */
@media (max-width:1280px){
  .main-nav ul{gap:2rem;}
  .main-nav a{padding:0.75rem 1rem; font-size:1rem;}
  .header-actions .btn-primary{font-size:1.05rem; padding:0.85rem 1.35rem;}
}

@media (max-width:980px){
  .header-actions{gap:0.5rem;}
  .brand-text{font-size:18px;}
  .social-icons{display:none;}
}

/* Navigation mobile */
@media (max-width:1024px){
  :root{--header-height:64px;}
  .site-header{border-bottom:none;}
  .header-inner{gap:0.5rem; padding:0 0.75rem;}
  .brand{gap:0.5rem;}
  .brand-logo{width:32px; height:32px;}
  .brand-text{font-size:18px;}
  .nav-toggle{display:flex;}
  .header-actions .btn-primary{font-size:0.95rem; padding:0.65rem 1rem; border-radius:10px;}
  .main-nav{
    display:block;
    flex:0 0 auto;
    position:fixed;
    inset:var(--header-height) 0 0 0;
    background:rgba(255,255,255,0.97);
    border-top:1px solid rgba(148,163,184,0.35);
    opacity:0;
    visibility:hidden;
    transform:translateY(-8px);
    transition:opacity 0.3s ease, transform 0.3s ease;
    max-height:calc(100vh - var(--header-height));
    overflow-y:auto;
    box-shadow:0 24px 48px rgba(15,23,42,0.12);
    padding-bottom:2rem;
    z-index:9998;
  }
  .main-nav.open{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
  }
  .site-header .main-nav ul{
    flex-direction:column;
    align-items:stretch;
    gap:0.75rem;
    padding:1.75rem clamp(1rem, 4vw, 2rem);
    width:100%;
    margin:0;
  }
  .site-header .main-nav li{width:100%;}
  .site-header .main-nav a{
    justify-content:space-between;
    padding:0.85rem 1rem;
    border-radius:12px;
    border:1px solid transparent;
    font-size:1.05rem;
    min-height:52px;
    line-height:1.4;
  }
  .site-header .main-nav a:hover,
  .site-header .main-nav .is-active > a{
    transform:none;
  }
  .site-header .main-nav .has-dropdown .dropdown{
    position:static;
    transform:none;
    background:#fff7cc;
    border:1px solid rgba(247, 181, 19, 0.35);
    box-shadow:none;
    margin-top:0;
    opacity:0;
    visibility:hidden;
    max-height:0;
    overflow:hidden;
    padding:0 0;
    transition:max-height 0.3s ease, opacity 0.3s ease;
    pointer-events:none;
    width:100%;
    min-width:100%;
    max-width:none;
    border-radius:12px;
  }
  .site-header .main-nav .has-dropdown.dropdown-open .dropdown{
    opacity:1;
    visibility:visible;
    max-height:400px;
    padding:0.5rem 0;
    pointer-events:auto;
    transform:none;
  }
  .site-header .main-nav .has-dropdown.dropdown-open > a svg{transform:rotate(180deg);}
  .site-header .main-nav .publications-dropdown-item{
    border-bottom:1px solid rgba(253,230,138,0.4);
    padding:1.05rem clamp(1rem, 4vw, 1.75rem);
    font-size:1.1rem;
    font-weight:600;
    background:transparent;
  }
  .site-header .main-nav .publications-dropdown-item:last-child{border-bottom:none;}
}

@media (max-width:640px){
  :root{--header-height:60px;}
  .header-inner{padding:0 0.65rem;}
  .brand-text{font-size:17px;}
  .header-actions .btn-primary{display:none;}
  .main-nav ul{padding:1.5rem 1rem;}
}

.has-dropdown {
  position: relative;
}

.has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.has-dropdown:hover > a svg,
.has-dropdown.dropdown-open > a svg {
  transform: rotate(180deg);
}

.has-dropdown .dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: #fffdf0;
  border: 1px solid rgba(250, 204, 21, 0.25);
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
  min-width: 220px;
  max-width: 220px;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  margin-top: 8px;
  pointer-events: none;
}

.has-dropdown:hover .dropdown,
.has-dropdown.dropdown-open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
  z-index: 999999;
}

/* Zone de survol étendue pour faciliter l'accès */
.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 10px;
  background: transparent;
  z-index: 1;
  pointer-events: auto;
}

.publications-dropdown-item {
  display: block;
  padding: 1rem 1.5rem;
  text-decoration: none;
  color: #374151;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease;
  border-bottom: 1px solid rgba(253, 230, 138, 0.35);
}

.publications-dropdown-item:first-child {
  border-radius: 8px 8px 0 0;
}

.publications-dropdown-item:last-child {
  border-bottom: none;
  border-radius: 0 0 8px 8px;
}

.publications-dropdown-item:hover {
  background-color: #fff7d1;
  color: #92400e;
}

.header-actions .btn-primary {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(10, 39, 106, 0.3);
  color: #374151;
}

.header-actions .btn-primary:hover {
  background: rgba(254, 243, 199, 0.3);
  color: #92400e;
  border-color: rgba(254, 243, 199, 0.5);
  transform: translateY(-1px);
}
/* Styles pour les tooltips des articles */
.article-tooltip {
  position: absolute;
  background: white;
  border: 2px solid rgba(254, 243, 199, 1);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  min-width: 320px;
  max-width: 380px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.featured-article-card:hover,
.featured-article-card:focus-within {
  z-index: 10000 !important;
}

/* Interaction améliorée pour la pile d'articles de la page d'accueil */
.blue-box-section .overlap-articles-grid {
  display: flex;
  gap: 0;
  position: relative;
}

.blue-box-section .featured-article-card {
  transition: transform 0.45s ease, filter 0.45s ease, opacity 0.45s ease, box-shadow 0.45s ease;
  transform-origin: center top;
}

.blue-box-section .featured-article-card:hover,
.blue-box-section .featured-article-card:focus-within {
  opacity: 1;
  filter: none;
  box-shadow: 0 24px 60px rgba(10, 39, 106, 0.25);
  transform: translateY(-48px) scale(1.18);
}

.blue-box-section .featured-article-card:nth-child(2):hover,
.blue-box-section .featured-article-card:nth-child(2):focus-within {
  transform: translate(36px, -48px) scale(1.18);
}

.blue-box-section .featured-article-card:nth-child(3):hover,
.blue-box-section .featured-article-card:nth-child(3):focus-within {
  transform: translate(78px, -48px) scale(1.18);
}

.blue-box-section .overlap-articles-grid:hover .featured-article-card:not(:hover),
.blue-box-section .overlap-articles-grid:focus-within .featured-article-card:not(:focus-within) {
  opacity: 0.45;
  filter: saturate(70%) brightness(0.9);
  transform: translateY(-12px) scale(0.9);
}

.blue-box-section .featured-article-card:hover ~ .featured-article-card,
.blue-box-section .featured-article-card:focus-within ~ .featured-article-card {
  transform: translateX(110px) translateY(-16px) scale(0.88);
  opacity: 0.3;
  filter: saturate(55%) brightness(0.85);
}

/* Sections héro responsive */
.latest-publications {
  background: linear-gradient(90deg, rgba(118, 158, 217, 0.72) 0%, rgba(194, 209, 230, 0.95) 100%);
  color: #fff;
  padding: clamp(3.5rem, 8vw, 8rem) 0;
  box-shadow: 0 4px 24px rgba(10, 39, 106, 0.08);
}

.latest-publications__inner {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.latest-publications__eyebrow {
  grid-column: 1 / -1;
  margin: 0 0 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.latest-publications__welcome {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 24px;
  padding: 2rem 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.latest-publications__logo {
  width: 200px;
  max-width: 70%;
  height: auto;
}

.latest-publications__copy {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #f8fafc;
}

.latest-publications__name {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.latest-publications__cards {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: stretch;
  overflow: visible;
}

.latest-publications__cards .featured-article-card {
  background: #fff;
  color: #0a276a;
  border-radius: 18px;
  box-shadow: 0 10px 36px rgba(10, 39, 106, 0.14);
  min-width: clamp(260px, 28vw, 340px);
  max-width: clamp(260px, 28vw, 360px);
  min-height: 420px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.latest-publications__cards .article-image {
  height: 240px;
}

.latest-publications__cards .article-title {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.latest-publications__cards .article-author {
  font-size: 0.95rem;
}

.latest-publications__link {
  grid-column: 1 / -1;
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: transform 0.2s ease;
}

.latest-publications__link:hover {
  transform: translateX(4px);
}

@media (min-width: 1200px) {
  .latest-publications__cards .featured-article-card:nth-child(2) {
    transform: translateY(32px);
  }
  .latest-publications__cards .featured-article-card:nth-child(3) {
    transform: translateY(64px);
  }
}

@media (max-width: 1024px) {
  .latest-publications__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .latest-publications__cards {
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
  }
  .latest-publications__cards .featured-article-card {
    min-width: min(280px, 80vw);
    max-width: none;
    scroll-snap-align: start;
    transform: none !important;
  }
}

.mission-events {
  background: #f5f5f5;
  color: #111827;
  padding: clamp(3.5rem, 8vw, 8rem) 0;
}

.mission-events__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: stretch;
}

.mission-events__mission,
.mission-events__events {
  background: #fff;
  border-radius: 24px;
  padding: clamp(1.5rem, 3vw, 2.75rem);
  box-shadow: 0 8px 32px rgba(10, 39, 106, 0.08);
}

.mission-events__mission h2,
.mission-events__events h2 {
  margin: 0 0 1.5rem;
  font-size: 1.25rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0a276a;
}

.mission-events__actions {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mission-events__action {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #d1d5db;
}

.mission-events__action:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.mission-events__action-title {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.mission-events__action-text {
  margin: 0 0 0.35rem;
  color: #4b5563;
  font-size: 0.98rem;
}

.mission-events__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mission-events__event-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.mission-events__event-item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.mission-events__event-date {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0a276a;
}

.mission-events__event-text {
  margin: 0;
  color: #1f2937;
  line-height: 1.5;
}

.mission-events__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  font-weight: 700;
  color: #0f172a;
  margin-top: 2rem;
}

.mission-events__link:hover {
  color: #1d4ed8;
}

@media (max-width: 1024px) {
  .mission-events__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .mission-events__mission,
  .mission-events__events {
    padding: 1.5rem;
  }
  .mission-events__event-item img {
    width: 56px;
    height: 56px;
  }
}

.featured-article-card:hover .article-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.article-tooltip-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.article-tooltip-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a276a;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.article-tooltip-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #374151;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.article-tooltip-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #6b7280;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid #e5e7eb;
}

.article-tooltip-author {
  font-weight: 600;
}

.article-tooltip-date {
  font-style: italic;
}

/* Articles et notes : grilles et cartes */
.detailed-articles-grid,
.notes-focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.note-card,
.article-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(10, 39, 106, 0.08);
  box-shadow: 0 12px 32px rgba(10, 39, 106, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.note-card-link-wrapper,
.article-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.note-card-image,
.article-card-image {
  position: relative;
  width: 100%;
  padding-top: 60%;
  overflow: hidden;
}

.note-card-image img,
.article-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.note-card-body,
.article-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.note-card-title,
.article-card-title {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0a276a;
}

.note-card-description,
.article-card-excerpt {
  margin: 0;
  color: #4b5563;
  font-size: 0.97rem;
  line-height: 1.6;
}

.note-card-cta,
.article-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  color: #92400e;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.note-card-meta,
.article-card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: auto;
  font-size: 0.85rem;
  color: #6b7280;
}

.note-card-cta::after,
.article-card-cta::after {
  content: '→';
  transition: transform 0.2s ease;
}

.note-card:hover,
.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(10, 39, 106, 0.14);
}

.note-card:hover .note-card-image img,
.article-card:hover .article-card-image img {
  transform: scale(1.05);
}

.note-card:hover .note-card-cta,
.article-card:hover .article-card-cta {
  color: #7c2d12;
}

.note-card:hover .note-card-cta::after,
.article-card:hover .article-card-cta::after {
  transform: translateX(4px);
}

.article-card-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: #0a276a;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  box-shadow: 0 8px 20px rgba(10, 39, 106, 0.18);
}

/* Notes Focus section spacing */
#carrousels {
  margin-top: 40px;
}

[hidden] {
  display: none !important;
}

.note-detail-main,
.article-detail-main {
  background: #f9fafb;
}

.note-hero,
.article-hero {
  padding: 4rem 0;
  background: linear-gradient(125deg, #fff7ed 0%, #fef3c7 45%, #fff 100%);
}

.note-hero-inner,
.article-hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
}

.note-hero-media,
.article-hero-media {
  flex: 0 0 320px;
  max-width: 100%;
}

.note-hero-cover,
.article-hero-cover {
  width: 100%;
  min-width: 240px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 26px 60px rgba(10, 39, 106, 0.25);
}

.note-hero-content,
.article-hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.note-hero-label,
.article-hero-label {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #92400e;
}

.note-hero-title,
.article-hero-title {
  margin: 0;
  font-size: clamp(2rem, 2.8vw, 2.6rem);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  color: #0a276a;
}

.note-hero-description,
.article-hero-description {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #374151;
}

.note-hero-meta,
.article-hero-meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #6b7280;
}

.note-hero-meta span::before,
.article-hero-meta span::before {
  content: '';
}

.note-hero-meta span + span::before,
.article-hero-meta span + span::before {
  content: '•';
  margin: 0 0.35rem;
  color: #d97706;
}

.note-hero-actions,
.article-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.note-download-link,
.article-download-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  background: #92400e;
  color: #fff7ed;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.note-download-link:hover,
.article-download-link:hover {
  transform: translateY(-2px);
  background: #7c2d12;
  box-shadow: 0 14px 28px rgba(124, 45, 18, 0.25);
}

.note-download-link-secondary,
.article-download-link-secondary {
  background: transparent;
  color: #92400e;
  border: 1px solid rgba(146, 64, 14, 0.35);
}

.note-download-link-secondary:hover,
.article-download-link-secondary:hover {
  color: #fff7ed;
  background: #92400e;
}

.article-content-section {
  padding: 3.5rem 0 4rem;
}

.article-content-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 26px 60px rgba(10, 39, 106, 0.12);
  padding: clamp(2rem, 2.5vw, 3rem);
  max-width: 960px;
  margin: 0 auto;
}

.article-content-card .content-block {
  max-width: none;
  margin: 0;
  padding: 0;
}

[data-article-detail] {
  background: #f9fafb;
}

[data-article-detail] .content-block strong,
[data-article-detail] .executive-summary strong,
[data-article-detail] .document-summary-toc strong,
[data-article-detail] .document-content strong {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

[data-article-detail] .content-block p,
[data-article-detail] .executive-summary p {
  margin-top: 0.35rem;
}

[data-article-detail] .article-content-card .content-block p,
[data-article-detail] .article-content-card .content-block ul,
[data-article-detail] .article-content-card .content-block ol {
  font-size: 1rem;
  color: #1f2937;
}

[data-article-detail] .article-content-card .content-block ul,
[data-article-detail] .article-content-card .content-block ol {
  padding-left: 1.5rem;
}

[data-article-detail] .article-content-card .content-block li {
  margin-bottom: 0.75rem;
}

.note-carousel-section {
  padding: 3.5rem 0 4rem;
  background: #ffffff;
}

.note-carousel-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.note-carousel-header h2 {
  margin: 0;
  font-size: 1.8rem;
  color: #0a276a;
}

.note-carousel-header p {
  margin: 0;
  color: #4b5563;
}

.note-carousel-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.note-carousel-track-wrapper {
  position: relative;
  flex: 1;
  overflow: hidden;
  border-radius: 18px;
  background: #fff7ed;
  min-height: 320px;
}

.note-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}

.note-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  box-sizing: border-box;
}

.note-slide canvas {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.18);
}

.note-carousel-fallback {
  width: 100%;
  min-height: 420px;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(10, 39, 106, 0.12);
  position: relative;
}

.note-carousel-fallback iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
  background: #111827;
}

.note-carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(146, 64, 14, 0.35);
  background: #fff7ed;
  color: #92400e;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.note-carousel-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.note-carousel-btn:not(:disabled):hover {
  background: #fef3c7;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(146, 64, 14, 0.25);
}

.note-carousel-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #92400e;
  background: rgba(255, 247, 237, 0.9);
  text-align: center;
  padding: 2rem;
  box-sizing: border-box;
}

.note-carousel-error {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  background: rgba(254, 202, 202, 0.9);
  color: #7f1d1d;
  font-weight: 600;
  border-radius: 18px;
}

.note-carousel-status {
  margin-top: 1.5rem;
  text-align: center;
  color: #6b7280;
  font-size: 0.95rem;
}

.note-download-section {
  padding: 0 0 4rem;
}

.note-download-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(10, 39, 106, 0.08);
  box-shadow: 0 20px 40px rgba(10, 39, 106, 0.12);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.note-download-card h3 {
  margin: 0 0 0.5rem 0;
  color: #0a276a;
}

.note-download-card p {
  margin: 0;
  color: #4b5563;
}

.note-empty-card {
  margin: 3rem auto;
  max-width: 520px;
  background: #fff7ed;
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid rgba(146, 64, 14, 0.25);
  box-shadow: 0 22px 44px rgba(146, 64, 14, 0.18);
}

.note-empty-card h2 {
  margin-top: 0;
  color: #92400e;
}

.note-empty-card a {
  color: #92400e;
  font-weight: 600;
  text-decoration: none;
}

.note-empty-card a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .note-carousel-shell {
    flex-direction: column;
  }

  .note-carousel-btn {
    width: 100%;
    border-radius: 12px;
    height: 44px;
  }

  .note-carousel-track-wrapper {
    width: 100%;
  }
}

/* Nouvelles pages - Styles supplémentaires */
.events-grid, .news-grid, .contributions-grid {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.event-card, .news-item, .contribution-card {
  background: var(--white);
  border: 1px solid rgba(10, 39, 106, 0.1);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 12px 28px rgba(10, 39, 106, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.event-card:hover, .contribution-card:hover {
  border-color: rgba(10, 39, 106, 0.18);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(10, 39, 106, 0.14);
}

.event-description {
  display: block;
}

.event-description p {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  color: #222;
  line-height: 1.55;
  flex: 1 1 220px;
}

.event-linkedin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  margin-left: 0.55rem;
  border-radius: 999px;
  background: #0a66c2;
  color: #ffffff;
  text-decoration: none;
  vertical-align: middle;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.event-linkedin-btn:hover {
  background: #004182;
  box-shadow: 0 6px 16px rgba(10, 102, 194, 0.3);
  transform: translateY(-1px);
}

.event-linkedin-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--accent);
  color: var(--white);
  border-radius: 14px;
  padding: 12px;
  width: 80px;
  margin-bottom: 16px;
}

.newsletter-signup {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background: var(--white);
  border-radius: 0;
  border: 1px solid #e5e7eb;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 0;
  font-size: 16px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 0;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.2s ease;
}

.social-card:hover {
  border-color: #d1d5db;
  transform: translateY(-2px);
}

.social-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: var(--gray-100);
}

.linkedin .social-icon { background: #0077b5; color: var(--white); }
.twitter .social-icon { background: #1da1f2; color: var(--white); }
.youtube .social-icon { background: #ff0000; color: var(--white); }
.instagram .social-icon { background: #e4405f; color: var(--white); }

/* Podcasts */
.podcast-featured {
  background: var(--white);
  border-radius: 0;
  padding: 40px;
  border: 1px solid #e5e7eb;
  margin-bottom: 40px;
}

.podcast-hero {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: center;
}

.podcast-artwork {
  position: relative;
}

.podcast-artwork img {
  width: 100%;
  border-radius: 0;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid #e5e7eb;
}

.episodes-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.episodes-preview {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  padding: 3rem 0;
}

.preview-message {
  text-align: center;
  max-width: 600px;
  padding: 2.5rem;
  background: var(--sand-50);
  border-radius: 0;
  border: 1px solid var(--sand-200);
}

.preview-message h3 {
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.preview-message p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.preview-message ul {
  text-align: left;
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
}

.preview-message li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-primary);
}

.preview-message li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.episode-card {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 20px;
  align-items: center;
}

.episode-thumbnail {
  position: relative;
}

.episode-thumbnail img {
  width: 120px;
  height: 120px;
  border-radius: 0;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

/* Articles à la une - Style IRIS */
.featured-articles-section {
  background: #ffffff;
  padding: 60px 0;
}

.featured-articles-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.featured-article-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 0;
  padding: 0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.featured-article-card:hover {
  transform: translateY(-4px);
  border-color: #d1d5db;
}

.article-image-link {
  display: block;
  width: 100%;
  margin-bottom: 0;
  border-radius: 0;
  overflow: hidden;
}

.article-image {
  width: 100%;
  height: 700px;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.article-image-adjust {
  object-position: center 15%;
}

.article-image-link:hover .article-image {
  transform: scale(1.05);
}

.featured-article-card .article-content {
  padding: 32px;
}

.article-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 13px;
  font-family: Arial, Helvetica, sans-serif;
}

.article-category {
  color: var(--gray-500);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.article-date {
  color: var(--gray-400);
}

.featured-article-card .article-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 16px;
}

.featured-article-card .article-title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.featured-article-card .article-title a:hover {
  color: var(--gray-600);
}

.article-author {
  font-size: 15px;
  color: var(--gray-600);
  margin: 0 0 12px;
  font-weight: 500;
  font-family: Arial, Helvetica, sans-serif;
}

.article-excerpt {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

@media (max-width: 980px) {
  .featured-articles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .featured-articles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Mission showcase */
.mission-layout {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 2.5rem;
  position: relative;
}

.mission-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  padding: 1.75rem 2.25rem 1.75rem 1.5rem;
}

.mission-intro h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.7rem, 2.3vw, 2.1rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.45;
}

.mission-featured {
  position: relative;
  padding-bottom: 3rem;
  margin-left: 1.2rem;
}

.mission-overlap-grid {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  width: 100%;
  position: relative;
  left: 140px;
}

.mission-card {
  position: relative;
  background: #ffffff;
  color: #0a276a;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(10,39,106,0.08);
  min-height: 470px;
  max-height: 470px;
  display: flex;
  flex-direction: column;
  margin-right: -40px;
  top: -70px;
  left: 0;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card--front {
  z-index: 3;
  min-width: 370px;
  max-width: 370px;
}

.mission-card--middle {
  z-index: 2;
  left: -40px;
  min-width: 270px;
  max-width: 270px;
}

.mission-card--back {
  z-index: 1;
  left: -80px;
  min-width: 270px;
  max-width: 270px;
  margin-right: 0;
}

.mission-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 22px 48px rgba(10,39,106,0.18);
}

.mission-card-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 240px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 64, 175, 0.85) 100%);
  text-decoration: none;
}

.mission-card-icon {
  width: 108px;
  height: 108px;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 22px 44px rgba(15, 27, 63, 0.28);
}

.mission-card-icon--analyse {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.mission-card-icon--engager {
  background: linear-gradient(135deg, #047857 0%, #10b981 100%);
}

.mission-card-icon--echanger {
  background: linear-gradient(135deg, #be123c 0%, #ec4899 100%);
}

.mission-card-body {
  padding: 1.75rem 1.85rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  height: 100%;
}

.mission-card-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1e293b;
}

.mission-card-title {
  font-size: 1.22rem;
  line-height: 1.4;
}

.mission-card-title a {
  color: inherit;
  text-decoration: none;
}

.mission-card-title a:hover {
  color: #061842;
}

.mission-card-text {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
}

.mission-card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  color: #0a276a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mission-card-link span {
  font-size: 1.25rem;
  transition: transform 0.2s ease;
}

.mission-card-link:hover {
  color: #061842;
}

.mission-card-link:hover span {
  transform: translateX(4px);
}

.mission-divider {
  width: 1px;
  background: #d1d5db;
  margin: 0 0.5rem;
  min-height: 340px;
  align-self: center;
}

.mission-events-column {
  flex: 0 0 34%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 2rem 2.25rem 2rem 1.5rem;
}

@media (max-width: 1180px) {
  .mission-featured {
    margin-left: 0.5rem;
  }

  .mission-overlap-grid {
    left: 90px;
  }

  .mission-card--front {
    min-width: 340px;
    max-width: 340px;
  }

  .mission-card--middle {
    left: -32px;
  }

  .mission-card--back {
    left: -64px;
  }
}

@media (max-width: 1024px) {
  .mission-layout {
    flex-direction: column;
    gap: 2.75rem;
  }

  .mission-column {
    padding: 1.75rem 1.75rem 0 1.75rem;
  }

  .mission-featured {
    margin-left: 0;
    padding-bottom: 0;
  }

  .mission-overlap-grid {
    position: static;
    left: 0;
    display: grid;
    gap: 1.75rem;
  }

  .mission-card {
    margin-right: 0;
    top: 0;
    left: 0;
    min-width: 100%;
    max-width: none;
  }

  .mission-card--front,
  .mission-card--middle,
  .mission-card--back {
    left: 0;
    min-width: 100%;
    max-width: none;
  }

  .mission-card-visual {
    border-radius: 16px;
  }

  .mission-divider {
    display: none;
  }

  .mission-events-column {
    max-width: none;
    width: 100%;
    padding: 1.5rem 1.75rem 2.25rem 1.75rem;
  }
}

@media (max-width: 640px) {
  .mission-column {
    padding: 1.5rem 1.25rem 0 1.25rem;
  }

  .mission-card-icon {
    width: 88px;
    height: 88px;
    border-radius: 22px;
  }

  .mission-card-visual {
    height: 180px;
  }

  .mission-events-column {
    padding: 1.25rem 1.25rem 2rem 1.25rem;
  }
}

/* Footer */
.site-footer {
  background: #e5e7eb;
  color: #1f2937;
  padding: 48px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .brand-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand img {
  width: 40px;
  margin-bottom: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: var(--gray-400);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(15, 23, 42, 0.12);
  color: inherit;
  background: transparent;
}

.footer-bottom p {
  color: inherit;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .podcast-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .episode-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Newsletter élégante */
.newsletter-section {
  background: #ffffff;
  padding: 5rem 0;
}

.newsletter-card {
  background: var(--white);
  border-radius: 0;
  padding: 3rem;
  border: 1px solid #e5e7eb;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--sand-100);
  border-radius: 50%;
  margin-bottom: 2rem;
  color: var(--sand-600);
}

.newsletter-card h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.newsletter-card p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.newsletter-form {
  margin-bottom: 2.5rem;
}

.newsletter-form .form-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: stretch;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.25rem;
  border: 2px solid var(--sand-300);
  border-radius: 0;
  font-size: 1rem;
  background: var(--background);
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--sand-500);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.newsletter-form .btn {
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-weight: 600;
}

.form-hint {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
}

.newsletter-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--sand-200);
}

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

.stat-number {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sand-600);
}

.stat-label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .newsletter-card {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }
  
  .newsletter-form .form-group {
    flex-direction: column;
  }
  
  .newsletter-stats {
    gap: 1rem;
  }
  
  .stat-number {
    font-size: 1.25rem;
  }
}

/* Styles pour la page Contact */
.contact-hero {
  background: #ffffff;
  padding: 4rem 0;
}

.contact-hero .hero-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-hero h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.contact-hero .hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-section {
  padding: 3rem 0 5rem;
}

.contribution-copy {
  max-width: 860px;
  margin: 0 auto 3rem;
  padding: 2.5rem 3rem;
  background: linear-gradient(135deg, rgba(118, 158, 217, 0.18) 0%, rgba(118, 158, 217, 0.05) 60%, rgba(255, 255, 255, 0) 100%);
  border: 1px solid rgba(118, 158, 217, 0.24);
  color: #0f172a;
  font-size: 1.1rem;
  line-height: 1.8;
}

.contribution-copy p {
  margin: 0;
}

.contribution-copy p + p {
  margin-top: 1.5rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  background-color: #f8f9fa;
  padding: 2.25rem 2rem;
  border-radius: 8px;
  gap: 1rem;
  flex: 0 1 520px;
  max-width: 600px;
  min-width: 340px;
  align-self: flex-start;
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.contact-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.contact-card-cta {
  display: inline-block;
  background-color: #0a276a;
  color: #ffffff;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(10, 39, 106, 0.3);
}

.contact-card-cta:hover {
  background-color: #081d57;
}

.contact-card h2 {
  text-align: center;
  margin: 0 0 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #374151;
}

.contact-card > p {
  margin: 0;
  color: #4b5563;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
}

.contact-card > p + p {
  margin-top: 1rem;
}

.career-form {
  margin-top: 1.5rem;
}

.career-form .form-field {
  margin-bottom: 1.25rem;
}

.career-form .file-field input[type="file"] {
  padding: 0.75rem 0.5rem;
}

.career-form-note {
  font-size: 0.95rem;
  color: #6b7280;
  text-align: center;
  margin: 0.75rem 0 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.contact-methods {
  margin-bottom: 3rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.method-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--sand-100);
  border-radius: 0;
  color: var(--sand-600);
  flex-shrink: 0;
}

.method-details h3 {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.method-details p {
  color: var(--text-secondary);
  margin: 0;
}

.response-time {
  background: var(--sand-50);
  padding: 1.5rem;
  border-radius: 0;
  border-left: 4px solid var(--sand-400);
}

.response-time h3 {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.response-time p {
  color: var(--text-secondary);
  margin: 0;
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: 0;
  padding: 2.5rem;
  border: 1px solid #e5e7eb;
  border: 1px solid var(--sand-200);
}

.contact-form h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-field {
  margin-bottom: 1.5rem;
}

.form-field label {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--sand-300);
  border-radius: 0;
  font-size: 1rem;
  background: var(--background);
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--sand-500);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-field {
  margin: 2rem 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
}

.checkmark {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: var(--background);
  border: 2px solid var(--sand-300);
  border-radius: 0;
  position: relative;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--sand-500);
  border-color: var(--sand-500);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-actions {
  text-align: center;
  margin: 2rem 0 1rem;
}

.form-disclaimer {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
  margin: 1rem 0 0;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2.25rem;
  }
  
  .contact-hero .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }

  .contact-card {
    min-width: 100%;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-method {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .method-icon {
    align-self: center;
  }
}

/* Styles pour la page Nous Suivre */
.follow-hero {
  background: #ffffff;
  padding: 4rem 0;
  text-align: center;
}

.follow-hero .hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.follow-hero h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.social-section {
  padding: 5rem 0;
}

.social-section h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.social-section > p {
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.social-platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.social-platform {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border: 2px solid var(--sand-200);
  border-radius: 0;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.social-platform:hover {
  transform: translateY(-4px);
  border: 1px solid #e5e7eb;
  border-color: var(--sand-400);
}

.social-platform.linkedin {
  border-left: 4px solid #0077B5;
}

.social-platform.twitter {
  border-left: 4px solid #1DA1F2;
}

.social-platform.youtube {
  border-left: 4px solid #FF0000;
}

.social-platform.instagram {
  border-left: 4px solid #E4405F;
}

.platform-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--sand-100);
  border-radius: 0;
  flex-shrink: 0;
}

.social-platform.linkedin .platform-icon {
  background: rgba(0, 119, 181, 0.1);
  color: #0077B5;
}

.social-platform.twitter .platform-icon {
  background: rgba(29, 161, 242, 0.1);
  color: #1DA1F2;
}

.social-platform.youtube .platform-icon {
  background: rgba(255, 0, 0, 0.1);
  color: #FF0000;
}

.social-platform.instagram .platform-icon {
  background: rgba(228, 64, 95, 0.1);
  color: #E4405F;
}

.platform-content h3 {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.platform-content p {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.platform-stats {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sand-600);
}

.newsletter-premium {
  background: var(--sand-50);
  padding: 5rem 0;
}

.newsletter-premium-card {
  background: var(--white);
  border-radius: 0;
  padding: 3rem;
  border: 1px solid #e5e7eb;
  border: 1px solid var(--sand-200);
  max-width: 900px;
  margin: 0 auto;
}

.premium-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.premium-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--sand-100);
  border-radius: 0;
  color: var(--sand-600);
  flex-shrink: 0;
}

.premium-header h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.premium-header p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin: 0;
}

.premium-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--sand-50);
  border-radius: 0;
}

.feature-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.premium-newsletter-form {
  border-top: 1px solid var(--sand-200);
  padding-top: 2rem;
}

.form-group-inline {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.form-group-inline input {
  flex: 2;
  min-width: 250px;
  padding: 1rem 1.25rem;
  border: 2px solid var(--sand-300);
  border-radius: 0;
  font-size: 1rem;
  background: var(--background);
}

.form-group-inline select {
  flex: 1;
  min-width: 180px;
  padding: 1rem 1.25rem;
  border: 2px solid var(--sand-300);
  border-radius: 0;
  font-size: 1rem;
  background: var(--background);
}

.form-group-inline input:focus,
.form-group-inline select:focus {
  outline: none;
  border-color: var(--sand-500);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.newsletter-benefits {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
}

.community-stats {
  padding: 5rem 0;
}

.community-stats h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: 0;
  border: 1px solid #e5e7eb;
  border: 1px solid var(--sand-200);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
}

.stat-number {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sand-600);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

@media (max-width: 768px) {
  .follow-hero h1 {
    font-size: 2.25rem;
  }
  
  .social-platforms {
    grid-template-columns: 1fr;
  }
  
  .premium-header {
    flex-direction: column;
    text-align: center;
  }
  
  .premium-features {
    grid-template-columns: 1fr;
  }
  
  .form-group-inline {
    flex-direction: column;
  }
}

/* === CAROUSEL STYLE FINDEVLAB === */
.findevlab-carousel {
  margin: 2rem 0;
  position: relative;
}

.findevlab-carousel .carousel-wrapper {
  overflow: hidden;
  border-radius: 0;
  margin-bottom: 1.5rem;
  background: var(--background);
}

.findevlab-carousel .carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0.5rem;
}

.findevlab-article-card {
  flex: 0 0 calc(50% - 0.75rem);
  background: white;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid #e5e7eb;
  position: relative;
}

.findevlab-article-card:hover {
  transform: translateY(-6px);
  border-color: #d1d5db;
}

.article-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.findevlab-article-card:hover .article-image img {
  transform: scale(1.05);
}

.article-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary-600);
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  backdrop-filter: blur(8px);
  /* Ombre supprimée */
}

.article-content {
  padding: 1.5rem;
}

.article-meta {
  margin-bottom: 0.75rem;
}

.article-meta time {
  font-size: 0.875rem;
  color: var(--neutral-500);
  font-weight: 500;
  font-family: var(--font-modern);
}

.article-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--neutral-900);
  line-height: 1.4;
  margin-bottom: 0.75rem;
  font-family: var(--font-elegant);
  transition: color 0.2s ease;
}

.findevlab-article-card:hover .article-title {
  color: var(--primary-700);
}

.article-excerpt {
  color: var(--neutral-600);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.article-link {
  color: var(--primary-600);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.article-link:hover {
  color: var(--primary-700);
  transform: translateX(2px);
}

.article-link::after {
  content: '→';
  transition: transform 0.2s ease;
}

.article-link:hover::after {
  transform: translateX(2px);
}

.carousel-nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

.carousel-btn {
  display: none;
}

.carousel-btn:hover {
  border-color: var(--primary-300);
  color: var(--primary-600);
  background: var(--primary-50);
  transform: translateY(-1px);
  /* Ombre supprimée */
}

.carousel-btn:active {
  transform: translateY(0);
}

.carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.carousel-dots {
  display: flex;
  gap: 0.75rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: var(--sand-300);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.carousel-dot.active {
  background: var(--primary-600);
  transform: scale(1.2);
  box-shadow: 0 0 0 4px var(--primary-100);
}

.carousel-dot:hover {
  background: var(--primary-500);
  transform: scale(1.1);
}

/* Styles pour les indicateurs de carrousel (Notes Focus) */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.carousel-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  opacity: 0.6;
}

.carousel-indicator.active {
  background: #9ca3af;
  opacity: 1;
  transform: scale(1.3);
}

.carousel-indicator:hover {
  background: #9ca3af;
  opacity: 0.8;
  transform: scale(1.1);
}

/* Styles pour les contrôles de navigation du carousel */
.carousel-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding: 0 1rem;
}

.carousel-nav {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #d1d5db;
  transition: all 0.3s ease;
  border-radius: 0;
}

.carousel-nav svg {
  width: 32px;
  height: 32px;
  transition: all 0.3s ease;
}

.carousel-nav:hover {
  color: #9ca3af;
  transform: scale(1.1);
}

.carousel-nav:active {
  transform: scale(0.95);
}

.carousel-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

/* Styles pour preview d'articles dans hero */
.hero-articles-preview {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
  border: 1px solid #e5e7eb;
  max-width: 280px;
}

.hero-articles-preview h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 1rem;
  font-family: var(--font-oriental);
}

.mini-articles {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.mini-article {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.article-theme {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary-600);
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.mini-article h5 {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--neutral-800);
  line-height: 1.3;
  margin: 0;
}

.view-all-link {
  font-size: 0.875rem;
  color: var(--primary-600);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.view-all-link:hover {
  color: var(--primary-700);
}

/* Responsive */
@media (max-width: 768px) {
  .findevlab-article-card {
    flex: 0 0 calc(100% - 1rem);
  }
  
  .carousel-nav-container {
    gap: 1rem;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
  }
  
  .hero-articles-preview {
    max-width: 100%;
    margin-top: 2rem;
  }
}
  
  .form-group-inline input,
  .form-group-inline select {
    min-width: unset;
  }
  
.newsletter-premium-card {
  padding: 2rem 1.5rem;
  margin: 0 1rem;
}

/* ========================================
   PAGE À PROPOS - STYLES
======================================== */

/* Hero Section */
.page-hero {
  background: #ffffff;
  padding: 6rem 0 4rem;
  text-align: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--primary-800);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.quote-highlight {
  max-width: 600px;
  margin: 2.5rem auto 0;
  padding: 2rem;
  background: var(--white);
  border-radius: 0;
  border-left: 4px solid var(--accent);
  /* Ombre supprimée */
}

.quote-highlight p {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-highlight span {
  font-weight: 600;
  color: var(--accent);
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.content-block {
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 0 20px;
}

.content-block h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.75rem;
  color: var(--text-primary);
  margin: 3rem 0 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.content-block h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  color: var(--text-primary);
  margin: 2rem 0 1rem;
  font-weight: 600;
}

.executive-summary {
  background-color: #fff7d1;
  border: 1px solid rgba(250, 204, 21, 0.25);
  border-radius: 12px;
  padding: 1.75rem;
  margin: 2rem 0;
}
.executive-summary h3 {
  color: #8a4b0b;
  margin-top: 0;
  margin-bottom: 1rem;
}

.content-block p[style*="color: #85c1e9"] {
  font-size: 1.25rem;
}

.content-block p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 2rem;
  text-align: justify;
}

.content-block ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.content-block ul li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 1rem;
  padding-left: 1rem;
  text-align: justify;
}

.content-block img {
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
  display: block;
}

.approach-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.approach-list li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  color: var(--text-primary);
  font-weight: 500;
}

.approach-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  font-size: 1.25rem;

/* --- Styles pour l'effet de Parallaxe (Section "Qu'est-ce que Menara") --- */

/* Container de la section Parallaxe pour aligner les deux colonnes (image et texte) */
.parallax-container {
    display: flex; 
    align-items: stretch; 
}

/* Colonne de gauche : l'élément qui porte l'image et l'effet de parallaxe */
.parallax-image {
    /* ------------------------------------------------ */
    /* PROPRIÉTÉS CLÉS DU PARALLAXE */
    background-attachment: fixed; /* C'est la propriété CRUCIALE pour l'effet */
    background-position: center; 
    background-repeat: no-repeat; 
    background-size: cover; 
    /* ------------------------------------------------ */

    /* CHEMIN CORRIGÉ (depuis docs/css/ vers docs/assets/images/) */
    background-image: url('../assets/images/PDG.png');
    
    /* Définition de la taille de la colonne (450px de large) */
    flex: 0 0 450px;
    position: relative;
    
    /* Filtre pour l'effet noir et blanc et l'opacité */
    filter: grayscale(100%) brightness(50%); 
    
    /* Hauteur minimale pour que l'image soit visible */
    min-height: 500px; 
}

/* Mission Card */
.mission-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 0;
  text-align: center;
  border: 1px solid #e5e7eb;
}

.mission-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--accent);
}

.mission-card h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  color: var(--primary-700);
  margin-bottom: 1rem;
  font-weight: 600;
}

.mission-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Expertise Grid */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.expertise-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 0;
  border: none;
  transition: all 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-4px);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-50);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.expertise-card h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.375rem;
  color: var(--primary-700);
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.expertise-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Team Section */
.team-section {
  background: var(--sand-50);
}

.team-category {
  margin-bottom: 4rem;
}

.team-category h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2rem;
  color: var(--primary-700);
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  background: var(--white);
  padding: 2rem;
  border-radius: 0;
  text-align: center;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-4px);
  border-color: #d1d5db;
}

.member-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  overflow: hidden;
}

.placeholder-photo {
  background: var(--sand-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

.team-member h4 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  color: var(--primary-700);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.member-title {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.member-expertise {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  font-style: italic;
}

/* Member logos (affiliations) */
.member-logos{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin-top:14px;
}
.member-logos img{
  width:32px; height:32px; object-fit:contain;
  background: var(--sand-50);
  border:1px solid var(--sand-200);
  border-radius:0;
  padding:4px;
  border: 1px solid #e5e7eb;
}
.member-logos img:hover{
  transform: translateY(-1px);
  border: 1px solid #e5e7eb;
}

/* Partners Section */
.partners-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.partner-category h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  color: var(--primary-700);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.partner-tag {
  background: var(--sand-100);
  color: var(--text-primary);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid var(--sand-200);
  transition: all 0.2s ease;
}

.partner-tag:hover {
  background: var(--accent-50);
  border-color: var(--accent-200);
  color: var(--accent-700);
}

/* Responsive */
@media (max-width: 968px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .partners-categories {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 4rem 0 3rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .quote-highlight {
    margin: 2rem auto 0;
    padding: 1.5rem;
  }
  
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

/* ========================================
   PLATEFOMES PODCASTS
======================================== */

/* ========================================
   ARTICLE PDF CARD
======================================== */
.pdf-card{
  display:flex; align-items:center; gap:16px;
  background: var(--white);
  border:1px solid var(--sand-200);
  border-radius: 0;
  padding:16px 20px; margin: 8px 0 20px;
  border: 1px solid #e5e7eb;
}
.pdf-icon{
  width:48px; height:48px; border-radius:0;
  background: var(--sand-100); color: var(--accent);
  display:flex; align-items:center; justify-content:center;
  font-size:22px; flex-shrink:0;
}
.pdf-content h3{margin:0 0 4px; font-family: Arial, Helvetica, sans-serif; font-size:1.1rem}
.pdf-content p{margin:0 0 10px; color: var(--text-secondary)}
.pdf-actions{display:flex; gap:8px; flex-wrap:wrap}
.pdf-embed{margin:12px 0 20px}
.pdf-embed iframe{width:100%; height: 700px; border:1px solid var(--sand-200); border-radius: 0; background: var(--white)}

.platforms {
  text-align: center;
  margin: 4rem 0;
}

.platforms h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2.25rem;
  color: var(--primary-700);
  margin-bottom: 1rem;
  font-weight: 600;
}

.platforms p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.platform-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: var(--white);
  border: 2px solid var(--sand-200);
  border-radius: 0;
  text-decoration: none;
  transition: all 0.3s ease;
  /* Ombre supprimée */
}

.platform-link:hover {
  transform: translateY(-4px);
  /* Ombre supprimée */
  border-color: var(--accent-300);
}

.platform-link img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 0;
}

.platform-link span {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.platform-link:hover span {
  color: var(--accent);
}

/* Couleurs spécifiques aux plateformes */
.platform-link:nth-child(1):hover {
  border-color: #1DB954; /* Spotify Green */
}

.platform-link:nth-child(2):hover {
  border-color: #A855F7; /* Apple Purple */
}

.platform-link:nth-child(3):hover {
  border-color: #4285F4; /* Google Blue */
}

.platform-link:nth-child(4):hover {
  border-color: #FF6600; /* Deezer Orange */
}

.platform-link:nth-child(5):hover {
  border-color: #FF0000; /* YouTube Red */
}

/* =============================================
   MEDIA QUERIES MOBILE - STYLES GLOBAUX
   ============================================= */

@media (max-width: 768px) {
  /* Plateforme de podcasts - responsive */
  .platforms-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
  }
  
  .platform-link {
    padding: 1rem 0.5rem;
  }
  
  .platform-link img {
    width: 40px;
    height: 40px;
  }
  
  /* Typographie mobile */
  h1 {
    font-size: 2rem !important;
  }
  
  h2 {
    font-size: 1.75rem !important;
  }
  
  h3 {
    font-size: 1.4rem !important;
  }
  
  h4 {
    font-size: 1.2rem !important;
  }
  
  p {
    font-size: 1rem !important;
  }
  
  /* Boutons mobiles - taille tactile */
  .btn {
    min-height: 48px;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
  }
  
  /* Images responsive */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Tables responsive */
  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Espacements mobiles */
  .container {
    padding: 0 1rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  /* Navigation sticky moins haute sur mobile */
  :root {
    --header-height: 64px;
  }
  
  /* Réduire les espacements entre sections */
  .hero + .section,
  .section + .section {
    margin-top: 0;
  }
}

/* Petits téléphones (max-width: 480px) */
@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem !important;
  }
  
  h2 {
    font-size: 1.5rem !important;
  }
  
  .container {
    padding: 0 0.75rem;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .section-title-chip {
    font-size: 1.25rem !important;
    padding: 0.6rem 1.25rem;
  }
}

/* Tablettes en portrait (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main-nav ul {
    gap: 1.5rem;
  }
  
  .main-nav a {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
}
}