@charset "UTF-8";

/* Code page defaut new style to apply */
body {
  background-color: #FFFCF0 !important;
  color: #3E350A !important;
}

/* 3. Style de bouton générique (prêt pour la Hero Section) */
.btn-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  font-size: 18px;
}
.btn-new--yellow {
  background-color: #E8C420;
  color: #3E350A;
}
.btn-new--yellow:hover {
  background-color: rgb(234.3841463415, 202.1158536585, 55.1158536585);
}
.btn-new--dark-blue {
  background-color: #262D41;
  color: #FFFCF0;
}
.btn-new--dark-blue:hover {
  background-color: rgb(47.4077669903, 56.140776699, 81.0922330097);
}

/* 1. Couleurs de texte */
.text-white-new {
  color: #FFFCF0;
}

.text-yellow-new {
  color: #E8C420;
}

.text-light-yellow-new {
  color: #FFE59F;
}

.text-dark-yellow-new {
  color: #3E350A;
}

.text-blue-new {
  color: #AEB7D3;
}

.text-light-blue-new {
  color: #DDE5FC;
}

.text-dark-blue-new {
  color: #262D41;
}

/* Container global responsive */
.container-new {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  max-width: 100%;
}
@media (min-width: 992px) {
  .container-new {
    max-width: 1000px;
  }
}
@media (min-width: 1280px) {
  .container-new {
    max-width: 1200px;
  }
}
@media (min-width: 1500px) {
  .container-new {
    max-width: 1500px;
  }
}

/* Typographies fluides (Base mobile calculée pour un écran ~375px) */
.h1-new {
  font-size: clamp(2.725rem, 1.4rem + 3.3vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.h2-new {
  font-size: clamp(1.75rem, 1.35rem + 1.2vw, 2.875rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 500;
}

.h3-new {
  font-size: clamp(1.5rem, 1.2rem + 1.15vw, 2.375rem);
  line-height: 1.2;
  font-weight: 500;
}

.h4-new {
  font-size: clamp(1.3rem, 1.1rem + 0.9vw, 1.975rem);
  line-height: 1.25;
  font-weight: 500;
}

.h5-new {
  font-size: clamp(1.125rem, 0.99rem + 0.73vw, 1.55rem);
  line-height: 1.3;
  font-weight: 500;
}

.p-new {
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);
  line-height: 1.6;
}

.surtitre-new {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: clamp(0.85rem, 0.8rem + 0.1vw, 1rem);
  /* Le point animé (Dot + Onde) */
}
.surtitre-new__dot {
  position: relative;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #E8C420;
  flex-shrink: 0;
  /* L'onde radar qui s'élargit */
}
.surtitre-new__dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #E8C420;
  transform: translate(-50%, -50%) scale(1);
  animation: pulse-wave 2s infinite ease-out;
  pointer-events: none;
}
.surtitre-new__text {
  line-height: 1;
  letter-spacing: 0.05em;
  font-size: clamp(0.85rem, 0.8rem + 0.1vw, 1rem);
}

/* 
  Animation Keyframes pour l'onde
  Note: L'utilisation de transform: scale() et opacity garantit 
  un rendu 60fps accéléré par le GPU.
*/
@keyframes pulse-wave {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.65;
  }
  70% {
    /* Taille maximale du halo jaune translucide qu'on voit sur ta capture */
    transform: translate(-50%, -50%) scale(1.9);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.9);
    opacity: 0;
  }
}
/* Page */
/* Section Hero */
/* ==========================================================================
   HERO SECTION STYLES (100vh Fullscreen + Layering Overlay)
   ========================================================================== */
