@charset "utf-8";

/* Variables spécifiques à Rotor */
:root {
    --rotor-blue: #3a6b94;
    --rotor-green: #008081;
    --rotor-greenclair: #319c9c;
    --rotor-beige: #e4d2be;
    --rotor-brown: #f6eee1;
    --rotor-yellow: #ffd860;
    --rotor-red: #c94221;
    --text-dark: #2d3748;
    --text-light: #718096;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--header-height: 85px;
}

/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Montserrat', Arial, sans-serif;
  background: var(--rotor-brown);
  color: var(--text-dark);
  margin: 0; padding: 0;
  line-height: 1.6;
}

h1 {
  font-family: 'Montserrat', 'Futura', Arial, sans-serif;
  font-size: 2em;
  font-weight: 900;
  color: var(--rotor-green, #008081);
  letter-spacing: 1.5px;
  margin-top: 0.5em;
  margin-bottom: 0.7em;
  text-transform: uppercase; /* ou rien du tout selon besoin */
  text-shadow: var(--shadow);
  border-bottom: 5px double var(--rotor-green);
  padding-bottom: 8px;
  line-height: 1.1;
}

h2 {
  font-family: 'Montserrat', 'Futura', Arial, sans-serif;
  font-size: 1.2em;
  font-weight: 600; /* Graisse */
  color: var(--rotor-blue);
  margin-top: 1.8em;
  margin-bottom: 0.6em;
  text-transform: full-width; /* ou rien du tout selon besoin */
  letter-spacing: 2px;        /* accent typographique BD */
  padding-left: 0px;
}

h3 {
  display: inline-block;
  padding: 6px 14px;
  font-family: 'Futura', 'Montserrat', Arial, sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--rotor-yellow, #ffd860);
  margin-top: 1em;
  margin-bottom: 0.45em;
  letter-spacing: 0.04em;
  position: relative;
  text-transform: none;
  background: var(--rotor-green, #008081);
  border-radius: 6px;
}

h4 {
  font-family: 'Montserrat', 'Futura', Arial, sans-serif;
  font-size: 1em;
  font-weight: 800; /* Graisse */
  color: var(--rotor-blue);
  margin-top: 0.3em;
  margin-bottom: 0.0em;
  text-transform: full-width; /* ou rien du tout selon besoin */
  letter-spacing: 1.2px;        /* accent typographique BD */
  word-spacing: 0.3em;
  padding-left: 0px;
}

a {
  color: var(--rotor-green);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--rotor-yellow);
}

header {
  background-color: var(--rotor-brown);
  color: var(--rotor-brown);
  padding: 0px 0 10;
  box-shadow: var(--shadow);
}

.navbar {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.navbar a {
  color: var(--rotor-brown);
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 8px;
  transition: background 0.2s;
}
.navbar a:hover, .navbar .active {
  background: var(--rotor-greenclair);
}

.container {
    max-width: 100%;
	width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-btn {
  display: inline-block;
  background: var(--rotor-yellow);
  color: var(--text-dark);
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  margin-top: 12px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow);
}
.cta-btn:hover {
  background: var(--rotor-red);
  color: var(--rotor-brown);
}
/* Cards ligne claire pour albums/actus */
.card {
  background: var(--rotor-brown);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 18px;
  margin-bottom: 24px;
  transition: transform 0.2s;
}
.card:hover {
  transform: translateY(-3px) scale(1.02);
  background: var(--rotor-beige);
}
.home {
    margin-bottom: 40px;
    padding: 0 20px;
	background: var(--rotor-brown);
}

/* ============ BANDE PRÉ-HEADER ============ */
.shared-pre-header{
  width:100%;
  height:62px;                     /* bande mince */
  background:var(--text-dark,#2d3748);
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:visible;
}

/* ========== MENU PRÉ-HEADER UNIFIÉ ========== */
.shared-pre-header ul {
  display: flex;
  align-items: center;                /* Tous les éléments alignés */
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  height: 62px;                       /* Hauteur fixe pour référence */
}

.shared-pre-header a {
  display: inline-flex;               /* Flex pour texte ET icône */
  align-items: center;                /* Centrage vertical */
  color: var(--rotor-yellow);
  font-size: 13px;
  font-weight: 600;
  line-height: 62px;                  /* Même hauteur que le container */
  padding: 0 6px;
  transition: color .15s, background .15s, transform .15s;
}

.shared-pre-header a:hover{color:var(--rotor-brown,#f6eee1);}

/* Style commun aux liens */
/* Base commune pour tous les liens du pré-header */
.pre-header-menu a {
  display: inline-block;   /* le lien devient « boîte » */
  position: relative;      /* référence pour le ::after */
  color: var(--rotor-yellow);
  padding: 0 6px;
  transition: color .15s, background .15s, transform .15s;
}

/* Trait initial, invisible (largeur 0) */
.pre-header-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--rotor-yellow, #ffd860);
  transform: translateX(-50%);
  transition: width .3s ease;      /* seule la largeur est animée */
}

/* Survol : le trait s’étire */
.pre-header-menu a:hover::after {
  width: 100%;
}

/* Page active : trait permanent, plus épais */
.pre-header-menu .active a::after,
.pre-header-menu .selected a::after {
  width: 100%;
  height: 3px;
}

/* Effet de survol unifié : couleur + fond + agrandissement */
.pre-header-menu a:hover {
  color: var(--rotor-brown);
  transform: scale(1.05);  /* Même effet que l'icône Instagram */
}

/* Page active : même logique avec l'agrandissement permanent */
.pre-header-menu .active a,
.pre-header-menu .selected a {
  color: var(--rotor-brown);
  cursor: default;
  transform: scale(1.05);  /* Agrandissement permanent pour la page active */
  filter: brightness(1.15) saturate(1.3);
}

/* ========== ICÔNE INSTAGRAM : ALIGNEMENT PARFAIT ========== */

/* Base : dimensions cohérentes avec le texte */
.instagram-menu {
  width: 24px;
  height: 24px;
  display: inline-block;              /* Même comportement que le texte */
  vertical-align: middle;             /* Alignement sur la ligne médiane */
  transition: transform 0.15s ease, filter 0.15s ease;
  margin-top: 10px;                          /* Supprime toute marge parasite */
  border-radius: 4px; /* Même arrondi que les liens texte */
}

/* Conteneur du lien Instagram : même traitement que les autres */
.pre-header-menu li:last-child a {
  display: inline-flex;               /* Flex pour centrer icône et texte */
  align-items: center;                /* Centrage vertical parfait */
  gap: 0;                             /* Pas d'espace supplémentaire */
}

/* Survol : harmonisé avec les liens texte */
.pre-header-menu a:hover .instagram-menu {
  transform: scale(1.05);             /* Même agrandissement que le texte */
  filter: brightness(0) invert(1); /* Force le blanc pur */
  padding: 0px;                              /* Compense la bordure */
  box-shadow: 0 0 0 0px rgba(0, 128, 129, 1.0); /* Simule le fond étendu */
}

/* État actif : cohérent avec la sélection */
.pre-header-menu .active img.instagram-menu,
.pre-header-menu .selected img.instagram-menu {
  transform: scale(1.05);
  filter: brightness(0) invert(1);    /* Blanc permanent pour l'état actif */
  padding: 2px;
  box-shadow: 0 0 0 2px rgba(58, 107, 148, 0.75);
}

/* Conteneur du lien Instagram : traitement identique aux autres */
.pre-header-menu li:last-child a {
  display: inline-block;                     /* Même comportement */
  position: relative;                        /* Pour le trait ::after */
}

/* TRAIT SOULIGNÉ pour l'icône Instagram (comme les autres liens) */
.pre-header-menu li:last-child a::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  width: 0;
  height: 3px;
  transform: translateX(-50%);
  transition: width .3s ease;
}

/* Survol : trait qui s'étire (IDENTIQUE aux autres liens) */
.pre-header-menu li:last-child a:hover::after {
  width: 100%;
}

/* État actif : trait permanent (IDENTIQUE aux autres liens) */
.pre-header-menu .active li:last-child a::after,
.pre-header-menu .selected li:last-child a::after {
  width: 100%;
  height: 3px;
	
}

/* ============ ICÔNE INSTAGRAM ============ */
.instagram-menu{width:25px;height:auto;display:block;}

/* ============ DÉCORS ============ */
.shared-pre-header-rotor-hello{
  position:absolute;left:240px;top:0px;width:186px;height:auto;pointer-events:none;z-index:100;
}
.shared-pre-header-copter{
  position:absolute;right:160px;top:6px;width:62px;height:auto;pointer-events:none;z-index:100;
}
.shared-pre-header-rotor-hello img,
.shared-pre-header-copter img{width:40%;height:auto;display:block;}

/* ============ RESPONSIVE ============ */
@media(max-width:640px){
  .shared-pre-header{height:30px;}
  .shared-pre-header ul{gap:14px;font-size:12px;}
  .shared-pre-header a{line-height:30px;}
  .shared-pre-header-rotor{width:60px;top:-14px;}
  .shared-pre-header-copter{width:58px;top:-12px;}
}


/* Menu burger - Configuration corrigée */
.menuBurger {
  position: fixed;
  top: 0;
  left: 0;
  width: 70vw;             /* largeur du panneau menu burger à gauche */
  max-width: none;        /* facultatif : limite sur desktop */
  height: 100vh;
  background: white;
  z-index: 10000;
  overflow-y: auto;
  transition: left 0.3s ease;
  display: none;
  /* ...autres réglages... */
}
.menuBurger.active {
  left: 0;
  display: block;
}

.burger-container {
  width: 100%;
  height: 100%;
  padding-top: 0px !important; /* pas de padding en haut pour coller l'image */
  margin: 0;
}

.burger-img-wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
}

.burger-img {
  width: 100%;              /* occupe toute la largeur disponible */
  max-width: 100%;
  height: auto;             /* conserve l’homothétie */
  display: block;
  border-radius: 0px;       /* arrondi BD */
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  margin-top: 0px;
  padding: 0px;
  margin-bottom: 0px;
}

.burger-menu {
    list-style: none;
    padding: 0px 20px 0px 20px;
    margin: 0;
}

.burger-menu li {
    margin-bottom: 20px;
}

.burger-menu a {
    display: block;
    padding: 5px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-bottom: 1px solid var(--rotor-beige);
    transition: all 0.3s ease;
}

.burger-menu a:hover {
    background-color: var(--rotor-beige);
    color: var(--rotor-green);
    transform: translateX(5px);
}

.burger-menu.main li:first-child a {
    border-top: 2px solid var(--rotor-green);
}

.burger-menu.main li:nth-child(3) a {
    font-weight: 700;
    color: var(--rotor-blue);
}

.burger-menu.main li:last-child a {
    background: var(--rotor-green);
    color: var(--rotor-yellow);
    border-radius: 8px;
}
.burger-img-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
  margin-bottom: 18px;
  /* ajoute un peu de padding si tu veux éviter que l'image colle aux bords */
}


/* ========== OVERLAY D'OMBRAGE POUR MENU BURGER ========== */

/* État initial : overlay invisible */
.menu-burger-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(00, 00, 00, 0.5);  /* Gris sombre avec transparence */
  z-index: 9999;                      /* Juste sous le menu burger */
  opacity: 0;
  transition: opacity 0.3s ease;      /* Animation fluide */
  pointer-events: auto;                /* Permet de cliquer pour fermer */
}

