/* ===================================================================
   BLOC COMBINÉ CARROUSEL ADHÉRENTS + TÉMOIGNAGES - THÈME MAYAGE
   Fichier : assets/css/blocks/adherents-testimonials.css
   VERSION AMÉLIORÉE - ÉQUILIBRAGE VISUEL
   =================================================================== */

/* ===================================================================
   VARIABLES CSS MAYAGE
   =================================================================== */

   :root {
    /* Couleurs Mayage */
    --mayage-gray: #3c3c3b;
    --mayage-red: #e94a42;
    --mayage-green-light: #dedc00;
    --mayage-green-dark: #95c11f;
    --mayage-blue-light: #2ab8cb;
    --mayage-blue-dark: #005e99;
    --mayage-white: #ffffff;
    --mayage-light-gray: #f5f5f5;
    --mayage-border: #e1e5e9;
    
    /* Typographie */
    --font-logo: 'Comfortaa', sans-serif;
    --font-body: 'Nunito', sans-serif;
    
    /* Layout */
    --container-max-width: 1200px;
    --border-radius: 8px;
    
    /* Ombres */
    --shadow-card: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  
  /* ===================================================================
     STRUCTURE PRINCIPALE
     =================================================================== */
  
  .mayage-adherents-testimonials {
    padding: 6rem 0;
    position: relative;
    background: var(--mayage-light-gray);
  }
  
  .mayage-adherents-testimonials--bg-light {
    background: var(--mayage-light-gray);
  }
  
  .mayage-adherents-testimonials--bg-white {
    background: var(--mayage-white);
  }
  
  .mayage-adherents-testimonials--bg-gradient {
    background: linear-gradient(135deg, var(--mayage-light-gray) 0%, var(--mayage-white) 100%);
  }
  
  .mayage-adherents-testimonials__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
  }
  
  /* Header principal */
  .mayage-adherents-testimonials__header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .mayage-adherents-testimonials__section-title {
    font-family: var(--font-logo);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--mayage-gray);
    margin: 0;
    line-height: 1.3;
  }
  
  /* LAYOUT 50/50 FORCÉ - HAUTEURS ÉGALES */
  .mayage-adherents-testimonials__content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
    align-items: start !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .mayage-adherents-testimonials__left,
  .mayage-adherents-testimonials__right {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: visible !important; /* Pour les pastilles en absolute */
    display: flex !important;
    position: relative;
  }
  
  /* Forcer la même hauteur pour les deux conteneurs */
  .mayage-adherents-carousel,
  .mayage-testimonials-section {
    height: 500px !important; /* Hauteur fixe identique */
    min-height: 500px !important;
    max-height: 500px !important;
  }
  
  /* ===================================================================
     CARROUSEL ADHÉRENTS (GAUCHE - 50%)
     =================================================================== */
  
  .mayage-adherents-carousel {
    background: var(--mayage-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    height: auto; /* Hauteur automatique */
    min-height: 450px; /* Hauteur minimale réduite */
  }
  
  .mayage-adherents-carousel__header {
    text-align: center;
    margin-bottom: 2rem;
    flex-shrink: 0; /* Ne se réduit pas */
  }
  
  .mayage-adherents-carousel__title {
    font-family: var(--font-logo);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--mayage-blue-dark);
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
  }
  
  .mayage-adherents-carousel__title i {
    color: var(--mayage-green-dark);
  }
  
  .mayage-adherents-carousel__subtitle {
    color: var(--mayage-gray);
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.8;
  }
  
  /* Wrapper Swiper - CONTRAINT */
  .mayage-adherents-carousel__wrapper {
    flex: 1; /* Prend l'espace restant */
    position: relative;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    display: flex;
    flex-direction: column;
  }
  
  .mayage-adherents-swiper {
    flex: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    /* Prend toute la hauteur restante du conteneur */
  }
  
  /* SWIPER WRAPPER ET SLIDES - DIMENSIONS CONTRÔLÉES */
  .mayage-adherents-swiper .swiper-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
  }
  
  .mayage-adherents-swiper .swiper-slide {
    width: 100% !important;
    max-width: 100% !important;
    flex-shrink: 0 !important;
    margin-right: 20px !important;
  }
  
  /* Cartes adhérents - HAUTEUR FLEXIBLE */
  .mayage-adherent-card {
    /* background: var(--mayage-light-gray); */
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    height: 100%; /* Prend toute la hauteur du swiper */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Placeholder pour logos manquants */
  .mayage-adherent-card__logo-placeholder {
    width: 80px;
    height: 80px;
    background: var(--mayage-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    opacity: 0.5;
  }
  
  .mayage-adherent-card__logo-placeholder i {
    font-size: 2rem;
    color: var(--mayage-gray);
  }
  
  /* État vide carrousel adhérents */
  .mayage-adherents-carousel__empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    color: var(--mayage-gray);
  }
  
  .mayage-adherents-carousel__empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
    color: var(--mayage-blue-dark);
  }
  
  .mayage-adherents-carousel__empty p {
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    font-size: 1.1rem;
  }
  
  .mayage-adherents-carousel__empty small {
    opacity: 0.7;
    font-size: 0.9rem;
  }
  
  .mayage-adherent-card:hover {
    transform: translateY(-5px);
    /* box-shadow: var(--shadow-hover); */
  }
  
  .mayage-adherent-card__logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    min-height: 120px; /* Hauteur garantie pour le logo */
  }
  
  .mayage-adherent-card__logo img {
    max-width: 400px; /* Logos plus grands */
    max-height: 240px; /* Plus haut pour les logos */
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
  }
  
  .mayage-adherent-card:hover .mayage-adherent-card__logo img {
    filter: grayscale(0%);
  }
  
  .mayage-adherent-card__content {
    flex-shrink: 0;
  }
  
  .mayage-adherent-card__name {
    font-family: var(--font-logo);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--mayage-gray);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
  }
  
  .mayage-adherent-card__description {
    font-size: 0.9rem;
    color: var(--mayage-gray);
    opacity: 0.8;
    margin: 0 0 1rem 0;
    line-height: 1.4;
  }
  
  .mayage-adherent-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--mayage-blue-dark);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .mayage-adherent-card__link:hover {
    color: var(--mayage-blue-light);
  }
  
  /* Navigation Swiper */
  .mayage-adherents-swiper-button-prev,
  .mayage-adherents-swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--mayage-white);
    border: 2px solid var(--mayage-blue-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mayage-blue-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: var(--shadow-card);
  }
  
  .mayage-adherents-swiper-button-prev {
    left: 5px;
  }
  
  .mayage-adherents-swiper-button-next {
    right: 5px;
  }
  
  .mayage-adherents-swiper-button-prev:hover,
  .mayage-adherents-swiper-button-next:hover {
    background: var(--mayage-blue-dark);
    color: var(--mayage-white);
    transform: translateY(-50%) scale(1.1);
  }
  
  /* Pagination Swiper */
  .mayage-adherents-swiper-pagination {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .mayage-adherents-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--mayage-border);
    opacity: 1;
    transition: all 0.3s ease;
  }
  
  .mayage-adherents-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--mayage-blue-dark);
    transform: scale(1.3);
  }
  
  /* ===================================================================
     SECTION TÉMOIGNAGES (DROITE - 50%) - RÉORGANISÉE
     =================================================================== */
  
  .mayage-testimonials-section {
    background: var(--mayage-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    height: auto; /* Hauteur automatique */
    min-height: 450px; /* Hauteur minimale réduite */
    position: relative; /* Pour les pastilles en absolute */
  }
  
  .mayage-testimonials-section__header {
    text-align: center;
    margin-bottom: 2rem;
    flex-shrink: 0; /* Ne se réduit pas */
  }
  
  .mayage-testimonials-section__title {
    font-family: var(--font-logo);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--mayage-red);
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
  }
  
  .mayage-testimonials-section__title i {
    color: var(--mayage-green-dark);
  }
  
  .mayage-testimonials-section__subtitle {
    color: var(--mayage-gray);
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.8;
  }
  
  .mayage-testimonials-section__content {
    flex: 1; /* Prend l'espace restant */
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  /* ===================================================================
     LISTE DES TÉMOIGNAGES - COMPACTE
     =================================================================== */
  
  .mayage-testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* Réduit l'espacement */
    flex: 1;
    margin-bottom: 1rem;
  }
  
  /* Style Cartes - VERSION COMPACTE */
  .mayage-testimonials-list--cards .mayage-testimonial-card {
    /* background: var(--mayage-light-gray); */
    border-radius: var(--border-radius);
    padding: 1rem; /* Padding réduit */
    transition: all 0.3s ease;
    opacity: 1;
  }
  
  .mayage-testimonials-list--cards .mayage-testimonial-card:hover {
    transform: translateY(-2px); /* Effet plus subtil */
    box-shadow: var(--shadow-hover);
  }
  
  /* Style Citations */
  .mayage-testimonials-list--quotes .mayage-testimonial-card {
    background: transparent;
    border-left: 4px solid var(--mayage-blue-dark);
    padding: 0.75rem 1rem; /* Padding réduit */
    position: relative;
  }
  
  /* Style Liste simple */
  .mayage-testimonials-list--list .mayage-testimonial-card {
    background: var(--mayage-white);
    border: 1px solid var(--mayage-border);
    border-radius: var(--border-radius);
    padding: 0.75rem; /* Padding réduit */
  }
  
  /* ===================================================================
     CARTES TÉMOIGNAGES - VERSION COMPACTE
     =================================================================== */
  
  .mayage-testimonial-card__photo {
    width: 50px; /* Plus petit */
    height: 50px; /* Plus petit */
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 0.75rem auto; /* Marge réduite */
    border: 2px solid var(--mayage-white); /* Bordure plus fine */
    box-shadow: var(--shadow-card);
  }
  
  .mayage-testimonial-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .mayage-testimonial-card__content {
    text-align: center;
  }
  
  .mayage-testimonials-list--quotes .mayage-testimonial-card__content {
    text-align: left;
  }
  
  /* Citation - VERSION COMPACTE */
  .mayage-testimonial-card__quote {
    margin: 0 0 0.75rem 0; /* Marge réduite */
    position: relative;
  }
  
  .mayage-testimonial-card__quote p {
    margin: 0;
    font-size: 0.9rem; /* Taille réduite */
    line-height: 1.4; /* Line-height réduit */
    color: var(--mayage-gray);
    font-style: italic;
  }
  
  .mayage-testimonial-card__quote-icon {
    position: absolute;
    top: -8px; /* Position ajustée */
    left: -8px; /* Position ajustée */
    font-size: 1.2rem; /* Taille réduite */
    color: var(--mayage-blue-dark);
    opacity: 0.3;
  }
  
  /* Note - VERSION COMPACTE */
  .mayage-testimonial-card__rating {
    display: flex;
    justify-content: center;
    gap: 0.2rem; /* Espacement réduit */
    margin-bottom: 0.75rem; /* Marge réduite */
  }
  
  .mayage-testimonials-list--quotes .mayage-testimonial-card__rating {
    justify-content: flex-start;
  }
  
  .mayage-testimonial-card__rating i {
    font-size: 0.9rem; /* Étoiles plus petites */
  }
  
  .mayage-testimonial-card__star--filled {
    color: #ffc107;
  }
  
  .mayage-testimonial-card__star--empty {
    color: var(--mayage-border);
  }
  
  /* Auteur - VERSION COMPACTE */
  .mayage-testimonial-card__author {
    border-top: 1px solid var(--mayage-border);
    padding-top: 0.75rem; /* Padding réduit */
  }
  
  .mayage-testimonial-card__author-name {
    font-family: var(--font-logo);
    font-size: 0.95rem; /* Taille réduite */
    font-weight: 600;
    color: var(--mayage-gray);
    margin-bottom: 0.25rem; /* Marge réduite */
  }
  
  .mayage-testimonial-card__author-details {
    font-size: 0.8rem; /* Taille réduite */
    color: var(--mayage-gray);
    opacity: 0.8;
    line-height: 1.3; /* Line-height réduit */
  }
  
  .mayage-testimonial-card__author-position {
    display: block;
    font-weight: 600;
    margin-bottom: 0.15rem; /* Marge réduite */
  }
  
  .mayage-testimonial-card__author-company {
    display: block;
    margin-bottom: 0.15rem; /* Marge réduite */
  }
  
  .mayage-testimonial-card__author-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem; /* Espacement réduit */
    font-size: 0.75rem; /* Taille réduite */
  }
  
  .mayage-testimonials-list--quotes .mayage-testimonial-card__author-location {
    justify-content: flex-start;
  }
  
  .mayage-testimonial-card__author-location i {
    color: var(--mayage-blue-dark);
  }
  
  /* Secteur - VERSION COMPACTE */
  .mayage-testimonial-card__sector {
    margin-top: 0.5rem; /* Marge réduite */
  }
  
  .mayage-testimonial-card__sector-tag {
    display: inline-block;
    background: var(--mayage-blue-dark);
    color: var(--mayage-white);
    padding: 0.2rem 0.6rem; /* Padding réduit */
    border-radius: 12px; /* Border-radius réduit */
    font-size: 0.7rem; /* Taille réduite */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px; /* Letter-spacing réduit */
  }
  
  /* ===================================================================
     STATISTIQUES TÉMOIGNAGES - PASTILLES RONDES EN ABSOLUTE
     =================================================================== */
  
  .mayage-testimonials-stats {
    position: absolute;
    top: -2.3rem; /* Position dans la zone de padding du conteneur */
    right: 0;
    display: flex;
    gap: 1rem;
    z-index: 5;
  }
  
  .mayage-testimonials-stat {
    width: 70px; /* Taille réduite pour éviter le chevauchement */
    height: 70px; /* Taille réduite pour éviter le chevauchement */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--mayage-red);
    border-radius: 50%; /* Parfaitement rond */
    color: var(--mayage-white);
    box-shadow: var(--shadow-hover);
    transition: transform 0.3s ease;
    border: 3px solid var(--mayage-white); /* Bordure blanche */
  }
  
  .mayage-testimonials-stat:hover {
    transform: translateY(-3px) scale(1.05);
  }
  
  .mayage-testimonials-stat__number {
    font-family: var(--font-logo);
    font-size: 1rem; /* Taille réduite */
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.15rem;
  }
  
  .mayage-testimonials-stat__label {
    font-size: 0.45rem; /* Très petit texte */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1px;
    opacity: 0.9;
    line-height: 0.9;
  }
  
  /* ===================================================================
     FOOTER TÉMOIGNAGES - CTA INTÉGRÉ
     =================================================================== */
  
  .mayage-testimonials-section__footer {
    margin-top: auto; /* Se place en bas */
    text-align: center;
    flex-shrink: 0; /* Ne se réduit pas */
  }
  
  .mayage-testimonials-section__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--mayage-red);
    color: var(--mayage-white);
    padding: 0.75rem 1.5rem; /* Padding réduit */
    border-radius: 25px; /* Forme pastille */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem; /* Taille réduite */
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
  }
  
  .mayage-testimonials-section__cta:hover {
    background: #d13d36;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
  }
  
  /* ===================================================================
     ÉTAT VIDE
     =================================================================== */
  
  .mayage-testimonials-section__empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    color: var(--mayage-gray);
  }
  
  .mayage-testimonials-section__empty-icon {
    font-size: 2.5rem; /* Taille réduite */
    margin-bottom: 1rem;
    opacity: 0.3;
  }
  
  .mayage-testimonials-section__empty p {
    margin: 0 0 0.5rem 0;
    font-weight: 600;
  }
  
  .mayage-testimonials-section__empty small {
    opacity: 0.7;
  }
  
  /* ===================================================================
     RESPONSIVE
     =================================================================== */
  
  @media (max-width: 1024px) {
    /* Retour aux hauteurs automatiques sur tablette/mobile */
    .mayage-adherents-carousel,
    .mayage-testimonials-section {
      height: auto !important;
      min-height: 400px !important;
      max-height: none !important;
    }
    
    .mayage-adherents-testimonials__content {
      grid-template-columns: 1fr !important;
      gap: 3rem !important;
    }
    
    .mayage-testimonials-section {
      padding-top: 2rem; /* Retour au padding normal */
    }
    
    /* Pastilles repositionnées sur tablette */
    .mayage-testimonials-stats {
      position: relative;
      top: auto;
      right: auto;
      justify-content: center;
      margin: 1rem 0;
    }
    
    .mayage-testimonials-stat {
      width: 65px;
      height: 65px;
    }
    
    .mayage-testimonials-stat__number {
      font-size: 0.9rem;
    }
    
    .mayage-testimonials-stat__label {
      font-size: 0.5rem;
    }
  }
  
  @media (max-width: 768px) {
    .mayage-adherents-testimonials {
      padding: 4rem 0;
    }
    
    .mayage-adherents-testimonials__container {
      padding: 0 1rem;
    }
    
    .mayage-adherents-testimonials__header {
      margin-bottom: 3rem;
    }
    
    .mayage-adherents-testimonials__content {
      gap: 2rem !important;
    }
    
    .mayage-adherents-carousel,
    .mayage-testimonials-section {
      padding: 1.5rem;
      height: auto !important;
      min-height: 350px !important;
      max-height: none !important;
    }
    
    .mayage-testimonials-section {
      padding-top: 1.5rem; /* Padding normal sur mobile */
    }
    
    .mayage-adherent-card__logo img {
      max-width: 160px; /* Ajustement logo mobile */
      max-height: 100px;
    }
    
    .mayage-testimonials-stats {
      flex-direction: row; /* Garder horizontal sur mobile */
      gap: 0.75rem;
    }
    
    .mayage-testimonials-stat {
      width: 60px;
      height: 60px;
    }
    
    .mayage-testimonials-stat__number {
      font-size: 0.85rem;
    }
    
    .mayage-testimonials-stat__label {
      font-size: 0.45rem;
    }
    
    .mayage-adherents-swiper-button-prev,
    .mayage-adherents-swiper-button-next {
      display: none;
    }
  }
  
  @media (max-width: 480px) {
    .mayage-adherents-testimonials__section-title {
      font-size: 1.8rem;
    }
    
    .mayage-adherents-carousel__title,
    .mayage-testimonials-section__title {
      font-size: 1.3rem;
    }
    
    .mayage-testimonial-card__quote p {
      font-size: 0.85rem;
    }
    
    .mayage-testimonial-card__author-name {
      font-size: 0.9rem;
    }
    
    .mayage-testimonials-stat__number {
      font-size: 0.9rem;
    }
    
    .mayage-testimonials-section__cta {
      padding: 0.6rem 1.2rem;
      font-size: 0.85rem;
    }
  }
  
  /* ===================================================================
     ANIMATIONS ET EFFETS
     =================================================================== */
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .mayage-adherents-testimonials__left,
  .mayage-adherents-testimonials__right {
    animation: fadeInUp 0.8s ease-out;
  }
  
  .mayage-adherents-testimonials__right {
    animation-delay: 0.2s;
  }
  
  /* Animation pour les témoignages au scroll */
  .mayage-testimonial-card--animate {
    animation: fadeInUp 0.6s ease-out forwards;
  }
  
  /* ===================================================================
     ACCESSIBILITÉ
     =================================================================== */
  
  .mayage-testimonials-section__cta:focus,
  .mayage-adherent-card__link:focus {
    outline: 3px solid var(--mayage-blue-light);
    outline-offset: 2px;
  }
  
  /* Réduction des animations si demandée */
  @media (prefers-reduced-motion: reduce) {
    .mayage-testimonial-card,
    .mayage-adherent-card,
    .mayage-testimonials-stat {
      animation: none !important;
      transition: none !important;
    }
  }
  /* ===================================================================
   STATISTIQUES ADHÉRENTS - BULLE EN HAUT À GAUCHE
   À AJOUTER à la fin du fichier adherents-testimonials.css
   =================================================================== */