.section-hero, .section-hero-salledebain {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: transparent;
  /* Calque 2 : Dégradé sous le texte mais AU-DESSUS de l'image */
}
.section-hero__gradient-overlay, .section-hero-salledebain__gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(-195deg, #ffe59f 0%, rgba(255, 229, 159, 0.15) 40%, rgba(255, 229, 159, 0) 100%);
  z-index: 2;
  pointer-events: none;
}
.section-hero, .section-hero-salledebain {
  /* Calque 1 : Image à droite cropée en grand rond */
}
.section-hero__media, .section-hero-salledebain__media {
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  width: 85%;
  height: 50vh;
}
@media (min-width: 992px) {
  .section-hero__media, .section-hero-salledebain__media {
    top: 0;
    right: 0;
    bottom: 0;
    width: 48vw;
    height: 100vh;
  }
}
@media (min-width: 1250px) {
  .section-hero__media, .section-hero-salledebain__media {
    top: 0;
    right: 0;
    bottom: 0;
    width: 56vw;
    height: 100vh;
  }
}
.section-hero__media, .section-hero-salledebain__media {
  /* Découpe arrondie façon arche / grand cercle qui déborde */
  clip-path: ellipse(80% 84% at 80% 67%);
  -webkit-clip-path: ellipse(80% 84% at 80% 67%);
  overflow: hidden;
}
@media (max-width: 991px) {
  .section-hero__media, .section-hero-salledebain__media {
    clip-path: ellipse(80% 84% at 80% 67%);
    -webkit-clip-path: ellipse(80% 65% at 82% 70%);
  }
}
.section-hero__media img, .section-hero-salledebain__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.section-hero, .section-hero-salledebain {
  /* Calque 3 : Contenu Texte au-dessus de tout */
}
.section-hero__container, .section-hero-salledebain__container {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .section-hero__container, .section-hero-salledebain__container {
    align-items: flex-start;
    padding-top: 3.5rem;
  }
}
.section-hero__content, .section-hero-salledebain__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.75rem;
  max-width: 500px;
}
@media (max-width: 991px) {
  .section-hero__content, .section-hero-salledebain__content {
    padding-top: 5rem;
    max-width: 100%;
  }
}
.section-hero__content h1, .section-hero-salledebain__content h1 {
  margin: 0;
}
.section-hero__content p, .section-hero-salledebain__content p {
  margin: 0;
  max-width: 480px;
  opacity: 0.9;
}

.section-hero-salledebain {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 650px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: transparent;
  overflow: visible !important;
  margin-bottom: 5rem;
  /* Calque 2 : Dégradé sous le texte mais AU-DESSUS de l'image */
}
.section-hero-salledebain__gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #dde5fc 0%, rgba(221, 229, 252, 0.45) 45%, rgba(221, 229, 252, 0) 100%);
  z-index: 2;
  pointer-events: none;
}
.section-hero-salledebain {
  /* Calque 1 : Image à droite cropée en grand rond */
  /* Calque 3 : Contenu Texte au-dessus de tout */
}
.section-hero-salledebain__container {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .section-hero-salledebain__container {
    padding-top: 3.5rem;
  }
}
.section-hero-salledebain__flux {
  padding-top: 2rem;
  width: 100%;
}
.section-hero-salledebain__flux li {
  list-style: none !important;
}
.section-hero-salledebain__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  margin-top: 9rem;
  max-width: 550px;
}
@media (max-width: 991px) {
  .section-hero-salledebain__content {
    padding-top: 5rem;
    max-width: 100%;
  }
}
.section-hero-salledebain__content h1 {
  margin: 0;
}
.section-hero-salledebain__content p {
  margin: 0;
  max-width: 480px;
  opacity: 0.9;
}