/* État actif : overlay visible et ombré */
.menu-burger-overlay.active {
  display: block;
  opacity: 1;
}

/* Menu burger : doit être au-dessus de l'overlay */
.menuBurger {
  z-index: 10000;  /* Au-dessus de l'overlay */
}

/* Style pour le bouton burger */
.burger {
  z-index: 10001;  /* Toujours accessible */
}

@media (max-width: 500px) {
  .burger-img {
    max-width: 100%;
    width: 100%;
    margin-bottom: 18px;
  }
}

.burger-menu .has-submenu > a {
  position: relative;
  /* Icône ou petite flèche à droite */
}

.burger-menu .submenu {
  display: none;
  flex-direction: column;
  margin-top: 6px;
  padding-left: 16px; /* Décale le sous-menu */
}

.burger-menu .has-submenu.open > .submenu {
  display: flex;
}

/* Style optionnel pour différencier le sous-menu */
.burger-menu .submenu li a {
  font-size: 16px;
  color: var(--rotor-green);
  padding: 9px 14px;
  border-radius: 6px;
}

.burger-menu .submenu li a:hover {
  background: var(--rotor-beige);
  color: var(--rotor-blue);
}

/************  HEADER PRINCIPAL  ************/
/*************  CONTENEUR PRINCIPAL  *************/
.app-header2{
  position:relative;               /* Permet les positions absolues internes */
  display:flex; align-items:center; justify-content:center;
  height:var(--header-height); width:100%; background:#fff; box-shadow:var(--shadow);
}