.mayage-adherents-stats {
  position: absolute;
  top: -2.3rem;
  left: 0;
  display: flex;
  gap: 1rem;
  z-index: 5;
}

.mayage-adherents-stat {
  width: 70px;
  height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--mayage-green-dark);
  border-radius: 50%;
  color: var(--mayage-white);
  box-shadow: var(--shadow-hover);
  transition: transform 0.3s ease;
  border: 3px solid var(--mayage-white);
}

.mayage-adherents-stat:hover {
  transform: translateY(-3px) scale(1.05);
}

.mayage-adherents-stat__number {
  font-family: var(--font-logo);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.15rem;
}

.mayage-adherents-stat__label {
  font-size: 0.45rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1px;
  opacity: 0.9;
  line-height: 0.9;
}

/* Responsive pour les bulles adhérents */
@media (max-width: 1024px) {
  .mayage-adherents-stats {
    position: relative;
    top: auto;
    left: auto;
    justify-content: center;
    margin: 1rem 0;
  }
  
  .mayage-adherents-stat {
    width: 65px;
    height: 65px;
  }
  
  .mayage-adherents-stat__number {
    font-size: 0.9rem;
  }
  
  .mayage-adherents-stat__label {
    font-size: 0.5rem;
  }
}

@media (max-width: 768px) {
  .mayage-adherents-stats {
    flex-direction: row;
    gap: 0.75rem;
  }
  
  .mayage-adherents-stat {
    width: 60px;
    height: 60px;
  }
  
  .mayage-adherents-stat__number {
    font-size: 0.85rem;
  }
  
  .mayage-adherents-stat__label {
    font-size: 0.45rem;
  }
}

@media (max-width: 480px) {
  .mayage-adherents-stat__number {
    font-size: 1.4rem;
  }
}