/* Section Problematique */
.section-problematique {
  padding-top: 7rem;
  padding-bottom: 4rem;
}
.section-problematique__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 992px) {
  .section-problematique__grid {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 3rem;
  }
}
.section-problematique {
  /* Colonne Gauche : Titre */
}
.section-problematique__title-col h2 {
  margin: 0;
  margin-top: 1.5rem;
  max-width: 450px;
}
.section-problematique {
  /* Colonne Droite : Carte Jaune */
}
.section-problematique__card {
  border-radius: 20px;
  padding: 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  background-color: #FFE59F;
}
@media (min-width: 768px) {
  .section-problematique__card {
    padding: 3.5rem 3rem;
  }
}
.section-problematique {
  /* Zone de texte WYSIWYG */
}
.section-problematique__text p {
  margin-top: 0;
  margin-bottom: 1.25rem;
  opacity: 0.9;
}
.section-problematique__text p:last-child {
  margin-bottom: 0;
}
.section-problematique {
  /* Grille des 4 Statistiques */
}
.section-problematique__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding-top: 1rem;
}
@media (min-width: 600px) {
  .section-problematique__stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
.section-problematique__stats .stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.section-problematique__stats .stat-item__number {
  font-weight: 800;
  line-height: 1;
  font-size: clamp(2rem, 1.5rem + 2vw, 3.5rem);
}
.section-problematique__stats .stat-item__label {
  font-size: 0.95rem;
  line-height: 1.3;
  opacity: 0.85;
}

/* Section Alternée */
.section-alternee {
  padding-top: 7.5rem;
  padding-bottom: 6rem;
  width: calc(100% - 3rem);
  margin: 0 auto;
  border-radius: 12px;
}
.section-alternee:not(:last-child) {
  margin-bottom: 5rem;
}
.section-alternee {
  /* Gestion des styles de fond */
}
.section-alternee.block-alterne--sans-fond {
  background-color: transparent;
}
@media (max-width: 991px) {
  .section-alternee.block-alterne--sans-fond > .container-new {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.section-alternee.block-alterne--fond-clair {
  background-color: #AEB7D3;
}
.section-alternee.block-alterne--fond-sombre {
  background-color: #262D41;
}
.section-alternee {
  /* Grille & Alignement */
}
.section-alternee__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 992px) {
  .section-alternee__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.section-alternee {
  /* Alternance automatique CSS (Les blocs pairs inversent l'ordre) */
}
@media (min-width: 992px) {
  .section-alternee:nth-child(even) .section-alternee__grid {
    /* Inverse les colonnes : Média à gauche, Texte à droite */
  }
  .section-alternee:nth-child(even) .section-alternee__grid .section-alternee__content {
    order: 2;
  }
  .section-alternee:nth-child(even) .section-alternee__grid .section-alternee__media {
    order: 1;
  }
}
.section-alternee {
  /* Colonne Contenu Texte */
}
.section-alternee__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  text-align: left;
}
.section-alternee__content h2 {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 530px;
}
.section-alternee__content p {
  margin: 0;
  opacity: 0.9;
}
.section-alternee {
  /* Colonne Média / Image */
}
.section-alternee__media {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.section-alternee__media .media-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 600px;
}
.section-alternee__media .media-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-alternee__media .media-wrapper {
  /* Badge Optionnel (Incliné + Chevauchement) */
}
.section-alternee__media .media-wrapper .media-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -40%) rotate(-3deg);
  padding: 0.6rem 1rem;
  font-weight: 800;
  font-size: 1.325rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 0px;
  background-color: #E8C420;
  color: #FFFCF0;
  z-index: 2;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
}