/* Le flex de distribution général reste inchangé */
.header-row{
  display:flex; align-items:center;
  justify-content:center;          /* Centrage global par sécurité */
  width:100%; max-width:1200px;
  height:85px; box-sizing:border-box;
}

/*************  LOGO CENTRAL  *************/
.logo-rotorcp{
  position:absolute;               /* Retire le logo du flux Flex */
  left:50%;                        /* Centre horizontalement */
  top:50%; transform:translate(-50%,-50%);
  width:600px; max-width:90vw;     /* S’adapte si l’écran est plus petit */
  height:85px; object-fit:contain;
  z-index:10;                      /* Toujours au-dessus des autres éléments */
}

/*************  BOUTON CONTACT (DROITE)  *************/
.buttons{
    position:absolute;
    right:20px;                 /* écarte de 20 px du bord droit */
    top:50%;                    /* point médian du header */
    transform:translateY(-50%); /* remonte de 50 % de sa propre hauteur */
    display:flex;               /* permet plusieurs boutons plus tard */
    align-items:center;         /* centre le bouton s’il change de hauteur */
}

/* Style optionnel pour le bouton */
.contact-button{
  background:var(--rotor-beige); color:var(--text-dark);
  border:2px solid var(--rotor-brown);
  gap:8px;
  padding:16px 18px;
  border-radius:8px;
  font-size:15px;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  cursor:pointer;
  transition:var(--transition);
  white-space: nowrap;
  line-height:1;              /* évite les décalages dus au line-height */
}

.contact-button:hover{
  background:var(--rotor-yellow); border-color:var(--rotor-green);
  transform:translateY(-2px);
}

/*************  BURGER (GAUCHE)  *************/
.burger{                               /* inchangé sauf centrage vertical */
  position:absolute; left:20px;
  top:50%; transform:translateY(-50%);
  background:none; border:none; padding:0; cursor:pointer;
}

@media(max-width:700px){              /* Ajustements mobiles */
  .logo-rotorcp{width:68vw;}
  .contact-button{padding:6px 14px;font-size:14px;}
}

/************  HEADER NAVIGATION  ************/
.app-header3 {
  height: 40px;
  background: var(--rotor-blue);
  text-align: center; /* Centre tout le contenu */
  box-shadow: var(--shadow);
}

.main-navigation ul {
  display: inline-block; /* Le ul devient inline pour pouvoir être centré */
  list-style: none;
  margin: 0;
  padding: 0;
  height: 40px;
}

.main-navigation li {
  display: inline-block; /* Aligne les li horizontalement */
  vertical-align: middle;
  margin: 0 12px; /* Espacement entre éléments */
}

.main-navigation a {
  display: inline-block;
  height: 40px;
  line-height: 40px; /* Centre verticalement le texte */
  padding: 0 12px;
  font-size: 0.95em;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  vertical-align: middle;
}

.main-navigation img {
  max-height: 26px;
  width: auto;
  vertical-align: middle;
}

/* ========== NAVIGATION PRINCIPALE AVEC ANIMATIONS ========== */

/* Base des liens avec transition */
.main-navigation a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 10px;
  font-size: 0.95em;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;  /* Animation fluide */
  position: relative;
  overflow: hidden;
}

/* Effet de survol élégant */
.main-navigation a:hover {
  color: var(--rotor-yellow, #ffd860);    /* Texte jaune Rotor */
  transform: translateY(-1px);            /* Léger soulèvement */
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);  /* Ombre subtile */
}

