/* --- SECTION PRINCIPALE --- */

.hero-section {
    color: #fff; /* texte blanc */
    padding: 60px 40px; /* espace haut/bas + gauche/droite */
    border-radius: 8px;
    text-align: left;
}

/* --- TITRE --- */
.hero-section h1 {
    margin-bottom: 20px;
    color: #fff; /* sécurité */
}

/* --- SOUS-TITRE --- */
.hero-subtitle {
    margin-bottom: 30px;
    color: #fff; /* sécurité */
}

/* --- BOUTONS --- */
.hero-buttons {
    display: flex;
    gap: 20px;
}


/* --- RESPONSIVE --- */
@media (max-width: 700px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 400px) {
  .hero-section h1 {
    font-size: 28px;
}
    .hero-buttons a  {
   font-size: 15px;
}

}


/* Grille 4 colonnes */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    padding: 40px 0;
}

/* Gros chiffres */
.stat-number {
    font-size: 42px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 8px;
}

/* Libellés */
.stat-label {
    font-size: 16px;
    color: #555;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}


.btn-primary-wrapper {
    text-align: center;
}

.btn-primary-wrapper .btn-primary {
    display: inline-block;
    float: none;
    margin-top: 20px;
}

/* Conteneur principal */
.aqmat-live {
   padding: 0px 20px 50px 0px;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
}

/* Titre principal */
.live-title {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Bandeau rouge/orange */
.live-banner {
    background: #c62828;
    color: #fff;
    padding: 5px 10px;
    font-weight: 700;
    display: inline-block;
    border-radius: 4px;
    margin-bottom: 5px;
}

/* Sous-titre jaune */
.live-subtitle {
    color: #f7c843;
    margin-bottom: 15px;
}

/* Texte descriptif */
.live-description {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
}

/* Infos du bas */
.live-info {
    display: flex;
    gap: 60px;
    margin-top: 10px;
}

.live-info-block {
    display: flex;
    flex-direction: column;
}

.live-info-label {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.live-info-text {
    font-size: 16px;
    color: #ffffff;
}

.live-info-label {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c62828;
    margin-bottom: 6px;
    padding-bottom: 4px;
    border-bottom: 1px solid #555555; /* ligne grise sous le titre */
}



/* Carte */
.episode-card {
    display: flex;
    align-items: center;
    gap: 20px;
/*    background: #1a1a1a;*/
    padding: 20px;
    border-radius: 10px;
}

/* Carte grisée (à venir) */
.episode-card.upcoming {
    opacity: 0.5;
}

/* Icône */
/* Icône carrée */
.episode-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Dégradé rouge → orange */
.episode-icon.orange {
    background: linear-gradient(135deg, #d62828, #f77f00);
}

/* Icône SVG blanche */
.live-svg {
    width: 32px;
    height: 32px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2.2;
}

.episode-icon.grey {
    background: #555;
}

/* Contenu */
.episode-title {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 6px 0;
}

.episode-meta {
    font-size: 14px;
    color: #cccccc;
    margin: 0;
}

/* AGENDA */

.agenda-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: inherit;
}


.agenda-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.agenda-header h2 {
  font-size: 28px;
  margin: 0;
}

.agenda-filters {
  display: flex;
  gap: 8px;
}

.agenda-filter {
  border: 1px solid #cccccc;
  background: #ffffff;
  padding: 6px 14px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.agenda-filter.active {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.agenda-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.agenda-card {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid #e0e0e0;
  background: #ffffff;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Effet hover */
.agenda-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.agenda-date {
  text-align: center;
  border-right: 1px solid #e0e0e0;
  padding-right: 12px;
}

.agenda-month {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #777777;
}

.agenda-day {
  display: block;
  font-size: 24px;
  font-weight: 700;
}

.agenda-content {
  min-width: 0;
}

.agenda-type {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999999;
  margin-bottom: 4px;
}

.agenda-title {
  font-size: 16px;
  margin: 0;
}

.agenda-action {
  text-align: right;
}

.agenda-btn {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: #000000;
}

.agenda-btn:hover {
  text-decoration: underline;
}

.agenda-footer {
  text-align: center;
}

.agenda-full-btn {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid #000000;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  text-decoration: none;
  color: #000000;
}

.agenda-full-btn:hover {
  background: #000000;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .agenda-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .agenda-date {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    padding-right: 0;
    padding-bottom: 8px;
    margin-bottom: 8px;
    text-align: left;
  }

  .agenda-action {
    text-align: left;
    margin-top: 8px;
  }

  .agenda-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Ressources réservées aux membres */

.ressources-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.ressources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.doc-block {
    background: #fff;   /* #f7f7f7*/
    border: 1px solid #e5e5e5;
    padding: 20px;
    border-radius: 12px;
}

.doc-section {
display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
}

.doc-icon svg {
    width: 26px;
    height: 26px;
}

.lock-icon svg {
    stroke: #D35400 !important;
    width: 18px;
    height: 18px;
    opacity: 0.7;
}

.doc-block strong {
    font-size: 16px;
    display: block;
    margin-bottom: 8px;
}

.doc-block p {
    font-size: 13px;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
    .ressources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ressources-grid {
        grid-template-columns: 1fr;
    }
}

.doc-block {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.doc-block:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}


/* Réseaux sociaux */

.social-card {
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  overflow: hidden;              /* arrondis propres */
  font-family: system-ui, sans-serif;
    margin-bottom: 40px;
}




/* Bandeau bleu en haut */
.social-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #1877f2;           /* bleu Facebook */
  color: #ffffff;
}

.social-card__icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.social-card__icon svg {
  width: 22px;
  height: 22px;
}

.social-card__title {
  font-size: 15px;
  font-weight: 600;
}

/* Bandeau LinkedIn */
.linkedin-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #0A66C2; /* bleu LinkedIn */
  color: #ffffff;
}
/* Corps du bloc (là où met le carousel) */
.social-card__body {
  padding: 16px 18px 18px;
  background: #f7f7f7;
}

/* Placeholder pour carousel */
.carousel-placeholder {
  height: 220px;                 /* à ajuster selon carousel */
  border-radius: 12px;
  background: #e3e3e3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 14px;
}


/* Bandeau Instagram (dégradé officiel) */
.instagram-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: linear-gradient(90deg, #f58529, #dd2a7b, #8134af, #515bd4);
  color: #ffffff;
}




/* AQMAT EN Direct */



.aqmat-live-frame {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 3px solid #D50000;
  border-radius: 6px; /* petit arrondi comme ton cadre du bas */
  padding: 12px 26px;
  margin-bottom: 20px;
}

/* Cadre rouge autour de EN DIRECT BIENTÔT – MARDI MATIN 
.live-coming-frame {
  display: inline-block;       
  border: 3px solid #D50000;   
  border-radius: 6px;           
  padding: 12px 26px;           
  margin-top: 10px;             
}*/

/* Texte blanc à l’intérieur */
.live-coming-text {
    display: inline-block;      /* empêche la ligne complète de se colorer */
    background-color: #D50000;  /* rouge */
    color: #ffffff;             /* texte blanc */
    padding: 4px 10px;          /* plus petit que le haut */
    font-size: 18px;            /* plus petit */
    font-weight: 600;
    border-radius: 4px;         /* léger arrondi */
    text-transform: uppercase;
}


/* AQMAT */
.aqmat-text {
  color: #ffffff;
  font-size: 34px;
  font-weight: 900;
  text-transform: uppercase;
}

/* Point rouge animé */
.live-dot {
  width: 16px;
  height: 16px;
  background: #D50000;
  border-radius: 50%;
  animation: pulseDot 1.2s infinite ease-in-out;
}

/* EN DIRECT animé */
.live-text {
  color: #D50000;
  font-size: 34px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  animation: pulseText 1.2s infinite ease-in-out;
}

/* Animation du point */
@keyframes pulseDot {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

/* Animation du texte EN DIRECT */
@keyframes pulseText {
  0% { opacity: 1; }
  50% { opacity: 0.6; }
  100% { opacity: 1; }
}

/* 📱 Responsive mobile */
@media (max-width: 600px) {
  .aqmat-text,
  .live-text {
    font-size: 22px;
  }

  .live-dot {
    width: 12px;
    height: 12px;
  }

  .aqmat-live-frame {
    padding: 8px 16px;
    border-width: 2px;
    gap: 10px;
    border-radius: 4px; /* arrondi réduit aussi sur mobile */
  }
}


/* Photo d'équipe */

.profil-card {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin: 2rem 0;
}

.profil-photo img {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.profil-texte h2 {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  margin: 0 0 0.25rem;
}

.profil-fonction {
  margin: 0 0 1rem;
  font-weight: 600;
}

.profil-email {
  color: #005fa3;
  text-decoration: none;
}

.profil-email:hover {
  text-decoration: underline;
}

.profil-liste {
  list-style-type: "▪ ";
  padding-left: 1.2rem;
  margin: 1rem 0 0;
}

.profil-separateur {
  border: 0;
  border-top: 1px solid #ddd;
  margin: 1.5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
  .profil-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .profil-photo img {
    width: 100%;
    max-width: 260px;
  }
}

/* Carousel logos 
.carousel-logos {
  overflow: hidden;
  width: 100%;
  padding: 30px 0;
}

.carousel-track {
  display: flex;
  gap: 80px;
  animation: scroll 15s linear infinite;
}

.carousel-track img {
  height: 90px;
  width: 140px; 
  object-fit: contain;
  display: block;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}*/



#news-title-2716212 {
  font-size: 50px;   /* ajuste la taille */
  /*font-weight: 700;  /* plus bold */
  text-align: gauche;
  margin-bottom: 50px;
}





.annonceurs-container {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 40px 0 !important;
    overflow: hidden !important;
}

.logos-carousel {
    overflow: hidden !important;
    width: 100% !important;
}

.logos-track {
    display: flex !important;
    gap: 40px !important;
    white-space: nowrap !important;
    animation: slide 25s linear infinite !important;
}


.logos-track img {
  height: 100px !important;
  width: auto !important;
  max-height: 130px !important;
  max-width: none !important;
  object-fit: contain !important;
  display: inline-block !important;
}


@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* Version mobile : logos plus petits */
@media (max-width: 450px) {
  .logos-track img {
    height: 70px !important;
    max-height: 70px !important;
  }

  .logos-track {
    gap: 25px !important; /* optionnel : réduit l’espace entre logos */
      animation: slide 10s linear infinite !important; /* ← vitesse augmentée */
  }
}

/* Conteneur du carousel 

.logos-carousel {
  display: inline-flex;      
  align-items: center;
  gap: 40px;
  overflow: hidden;
  white-space: nowrap;
  animation: slide 25s linear infinite;  
}


.logos-carousel img {
  height: 100px !important;
  width: auto !important;
  max-height: 130px !important;
  max-width: none !important;
  object-fit: contain !important;
  display: inline-block !important;
}
*/