/* Section FAQ */
.faq-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.faq-section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.faq-section {
  /* 
     Grille 2 colonnes étanches :
     align-items: flex-start garantit que chaque colonne grandit 
     indépendamment sans impacter la hauteur des éléments voisins.
  */
}
.faq-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .faq-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.faq-section__column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Carte Accordéon */
.faq-card {
  border-radius: 12px;
  overflow: hidden;
  transition: background-color 0.2s ease;
  background-color: #FFE59F;
  padding-bottom: 0.4rem;
}
.faq-card__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  padding-bottom: 0;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-weight: 600;
  /* Icône + / - CSS pure */
}
.faq-card__trigger .faq-card__icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.faq-card__trigger .faq-card__icon::before, .faq-card__trigger .faq-card__icon::after {
  content: "";
  position: absolute;
  background-color: #3E350A;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-card__trigger .faq-card__icon::before {
  top: 8px;
  left: 0;
  width: 100%;
  height: 2px;
}
.faq-card__trigger .faq-card__icon::after {
  top: 0;
  left: 8px;
  width: 2px;
  height: 100%;
}
.faq-card__trigger[aria-expanded=true] .faq-card__icon::after {
  transform: rotate(90deg);
  opacity: 0;
}
.faq-card {
  /*
     Animation fluide moderne de la hauteur via grid-template-rows (sans JS)
  */
}
.faq-card__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-card__content[aria-hidden=false] {
  grid-template-rows: 1fr;
}
.faq-card__inner {
  overflow: hidden;
  padding: 1rem 1.5rem 0rem 1.5rem;
  transition: padding-bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-card {
  /* Quand le contenu est visible, on injecte le padding-bottom */
}
.faq-card__content[aria-hidden=false] .faq-card__inner {
  padding-bottom: 1.5rem;
}
.faq-card {
  /* Encadré Optionnel "Bon à savoir" */
}
.faq-card__bon-a-savoir {
  margin-top: 1.25rem;
  padding: 1.25rem;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: #FFFCF0;
}
.faq-card__bon-a-savoir .icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: #AEB7D3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-card__bon-a-savoir .icon-circle svg {
  max-width: 50%;
  height: auto;
}
.faq-card__bon-a-savoir .content h4 {
  margin-bottom: 0.25rem;
}

/* Bannière Support Bas de Page */
.faq-section__cta-banner {
  margin-top: 2rem;
  padding: 1.5rem 1.5rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: space-between;
  background-color: #DDE5FC;
}
@media (min-width: 768px) {
  .faq-section__cta-banner {
    flex-direction: row;
    align-items: center;
    padding: 1.8rem 2rem;
  }
}
.faq-section__cta-banner .info h3 {
  margin-bottom: 0.25rem;
}

/* Section maillage interne */
/* ==========================================================================
   SECTION MAILLAGE INTERNE STYLES
   ========================================================================== */