/* État actif (page courante) */
.main-navigation .active a,
.main-navigation a.active {
  color: var(--rotor-yellow, #ffd860);    /* Texte jaune Rotor */
  font-weight: 700;
  cursor: default;                         /* Pas de main, on y est déjà */
}

/* ========== ICÔNE ACCUEIL : CHANGEMENT DE FICHIER ========== */

/* État normal : fichier home.png par défaut */
.main-navigation img {
  content: url('file:///H|/RotorCp/rotorcp/www.rotorcp.com/images/menu/home.png');
  max-height: 26px;
  width: auto;
  margin: 0;
  transition: transform 0.2s ease, opacity 0.1s ease;
  /* Plus de filtre CSS complexe ! */
}

/* Survol : remplacement par home-active.png + agrandissement */
.main-navigation a:hover img {
  content: url('file:///H|/RotorCp/rotorcp/www.rotorcp.com/images/menu/home-active.png');
  transform: scale(1.1);
}

/* Page active : home-active.png permanent */
.main-navigation .active img,
.main-navigation a.active img {
  content: url('file:///H|/RotorCp/rotorcp/www.rotorcp.com/images/menu/home-active.png');
  color: var(--rotor-yellow, #ffd860);    /* Texte jaune Rotor */
}

/* Animation sous-ligne conservée (identique aux liens texte) */
.main-navigation a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--rotor-yellow, #ffd860);
  transition: width 0.3s ease;
  transform: translateX(-50%);
}

.main-navigation a:hover::after {
  width: 100%;
}

.main-navigation .active a::after {
  width: 100%;
  height: 3px;
}


/* Animation sous-ligne façon Tintin */
.main-navigation a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--rotor-yellow, #ffd860);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-navigation a:hover::after {
  width: 100%;                              /* Trait sous le lien au survol */
}

.main-navigation .active a::after {
  width: 100%;                              /* Trait permanent pour page active */
  height: 3px;                             /* Plus épais pour l'état actif */
}

/* Responsive : ajustements mobiles */
@media (max-width: 600px) {
  .main-navigation a {
    padding: 0 8px;
    font-size: 0.9em;
  }
  
  .main-navigation a:hover {
    transform: none;                         /* Pas de soulèvement sur mobile */
  }
}


/* Slider Swiper - Configuration mobile optimisée */
#swiper-container-home {
    width: 100%;
    height: 460px;
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
    overflow: visible;
    padding: 0 10px;
}

.swiper-slide {
    position: relative;
    flex-shrink: 0;
    width: calc(33.333% - 20px);
    height: 100%;
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--rotor-brown);
}

.swiper-slide:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}
/* Centrage forcé des slides quand il n'y en a qu'un visible */
@media (max-width: 767px) {
    .swiper-wrapper {
        justify-content: center !important;
    }
    
    .swiper-slide {
        flex-shrink: 0 !important;
    }
}

/* Correction pour les écrans intermédiaires */
@media (min-width: 600px) and (max-width: 767px) {
    #swiper-container-home {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
/* Conteneur unifié pour title et subtitle */
.swiper-slide .text-container {
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 20px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px 15px;
    border-radius: 8px;
    backdrop-filter: blur(1.5px);
    text-align: center;
}

.swiper-slide .subtitle {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.25px;
	word-spacing: 1.75px;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.9);
    margin-bottom: 10px;
    background: none;
    padding: 0;
    position: relative;
}

.swiper-slide .title {
    font-size: 20px;
    font-weight: bolder;
    letter-spacing: 1px;
    word-spacing: 2px;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    margin: 0;
    background: none;
    padding: 0;
    position: relative;
}

/* Navigation buttons */
.navigation-buttons {
    margin-top: 20px;
    position: relative;
    z-index: 100;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 15px 15px;
}

.navigation-button {
    background: white;
    border-radius: 12px;
    /* ↑ conserve le style */
    padding: 40px 20px 30px 20px; /* augmente le padding top si l'image est plus haute */
    text-align: center;
    text-decoration: none;
    box-shadow: var(--shadow);
    color: #2d3748;
    transition: transform 0.3s ease;
	display: flex;
    flex-direction: column;
    align-items: center;
    /* surtout pas de height fixe ! */
    min-height: 0; /* optionnel, pour tuer des héritages gênants *
}

.navigation-button:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.navigation-button img {
    width: 200px;
    height: 200px;
    margin-top: 18px;
    margin-bottom: 18px;
    display: block;
	object-fit: cover; /* adapte l’image sans la déformer */
}

.navigation-button .title {
    font-size: 20px; /* Même que h2 par défaut */
    font-weight: bolder;
    margin-bottom: 4px;
    color: var(--rotor-green, #008081); /* Couleur Rotor verte */
	letter-spacing: 1.5px;   /* Optionnel : typo BD plus marquée */
}

.navigation-button .subtitle {
    font-size: 16px; /* Même que h3 par défaut */
    color: #718096;
	text-transform: uppercase;
	letter-spacing: 1.1px;
    line-height: 1.0;
}
@media (max-width: 700px) {
  .navigation-button {
    padding: 24px 8px 18px 8px;
  }
  .navigation-button img {
    width: 72px;
    height: 72px;
  }
}
/* Bouton contact */
.contact-button {
    background-color: var(--rotor-beige);
    color: var(--text-dark);
    border: 2px solid var(--rotor-brown);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow);
}