.section-maillage {
  padding-top: 4rem;
  padding-bottom: 5rem;
}
.section-maillage__header {
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
.section-maillage__header h2 {
  margin: 0;
}
.section-maillage {
  /* Grille réactive d'adaptation automatique selon le nombre de cartes */
}
.section-maillage__grid {
  display: grid;
  gap: 1.5rem;
  width: 100%;
  align-items: flex-end;
  /* Cas 1 Carte : Full Width */
}
.section-maillage__grid.cards-count-1 {
  grid-template-columns: 1fr;
}
.section-maillage__grid.cards-count-1 .maillage-card {
  height: 500px;
}
.section-maillage__grid {
  /* Cas 2 Cartes : 2 Colonnes identiques */
}
.section-maillage__grid.cards-count-2 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .section-maillage__grid.cards-count-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.section-maillage__grid.cards-count-2 {
  /* Alternance 2 Cartes : Card 1 en bas, Card 2 relevée en haut */
}
@media (min-width: 768px) {
  .section-maillage__grid.cards-count-2 .maillage-card:nth-child(2) {
    margin-bottom: 3rem;
  }
  .section-maillage__grid.cards-count-2 .maillage-card:nth-child(2) .maillage-card__overlay {
    background: linear-gradient(180deg, rgba(38, 45, 65, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  }
  .section-maillage__grid.cards-count-2 .maillage-card:nth-child(2) .maillage-card__content {
    justify-content: flex-start;
  }
}
.section-maillage__grid {
  /* Cas 3 Cartes : Escalier progressif (Bas -> Milieu -> Haut) */
}
.section-maillage__grid.cards-count-3 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .section-maillage__grid.cards-count-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .section-maillage__grid.cards-count-3 .maillage-card:nth-child(1) {
    margin-bottom: 0;
  }
  .section-maillage__grid.cards-count-3 .maillage-card:nth-child(2) {
    margin-bottom: 2.5rem;
  }
  .section-maillage__grid.cards-count-3 .maillage-card:nth-child(2) .maillage-card__overlay {
    background: linear-gradient(180deg, rgba(38, 45, 65, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  }
  .section-maillage__grid.cards-count-3 .maillage-card:nth-child(2) .maillage-card__content {
    justify-content: flex-start;
  }
  .section-maillage__grid.cards-count-3 .maillage-card:nth-child(3) {
    margin-bottom: 5rem;
  }
}
.section-maillage__grid {
  /* Cas 4 Cartes : Alternance pure (Bas, Haut, Bas, Haut) */
}
.section-maillage__grid.cards-count-4 {
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .section-maillage__grid.cards-count-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .section-maillage__grid.cards-count-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1024px) {
  .section-maillage__grid.cards-count-4 .maillage-card:nth-child(odd) {
    margin-bottom: 0;
  }
  .section-maillage__grid.cards-count-4 .maillage-card:nth-child(even) {
    margin-bottom: 3.5rem;
  }
  .section-maillage__grid.cards-count-4 .maillage-card:nth-child(even) .maillage-card__overlay {
    background: linear-gradient(180deg, rgba(38, 45, 65, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  }
  .section-maillage__grid.cards-count-4 .maillage-card:nth-child(even) .maillage-card__content {
    justify-content: flex-start;
  }
}

/* Composant Carte Individuelle */
.maillage-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 500px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .maillage-card {
    height: 420px;
  }
}
.maillage-card:hover {
  transform: translateY(-4px);
}
.maillage-card {
  /* Image de fond */
}
.maillage-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.5s ease;
  z-index: 1;
  border-radius: 12px;
}
.maillage-card {
  /* Overlay Dégradé (Bas vers Haut par défaut) */
}
.maillage-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(0deg, rgba(38, 45, 65, 0.95) 0%, rgba(38, 45, 65, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  transition: background 0.3s ease;
  border-radius: 12px;
}
.maillage-card {
  /* Badge Exact réutilisé */
}
.maillage-card .media-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -40%) rotate(-3deg);
  padding: 0.6rem 1rem;
  font-weight: 800;
  font-size: 1.325rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 0px;
  background-color: #E8C420;
  color: #FFFCF0;
  z-index: 4;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
}
.maillage-card {
  /* Zone Contenu Texte */
}
.maillage-card__content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.75rem;
  max-width: 450px;
  transition: transform 0.3s ease;
}
.maillage-card__content h3 {
  margin: 0;
}
.maillage-card__content p {
  margin: 0;
  opacity: 0.9;
}
.maillage-card__cta {
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* CTA Banner */
/* ==========================================================================
   SECTION CTA BANNER PRE-FOOTER STYLES
   ========================================================================== */
.section-cta-banner {
  padding-top: 2rem;
  padding-bottom: 2rem;
  width: calc(100% - 3rem);
  margin: 0 auto;
  border-radius: 12px;
  background-color: #262D41;
  position: relative;
}
.section-cta-banner__card {
  /*
    Filigrane Logo en arrière-plan à droite
    --> Renseigne simplement le chemin vers ton image dans url('...')
  */
}
.section-cta-banner__card .filigrane-logo {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 991px) {
  .section-cta-banner__card .filigrane-logo {
    display: none;
  }
}
@media (min-width: 992px) {
  .section-cta-banner__card {
    padding: 4.5rem 4rem;
  }
}
.section-cta-banner__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 992px) {
  .section-cta-banner__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
}
.section-cta-banner {
  /* Colonne Gauche */
}
.section-cta-banner__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.75rem;
}
.section-cta-banner__left h2 {
  margin: 0;
  max-width: 520px;
}
.section-cta-banner {
  /* Colonne Droite */
}
.section-cta-banner__right p {
  margin: 0;
  opacity: 0.9;
  line-height: 1.6;
}/*# sourceMappingURL=template-seo.css.map */