.contact-button:hover {
    background-color: var(--rotor-brown);
    border-color: var(--rotor-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Animation pulse */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(228, 210, 190, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(228, 210, 190, 0); }
    100% { box-shadow: 0 0 0 0 rgba(228, 210, 190, 0); }
}

.contact-button.click-animate {
    animation: pulse 0.3s ease-out;
}

/* RÈGLES RESPONSIVE CRITIQUES */
@media (max-width: 768px) {
    /* Menu burger visible */
    .burger {
        display: block !important;
    }
    
    /* Navigation principale masquée */
    .main-navigation {
        display: none !important;
    }
    
    /* Pré-header masqué */
    .shared-pre-header {
        display: none !important;
    }
    
    /* Logo mobile masqué - SOLUTION PROBLÈME 3 */
    .logo-rotorcp {
        display: none !important;
    }
    
    /* Bouton contact masqué - SOLUTION PROBLÈME 3 */
    .buttons {
        display: none !important;
    }
    
    .contact-button {
        display: none !important;
    }
    .logo-rotor {
        display: flex !important;
        align-items: center;
        margin: 0 auto;
        max-width: 98px;
        height: auto;
    }
    /* Navigation buttons responsive */
    .navigation-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Slider mobile - SOLUTION PROBLÈME 1 */
    #swiper-container-home {
        padding: 0 15px !important; /* Espacement latéral restauré */
    }
    
    .swiper-slide {
        width: calc(100% - 10px) !important; /* Largeur ajustée */
        margin: 0 5px !important; /* Marge entre slides */
    }
}

@media (min-width: 769px) {
    .burger {
        display: none !important;
    }
    
    .main-navigation {
        display: block !important;
    }
}

@media (max-width: 480px) {
    .navigation-buttons {
        grid-template-columns: 1fr;
    }
    
    /* Slider très petit écran */
    #swiper-container-home {
        padding: 0 10px !important;
    }
	
}

/* Rubrique boutique : inspire des cards d’actus */
.boutique-section {
  max-width: 75%;
  margin: 60px auto;
  width: 95%;
  border: 4px solid #3a6b94;
  border-radius: 12px;
  padding: 2rem;
  background: transparent;
}

/* Ajustements responsive pour l'encadrement */
@media (max-width: 768px) {
  .boutique-section {
    border-width: 2px; /* Trait plus fin sur mobile */
    border-radius: 14px;
    padding: 1.5rem;
    margin: 40px auto 30px auto;
  }
}

@media (max-width: 480px) {
  .boutique-section {
    border-width: 2px;
    border-radius: 12px;
    padding: 1.2rem;
    margin: 30px auto 25px auto;
  }
}

.global-title {
    font-size: 28px;
	text-transform: uppercase; /* ou rien du tout selon besoin */
    font-weight: bolder;
	letter-spacing: 2px;
	word-spacing: 4px;
    text-align: center;
    color: var(--rotor-blue, #3a6b94);
	text-shadow: var(--shadow);
    margin-bottom: 36px;
}

.news-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 36px; /* Plus de gap, surtout vertical ! */
    width: 100%;
}

/* Réutilisation du style news-container personnalisé */
.news_wrapper {
  background: var(--rotor-brown);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;         /* important : stretch pour les enfants */
  width: 100%;                 /* chaque carte prend toute la hauteur du grid */
  padding: 0px 14px 14px 14px;
  transition: 0.2s;
  text-align: center;
}
.card-link {
  flex: 1 1 auto;               /* occupe toute la hauteur disponible */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 0px 14px 14px 14px;
}
.global-zstack {
  width: 100%;
  display: flex !important;
  flex-direction: column !important;      /* <--- LA CLÉ ! */
  align-items: center !important;         /* Centre horizontalement */
  margin-bottom: 12px;
}
.news_img {
  max-width: 640px;
  max-height: 100%;   /* Plus grand, visible, confortable pour le lecteur ! */
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 12px;
  background: #fff;    /* Pour bien détacher si la source ne remplit pas tout */
}
.global-zstack-label-boutique {
  background: var(--rotor-yellow, #ffd860);
  color: var(--rotor-green, #008081);
  font-weight: bolder;
  font-size: 12px;
  border-radius: 8px;
  padding: 6px 18px;
  margin-top: 8px;
  margin-bottom: 0;
  text-align: center;
  display: inline-block;   /* Pour shrink-wrap et centrage */
  box-shadow: var(--shadow);
}
.news_text_title_container {
  margin: 5px 0 0 0;
  text-align: center;
  flex: 0 0 auto;
}
.news_text_title {
  font-size: 20px;
  letter-spacing: 1px;
  word-spacing: 2px;
  font-weight: bolder;
  color: var(--rotor-green, #008081);
}
.news_text_text {
  color: var(--rotor-blue, #008081);
  font-size: 11px;
  margin-top: 8px;
  flex: 1 1 auto;
  text-align: center;
}
@media (max-width: 900px) {
  .news-container {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .news-container {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 98%;
  }
}
/* ===== CONTAINERS HORIZONTAUX ALIGNÉS ===== */

/* Configuration commune pour actus et boutique */
.actus-container, 
.boutique-container {
  display: flex;
  justify-content: space-between; /* Espacement uniforme entre éléments */
  align-items: stretch; /* Hauteur égale pour toutes les cartes */
  gap: clamp(0.8rem, 2vw, 1.5rem); /* Espacement adaptatif */
  
  /* Alignement sur les navigation-buttons et swiper */
  max-width: 1200px; /* Même largeur max que navigation-buttons */
  margin: 0 auto; /* Centrage horizontal */
  padding: 0 clamp(1rem, 1.5vw, 1.5rem); /* Marge latérale adaptative */
  
  /* Ligne unique */
  flex-wrap: nowrap;
  overflow-x: auto; /* Scroll horizontal sur très petits écrans */
  scroll-behavior: smooth;
}

/* Section actualités */
.actus-container {
  max-width: 1200px; /* Limite la largeur maximale */
  margin: 0 auto; /* Centre le container */
  padding: 0 clamp(1rem, 1.5vw, 1.5rem); /* Marge adaptative */
}

/* ===== ACTUS-CONTAINER ÉTENDU À 20PX DES BORDS ===== */
.actus-container {
  /* Étend à 20px des bords sur toutes les largeurs d'écran */
  max-width: calc(100vw - 20px); /* 100% largeur - 20px de chaque côté */
  margin: 0 auto; /* Maintient le centrage */
  padding: 0 0px; /* Exactement 20px de chaque côté */
  
  /* Préserve les autres propriétés existantes */
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: clamp(0.8rem, 2vw, 1.5rem);
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
}

/* Section boutique */
.boutique-section {
  margin: 40px auto;
  padding: 20 20px;
  width: 100%;
}

/* ===== CARTES UNIFORMISÉES ===== */

/* Cartes individuelles - taille égale */
.news_wrapper {
    /* PROPORTION ALLONGÉE comme demandé */
  flex: 1 1 0; /* Croissance égale maintenue */
  min-width: 320px; /* Augmenté de 280px à 320px */
  max-width: 35%; /* Augmenté de 33.333% à 35% pour plus d'allongement */
  
  /* Style Rotor ligne claire */
  background: white;
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
  
  /* Transition douce */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Disposition interne */
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* Effet survol ligne claire */
.news_wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  background: var(--rotor-beige);
}

/* Liens de cartes */
.card-link {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 20px 16px 24px 16px;
  height: 100%; /* Occupe toute la hauteur de la carte */
}

/* ===== CATÉGORIES ET LABELS ===== */

/* Catégorie d'actualité (DOSSIER, EN BREF...) */
.news_category {
  color: var(--rotor-green);
  font-size: 0.9em;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-align: center;
  text-transform: uppercase;
  background: none;
  width: 100%;
}

/* Label boutique (En vente sur AMAZON, etc.) */
.global-zstack-label-boutique {
  background: var(--rotor-yellow);
  color: var(--rotor-green);
  font-weight: 700;
  font-size: 12px;
  border-radius: 6px;
  padding: 4px 12px;
  margin-top: 12px;
  text-align: center;
  display: inline-block;
  box-shadow: var(--shadow);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== IMAGES OPTIMISÉES ===== */

/* Wrapper image */
.news_img_wrapper, .global-zstack {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
}

/* Images articles et boutique */
.news_img {
  width: 100%;
  max-width: 100%;
  height: 200px; /* Hauteur fixe pour uniformité */
  object-fit: cover; /* Recadrage harmonieux */
  border-radius: 8px;
  display: block;
  transition: transform 0.3s ease;
}

/* Zoom léger au survol */
.news_wrapper:hover .news_img {
  transform: scale(1.02);
}

/* ===== TEXTE ET TITRES ===== */

/* Container de titre */
.news_text_title_container {
  flex: 1; /* Occupe l'espace restant */
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 100%;
}

/* Titres d'articles */
.news_text_title {
  color: var(--rotor-green);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem); /* Taille adaptative */
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 0;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

/* Texte descriptif */
.news_text_text {
  color: var(--text-dark);
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  text-align: center;
  opacity: 0.9;
}

/* ===== TITRES DE SECTIONS ===== */

.global-title {
  text-align: center;
  margin-bottom: 30px;
}

.global-title h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--rotor-blue);
  letter-spacing: 1px;
  margin: 0;
}

/* ===== BOUTON ROTOR LIGNE CLAIRE ===== */

/* Conteneur du bouton */
.boutique-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto 20px auto;
  text-align: center;
}

/* Base du bouton Rotor */
.rotor-button {
  /* Couleurs authentiques Rotor */
  background: linear-gradient(135deg, var(--rotor-yellow) 0%, #ffdc3a 100%);
  color: var(--rotor-green);
  border: 3px solid var(--rotor-green);
  
  /* Dimensions et espacement */
  padding: 14px 28px 14px 28px;
  border-radius: 12px;
  
  /* Typographie ligne claire */
  font-family: 'Montserrat', 'Futura', Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: none;
  
  /* Interaction */
  cursor: pointer;
  outline: none;
  user-select: none;
  
  /* Layout interne */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  
  /* Transitions fluides */
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Ombre ligne claire */
  box-shadow: 
    0 4px 8px rgba(0, 128, 129, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  
  /* Taille minimale pour accessibilité */
  min-height: 48px;
  min-width: 200px;
}

/* Icône dans le bouton */
.button-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

/* ===== ÉTATS INTERACTIFS ===== */

/* Survol - Effet Hergé élégant */
.rotor-button:hover {
  background: linear-gradient(135deg, var(--rotor-green) 0%, #00a0a0 100%);
  color: var(--rotor-brown);
  border-color: var(--rotor-blue);
  
  /* Élévation douce */
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 8px 16px rgba(0, 128, 129, 0.25),
    0 4px 8px rgba(58, 107, 148, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Icône animée au survol */
.rotor-button:hover .button-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Clic actif - Feedback tactile */
.rotor-button:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 
    0 2px 4px rgba(0, 128, 129, 0.2),
    inset 0 2px 4px rgba(0, 0, 0, 0.1);
  transition-duration: 0.1s;
}

/* Focus pour accessibilité */
.rotor-button:focus-visible {
  outline: 3px solid var(--rotor-yellow);
  outline-offset: 2px;
  background: var(--rotor-beige);
  color: var(--rotor-green);
}

/* ===== VARIANTES DE STYLE ===== */

/* Bouton secondaire (optionnel) */
.rotor-button.secondary {
  background: var(--rotor-beige);
  color: var(--rotor-blue);
  border-color: var(--rotor-brown);
}

.rotor-button.secondary:hover {
  background: var(--rotor-brown);
  color: var(--rotor-green);
  border-color: var(--rotor-green);
}

/* Bouton compact (optionnel) */
.rotor-button.compact {
  padding: 10px 20px;
  font-size: 14px;
  min-width: 150px;
}

/* ===== ANIMATIONS LIGNE CLAIRE ===== */

/* Animation d'apparition */
@keyframes buttonFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Pulsation subtile (optionnelle) */
@keyframes subtlePulse {
  0%, 100% { 
    box-shadow: 0 4px 8px rgba(0, 128, 129, 0.15);
  }
  50% { 
    box-shadow: 0 6px 12px rgba(0, 128, 129, 0.25);
  }
}

/* Application de l'animation */
.rotor-button {
  animation: buttonFadeIn 0.6s ease-out;
}

/* Animation continue subtile (optionnelle) */
.rotor-button.animated {
  animation: buttonFadeIn 0.6s ease-out, subtlePulse 3s ease-in-out infinite;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablette */
@media (max-width: 768px) {
  .rotor-button {
    padding: 12px 24px;
    font-size: 15px;
    min-width: 180px;
  }
  
  .boutique-cta {
    margin: 30px auto 50px auto;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .rotor-button {
    padding: 12px 20px;
    font-size: 14px;
    min-width: 160px;
    width: 90%;
    max-width: 280px;
  }
  
  .rotor-button:hover {
    transform: none; /* Pas d'effet 3D sur mobile */
  }
  
  .boutique-cta {
    margin: 25px auto 40px auto;
  }
}

/* ===== ACCESSIBILITÉ ===== */

/* Respect des préférences utilisateur */
@media (prefers-reduced-motion: reduce) {
  .rotor-button {
    animation: none;
    transition-duration: 0.1s;
  }
  
  .rotor-button:hover {
    transform: none;
  }
  
  .button-icon {
    transition: none;
  }
}

/* Contraste élevé */
@media (prefers-contrast: high) {
  .rotor-button {
    border-width: 4px;
    color: #000;
    background: #fff;
  }
  
  .rotor-button:hover {
    background: #000;
    color: #fff;
  }
}


/* ===== RESPONSIVE DESIGN ===== */

/* Tablettes */
@media (max-width: 900px) {
  .actus-container, 
  .boutique-container {
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .news_wrapper {
    min-width: 250px;
  }
  
  .news_img {
    height: 180px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .actus-container, 
  .boutique-container {
    flex-direction: column; /* Passage en colonne sur mobile */
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .news_wrapper {
    min-width: 100%;
    max-width: 100%;
    margin-bottom: 0;
  }
  
  .news_img {
    height: 160px;
  }
}

/* Très petits écrans */
@media (max-width: 400px) {
  .card-link {
    padding: 16px 12px 20px 12px;
  }
  
  .news_img {
    height: 140px;
  }
}

/* ===== ANIMATIONS LIGNE CLAIRE ===== */

/* Animation d'apparition progressive */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Application conditionnelle (avec JavaScript) */
.news_wrapper.animate {
  animation: fadeInUp 0.6s ease-out both;
}

/* Délais échelonnés pour effet cascade */
.news_wrapper:nth-child(1).animate { animation-delay: 0.1s; }
.news_wrapper:nth-child(2).animate { animation-delay: 0.2s; }
.news_wrapper:nth-child(3).animate { animation-delay: 0.3s; }

/* Respect des préférences utilisateur */
@media (prefers-reduced-motion: reduce) {
  .news_wrapper {
    animation: none;
    transition: none;
  }
  
  .news_wrapper:hover {
    transform: none;
  }
}


/* Footer */
footer {
  background: var(--text-dark, #2d3748);
  color: var(--rotor-brown);
  text-align: center;
  padding: 50px 0 30px;
  margin-top: 40px;
}
container {
  background: var(--text-dark, #2d3748);
  color: var(--rotor-brown);
  text-align: center;
  padding: 50px 0 30px;
  margin-top: 40px;
}
logo-footer img {
  margin-bottom: 18px;
  height: 44px;
}
.app-footer {
    background: var(--text-dark);
    color: var(--rotor-brown);
    padding: 30px 0;
    margin-top: 5px;
}

.app-footer .container {
    display: flex;
    flex-direction: column;
	max-width: 100%;
	width: 100%;
    margin: 0 auto;
    padding: 0px 20px 0px 20px;
    align-items: center
}

.app-footer .logo {
    margin-bottom: 30px;
}

.cols {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    width: 100%;
    max-width: 1000px;
}

.col .title {
    font-size: 20px;
    font-weight: bolder;
	letter-spacing: 1px;
    word-spacing: 2px;
    margin-bottom: 20px;
    color: var(--rotor-brown);
}

.col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.col ul li {
    margin-bottom: 10px;
}

.col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.col a:hover {
    color: var(--rotor-brown);
}

/* Icônes sociales - Footer */
.social-icons {
    display: flex;
    gap: 15px;
    align-items: center; /* Alignement vertical des icônes */
    justify-content: center; /* Alignement horizontal */
}

.social-icons .icon {
    width: 40px;
    height: 40px;
    display: inline-block; /* Changement crucial */
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 4px; /* Coins arrondis pour l'effet hover */
}

/* Effet hover sur les icônes */
.social-icons .icon:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* Images à l'intérieur des icônes */
.social-icons .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Responsive footer */

@media (max-width: 768px) {
  .container {
    padding: 16px 3vw;
  }
  .cols {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
	  }
  .navbar {
    flex-direction: column;
    gap: 14px;
  }
  h1 {
    font-size: 1.5em;
  }
  .card {
    padding: 12px;
  }
}
@media (max-width: 480px) {
    .cols {
        grid-template-columns: 1fr;
    }
}
/* ======= NAVIGATION SOUS LE SLIDER – VERSION FINALE ======= */
.navigation-buttons {
  display: flex !important;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 18px;
  margin: 24px auto 24px;
  max-width: 960px;
  padding: 0 12px;
  box-sizing: border-box;
}

.navigation-button {
  flex: 0 1 210px;
  max-width: 220px;
  padding: 12px 10px 10px 12px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  text-decoration: none;
  color: var(--text-dark, #2d3748);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.navigation-button img {
  width: 100px !important;
  height: auto !important;
  display: block;
}

.navigation-button.title {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.navigation-button.subtitle {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.95;
}

.navigation-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Tablette + mobile : toujours 2 cartes côte à côte */
@media (max-width: 768px) {
  .navigation-buttons {
    gap: 14px;
  }

  .navigation-button {
    flex: 0 1 calc(50% - 16px);
    max-width: none;
    padding: 8px 8px 10px;
  }

  .navigation-button img {
    width: 56px !important;
  }

  .navigation-button .title {
    font-size: 0.9rem;
  }

  .navigation-button .subtitle {
    font-size: 0.78rem;
  }

  .navigation-button:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
}

/* Très petit mobile, toujours 2 cartes */
@media (max-width: 480px) {
  .navigation-buttons {
    gap: 10px;
    padding: 0 8px;
  }

  .navigation-button {
    flex: 0 1 calc(50% - 12px);
    padding: 7px 6px 9px;
  }

  .navigation-button img {
    width: 52px !important;
  }

  .navigation-button .title {
    font-size: 0.86rem;
  }

  .navigation-button .subtitle {
    font-size: 0.74rem;
  }
}

/* ===== PAGE INTÉRIEURE TYPE ARTICLE / BLOG ===== */

.page-main.page-article {
  background: #d8c9b6;
  padding: 0;
}

.article-shell {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  background: #f3ede2;
  border-left: 10px solid #b9a45a;
  border-right: 10px solid #b9a45a;
  box-shadow: none;
}

.article-layout {
  padding: 26px 22px 38px;
}

.article-header {
  margin-bottom: 26px;
  text-align: center;
}

.article-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  background: var(--rotor-green);
  color: var(--rotor-yellow);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.article-title {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--rotor-blue);
  border-bottom: none;
  text-shadow: none;
}

.article-meta {
  margin: 0 0 14px;
  color: var(--rotor-blue);
  font-size: 0.98rem;
  font-weight: 700;
}

.article-intro {
  max-width: 62ch;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

.article-hero {
  margin: 0 0 28px;
  text-align: center;
}

.article-hero img {
  width: 100%;
  max-width: 100%;
  border: 1px solid rgba(58, 107, 148, 0.25);
  display: block;
}

.article-hero figcaption {
  margin-top: 10px;
  font-size: 0.92rem;
  color: var(--text-light);
  font-style: italic;
}

.article-section {
  margin-bottom: 28px;
}

.article-section p {
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ===== LISTES ARTICLE VERSION ROTOR ===== */

.article-list {
  list-style: none;
  margin: 18px 0 0 46px;
  padding: 0;
}

.article-list li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 28px;
  line-height: 1.7;
}

.article-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 12px;
  height: 12px;
  background: var(--rotor-yellow);
  border: 2px solid var(--rotor-blue);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.08);
}

.article-callout {
  margin: 28px 0;
  padding: 16px 18px;
  background: #e8dfcf;
  border-left: 6px solid var(--rotor-blue);
}

.article-callout h4 {
  margin-top: 0;
  margin-bottom: 8px;
}

.article-callout p {
  margin: 0;
}

.article-footer {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 2px solid rgba(58, 107, 148, 0.18);
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.article-footer {
  margin-top: 36px;
  padding-top: 20px;
  padding-bottom: 10px;
  background: transparent;
  border-top: 2px solid rgba(58, 107, 148, 0.18);
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.article-tag {
  display: inline-block;
  padding: 6px 12px;
  background: var(--rotor-blue);
  color: var(--rotor-white);
  border: 1px solid rgba(0, 128, 129, 0.22);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 999px;
}

.article-pagination {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.article-pagination a {
  display: inline-block;
  padding: 10px 14px;
  background: var(--rotor-yellow);
  color: var(--rotor-green);
  font-weight: 700;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.article-pagination a:hover {
  background: var(--rotor-red);
  color: var(--rotor-beige);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .article-pagination {
    flex-direction: column;
  }

  .article-pagination a {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-main.page-article {
    padding: 18px 0 30px;
  }

  .article-shell {
    width: min(100%, calc(100% - 16px));
    border-left: 6px solid #b9a45a;
    border-right: 6px solid #b9a45a;
  }

  .article-layout {
    padding: 18px 14px 26px;
  }

  .article-section p,
  .article-intro {
    font-size: 1rem;
    line-height: 1.7;
  }

  .article-list {
    margin-left: 28px;
  }

  .article-list li {
    padding-left: 24px;
  }

  .article-list li::before {
    width: 10px;
    height: 10px;
  }

  .article-pagination {
    flex-direction: column;
  }
}

@charset "utf-8";
/* CSS Document */
