.card-single {
	width: 50%;
	max-width: 560px;
}
.card-multiple {
	width: 70%;
	max-width: 780px;
}

.card-single,
.card-multiple {
    margin: 60px auto;
    padding: 40px;

    background: linear-gradient(145deg, #8a8a8a, #6f6f6f);
    color: #ffffff;

    border-radius: 16px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);

    min-height: 400px;
}

.card-single h1,
.card-multiple h1 {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.form-group {
    margin-bottom: 20px;
}

.card-single input,
.card-multiple input {
    width: 100%;
    padding: 14px 16px;

    background-color: #2a2a2a;
    color: #ffffff;

    border: 1px solid #444;
    border-radius: 8px;

    font-size: 15px;
}

.card-single input::placeholder,
.card-multiple input::placeholder {
    color: #aaa;
}

.card-single input:focus,
.card-multiple input:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15);
}

.card-single button,
.card-multiple button {
    width: 100%;
    
	margin-top: 20px;
	padding: 14px;

    background: #ffffff;
    color: #000000;

    border: none;
    border-radius: 8px;

    font-size: 16px;
    font-weight: 600;
    cursor: pointer;

    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card-single button:hover,
.card-multiple button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.card-single select,
.card-multiple select {
    width: 100%;
    padding: 14px 16px;
    background-color: #2a2a2a;
    color: #ffffff;
    border: 1px solid #444;
    border-radius: 8px;
    font-size: 15px;
}

.card-single select:focus,
.card-multiple select:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15);
}

/* ===== Onglets "À propos" ===== */
.about-tabs{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;          /* utile mobile */
  justify-content: center;  /* aligné au centre */
  margin: 0 0 18px 0;
}

.about-tab{
  appearance: none;
  border: 1px solid var(--color-active);
  background: transparent;
  color: var(--color-bg);
  padding: 10px 16px;
  border-radius: 16px;
  cursor: pointer;
  line-height: 1;
  font-weight: 700;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .05s ease;
}

.about-tab:hover{
  background-color: var(--color-active);
  color: var(--color-white);
  border-color: var(--color-white);
}

.about-tab:active{ transform: translateY(1px); }

.about-tab.is-active{
  background-color: var(--color-active);
  color: var(--color-white);
  border-color: var(--color-white);
}

/* Panels */
.about-panels{
  width: 90%;
  margin: 0 auto;
  background: var(--color-white);
  color: var(--color-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-elev);
  padding: var(--space-6);
  border: 1px solid rgba(255,255,255,.08);
}

.about-panels h1 {
	font-size: 3em;
	margin-top: 0;
	padding-top: 0;
}

.about-panels p {
  margin: 0 0 var(--space-6) 0;
  color: var(--color-bg);
  font-size: 1rem;
}

.about-panels ul {
  margin: var(--space-2) 0 0 0;
  padding-left: 48px;
  list-style: disc;
}

.about-panels li {
  margin: 6px 0;
  color: var(--color-bg);
  font-size: 1rem;
}

.about-panels-title {
	font-size: 1.8em;
	font-weight: 600;
	width: 100%;
	border-bottom: solid var(--color-bg) 1px;
	padding-bottom: 20px;
	margin-top: 40px;
	margin-bottom: 20px;
}

.about-panel{
  padding: 18px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.02); /* discret, adapte si besoin */
}

/* si tu veux une petite animation douce à l'ouverture */
.about-panel.is-open{
  animation: aboutFade .18s ease-out;
}

@keyframes aboutFade{
  from{ opacity: 0; transform: translateY(3px); }
  to{ opacity: 1; transform: translateY(0); }
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 36px; /* row / column */
  align-items: start;
}

/* Carte */
.team-card {
  display: grid;
  grid-template-columns: 170px 1fr; /* photo / texte */
  gap: 18px;
  align-items: center;
}

/* Photo (style “portrait carré arrondi”) */
.team-card__photo {
  width: 170px;
  height: 170px;
  border-radius: 18px;
  overflow: hidden;
  background: #111; /* fallback */
  border: 1px solid rgba(255,255,255,0.12);
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Texte */
.team-card__name {
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
}

.team-card__role {
  margin: 6px 0 0 0;
  font-size: 14px;
  opacity: 0.8;
}

/* Responsive téléphone */
@media (max-width: 820px) {
  .team__grid {
    grid-template-columns: 1fr; /* 1 colonne */
    gap: 18px;
  }
}
.roomCard{
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: nowrap;
}

/* Texte : occupe le reste */
.roomCard__body{
  flex: 1 1 auto;
  min-width: 0; /* important pour éviter les comportements bizarres en flex */
}

/* Paragraphes */
.roomCard__role{
  margin: 0 0 18px 0;
  line-height: 1.6;
  max-width: 680px; /* optionnel : évite des lignes trop longues */
}

.roomCard__role:last-child{
  margin-bottom: 0;
}

.roomCard__role strong{
  font-weight: 700;
}

/* Photo : taille maîtrisée + alignée à droite */
.roomCard__photo{
  flex: 0 0 428px;     /* largeur desktop */
  max-width: 428px;
  width: 100%;
  margin-left: auto;  /* pousse à droite sans casser les proportions */
  overflow: hidden;
}

.roomCard__photo img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 900px){
  .roomCard__photo{
    flex-basis: 256px;
    max-width: 256px;
  }
}

@media (max-width: 720px){
  .roomCard{
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }

  .roomCard__photo{
    flex: 0 0 auto;
    max-width: 100%;
  }
}

/* =========================================
   HOME FILTERS — 2 blocs sur une ligne
   Scoped: .homeFilters (et descendants)
   ========================================= */

.homeFilters{
  /* layout : 2 blocs sur la même ligne */
  display: flex;
  align-items: center;
  gap: 16px;

  margin: 8px 0 18px;
  padding: 8px 0;

  /* optionnel : léger fond pour détacher du contenu */
  background: transparent;
}

/* Chaque bloc de filtres (ligne de pills) */
.homeFilters__row{
  display: flex;
  align-items: center;
  gap: 10px;

  /* scroll horizontal si déborde */
  overflow-x: auto;
  overflow-y: hidden;

  padding: 8px 2px;

  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */

  /* IMPORTANT pour le scroll dans un flex parent */
  flex: 1 1 0;
  min-width: 0;
}

/* Masquer scrollbar (WebKit) */
.homeFilters__row::-webkit-scrollbar{
  height: 0;
}

/* Option : si tu veux que le 1er bloc soit plus “court”
   (public) et que le 2e prenne le reste */
.homeFilters__row--audience{
  flex: 0 0 340px;
}
.homeFilters__row--topics{
  flex: 1 1 auto;
}

/* Pills */
.homeFilters .pill{
  flex: 0 0 auto;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 38px;
  padding: 0 14px;

  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);

  color: #fff;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;

  cursor: pointer;
  user-select: none;

  transition: background .15s ease, border-color .15s ease, transform .05s ease;
}

.homeFilters .pill:hover{
  background: rgba(255,255,255,.12);
}

.homeFilters .pill:active{
  transform: translateY(1px);
}

/* Actif */
.homeFilters .pill.is-active,
.homeFilters .pill[aria-pressed="true"]{
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.28);
}

/* Focus clavier */
.homeFilters .pill:focus-visible{
  outline: 2px solid rgba(104, 255, 160, .35);
  outline-offset: 2px;
}

/* Option : état désactivé */
.homeFilters .pill:disabled{
  opacity: .45;
  cursor: not-allowed;
}

.homeFilters__divider{
  width: 2px;
  background: rgba(255,255,255,.5);
  align-self: stretch;
  margin: 6px 4px;
}

@media (max-width: 900px){
  .homeFilters__divider{
    display: none;
  }
}

/* -------------------------------------------------
   Responsive : en dessous d'un certain seuil,
   on empile les 2 blocs
   ------------------------------------------------- */
@media (max-width: 900px){
  .homeFilters{
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .homeFilters__row{
    flex: 1 1 auto;
  }

  .homeFilters__row--audience{
    flex: 1 1 auto;
  }
}

/* Mobile : pills un peu plus compactes */
@media (max-width: 480px){
  .homeFilters .pill{
    height: 36px;
    padding: 0 12px;
    font-size: 13px;
  }
}

/* ---------- Grille ---------- */
.homeGrid{
  display: grid;
  gap: 22px;

  /* Desktop: 3 colonnes */
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Tablette */
@media (max-width: 1100px){
  .homeGrid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 720px){
  .homeContent{ padding: 14px 14px 24px; }

  .homeGrid{
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ---------- Card ---------- */
.homeGrid .card{
  background: transparent;
}

.homeGrid .card__link{
  display: block;
  color: inherit;
  text-decoration: none;
}

.homeGrid .card__media{
  position: relative;
  overflow: hidden;
  border-radius: 18px;

  /* ratio proche de tes vignettes */
  aspect-ratio: 16 / 9;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

.homeGrid .card__media img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;

  transform: scale(1);
  transition: transform .25s ease, opacity .25s ease;
  opacity: .98;
}

.homeGrid .card__link:hover .card__media img{
  transform: scale(1.02);
  opacity: 1;
}

.homeGrid .card__badge{
  position: absolute;
  top: 10px;
  right: 10px;

  padding: 6px 10px;
  border-radius: 999px;

  background: rgba(104, 255, 160, .18);
  border: 1px solid rgba(104, 255, 160, .35);
  color: rgba(255,255,255,.95);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2px;
}

/* Titre, meta, date */
.homeGrid .card__title{
  margin: 12px 2px 6px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 750;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.homeGrid .card__meta{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;

  margin: 0 2px 6px;
  font-size: 13px;
  color: rgba(255,255,255,.72);
}

.homeGrid .card__tag{
  display: inline-flex;
  align-items: center;

  height: 22px;
  padding: 0 10px;
  border-radius: 999px;

  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.82);

  font-size: 12px;
}

.homeGrid .card__date{
  margin: 0 2px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

/* Focus visible */
.homeGrid .card__link:focus-visible .card__media{
  outline: 2px solid rgba(104, 255, 160, .35);
  outline-offset: 2px;
}

.card__author{
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-size: 13px;
  color: rgba(255,255,255,.72);
}

.card__avatar{
  width: 52px;
  height: 52px;

  border-radius: 50%;
  object-fit: cover;

  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);

  flex-shrink: 0;
}

/* =========================================
   PAGE FORMATION — layout principal
   ========================================= */

.formaDesc{
  display: flex;
  gap: 24px;

  width: 100%;
  padding: 16px;

  box-sizing: border-box;
}

/* -----------------------------------------
   Colonne gauche (2/3)
   ----------------------------------------- */

.formaDesc-left{
  flex: 2 1 0;
  min-width: 0;

  height: 80svh;
  overflow-y: auto;
  overflow-x: hidden;

  padding-right: 12px;
}

/* Image principale */
.formaDesc-left__media{
  width: 100%;
  aspect-ratio: 16 / 9;

  overflow: hidden;
  border-radius: 18px;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  margin-bottom: 18px;
}

.formaDesc-left__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Titre */
.formaDesc-left__title{
  margin: 0 0 18px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
}

/* -----------------------------------------
   Blocs de description
   ----------------------------------------- */

.formaBlock{
  padding: 18px 0;
}

/* Séparateur horizontal */
.formaBlock + .formaBlock{
  border-top: 1px solid rgba(255,255,255,.16);
}

.formaBlock__title{
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: rgba(255,255,255,.85);
}

.formaBlock__content{
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,.72);
}

.formaBlock__content p{
  margin: 0 0 12px;
}

.formaBlock__content p:last-child{
  margin-bottom: 0;
}

/* -----------------------------------------
   Colonne droite (1/3)
   ----------------------------------------- */

.formaDesc-right{
  flex: 1 1 0;
  min-width: 0;

  height: 80svh;
  overflow-y: auto;
  overflow-x: hidden;

  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,.16);
}

/* Exemple de blocs à droite */
.formaAsideBlock{
  padding: 16px 0;
}

.formaAsideBlock + .formaAsideBlock{
  border-top: 1px solid rgba(255,255,255,.16);
}

.formaAsideBlock__title{
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
}

.formaAsideBlock__content{
  font-size: 14px;
  color: rgba(255,255,255,.72);
}

/* -----------------------------------------
   Scrollbar discrète (WebKit)
   ----------------------------------------- */

.formaDesc-left::-webkit-scrollbar,
.formaDesc-right::-webkit-scrollbar{
  width: 6px;
}

.formaDesc-left::-webkit-scrollbar-thumb,
.formaDesc-right::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.25);
  border-radius: 6px;
}

.formaDesc-left::-webkit-scrollbar-track,
.formaDesc-right::-webkit-scrollbar-track{
  background: transparent;
}

/* -----------------------------------------
   Responsive
   ----------------------------------------- */

@media (max-width: 900px){
  .formaDesc{
    flex-direction: column;
    gap: 16px;
  }

  .formaDesc-left,
  .formaDesc-right{
    height: auto;
    max-height: none;
    padding: 0;
    border: none;
  }
}

/* =========================================
   CARTE "Informations pratiques" (colonne droite)
   ========================================= */

.infoCard{
  
  display: flex;
  flex-direction: column;

  border-radius: 22px;
  overflow: hidden;

  background: #efefef;
  color: #111;

  /* ombre + liseré */
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
}

/* Header noir */
.infoCard__head{
  background: #060606;
  padding: 22px 18px;
}

.infoCard__title{
  margin: 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 850;
  text-align: center;
}

/* Corps */
.infoCard__body{
  padding: 12px 12px 6px;
}

/* Ligne d’info */
.infoRow{
  display: flex;
  gap: 12px;
  padding: 12px 2px;

  border-bottom: 1px solid rgba(0,0,0,.10);
}

.infoRow:last-child{
  border-bottom: none;
}

.infoRow .k{
  font-weight: 850;
  font-size: 18px;
  white-space: nowrap;
}

.infoRow .v{
  font-size: 18px;
  font-weight: 500;
}

/* Footer (CTA en bas) */
.infoCard__foot{
  margin-top: auto;                 
  padding: 18px;

  /* petit fade + séparation */
  border-top: 1px solid rgba(0,0,0,.10);
  background: linear-gradient(to bottom, rgba(239,239,239,.70), rgba(239,239,239,1));
}

/* Bouton */
.infoCard__cta{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  width: 100%;
  height: 64px;

  border-radius: 999px;
  text-decoration: none;

  background: #79cf7c;              /* vert proche de ta réf */
  color: #0b0b0b;

  font-size: 24px;
  font-weight: 850;

  transition: transform .06s ease, filter .15s ease;
}

.infoCard__cta:hover{
  filter: brightness(1.04);
}

.infoCard__cta:active{
  transform: translateY(1px);
}

.infoCard__cta:focus-visible{
  outline: 2px solid rgba(0,0,0,.35);
  outline-offset: 3px;
}

/* Petite pastille icône */
.infoCard__ctaIcon{
  width: 34px;
  height: 34px;
  border-radius: 50%;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #0b0b0b;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

/* -----------------------------------------
   Ajustements responsives
   ----------------------------------------- */
@media (max-width: 900px){
  .infoCard{
    min-height: unset;
  }

  .infoCard__title{
    font-size: 24px;
  }

  .infoRow .k,
  .infoRow .v{
    font-size: 16px;
  }

  .infoCard__cta{
    height: 58px;
    font-size: 20px;
  }
}

/* =========================================
   FORMATEUR — bloc 2 colonnes + citation stylisée
   ========================================= */

.trainerBlock{
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 22px;

  padding: 18px 0;
}

/* -------- Colonne gauche -------- */
.trainerBlock__left{
  display: flex;
  flex-direction: column;
  gap: 14px;

  padding: 16px;
  border-radius: 18px;

  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
}

.trainerBlock__avatar{
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;

  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
}

.trainerBlock__avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trainerBlock__name{
  font-size: 18px;
  font-weight: 850;
  color: rgba(255,255,255,.95);
  line-height: 1.15;
}

.trainerBlock__role{
  margin-top: 4px;
  font-size: 14px;
  color: rgba(255,255,255,.68);
  line-height: 1.35;
}

/* Bouton profil */
.trainerBlock__btn{
  margin-top: 6px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  height: 46px;
  padding: 0 16px;

  border-radius: 999px;
  text-decoration: none;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);

  font-size: 14px;
  font-weight: 750;

  transition: background .15s ease, border-color .15s ease, transform .05s ease;
}

.trainerBlock__btn:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.28);
}

.trainerBlock__btn:active{
  transform: translateY(1px);
}

.trainerBlock__btn:focus-visible{
  outline: 2px solid rgba(104, 255, 160, .35);
  outline-offset: 2px;
}

.trainerBlock__btnIcon{
  width: 28px;
  height: 28px;
  border-radius: 50%;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  line-height: 1;
}

/* -------- Colonne droite (citation) -------- */
.trainerBlock__right{
  padding: 16px;
  border-radius: 18px;

  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
}

/* Citation stylisée */
.trainerQuote{
  position: relative;
  margin: 0;

  padding: 12px 10px 12px 18px;
}

.trainerQuote p{
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,.72);
}

/* Gros guillemets décoratifs */
.trainerQuote::before{
  content: "“";
  position: absolute;
  left: -2px;
  top: -18px;

  font-size: 64px;
  font-weight: 900;
  line-height: 1;

  color: rgba(255,255,255,.18);
}

.trainerQuote::after{
  content: "”";
  position: absolute;
  right: 4px;
  bottom: -34px;

  font-size: 64px;
  font-weight: 900;
  line-height: 1;

  color: rgba(255,255,255,.12);
}

/* Petit liseré à gauche façon blockquote */
.trainerQuote{
  border-left: 3px solid rgba(104, 255, 160, .30);
}

/* -------- Responsive -------- */
@media (max-width: 900px){
  .trainerBlock{
    grid-template-columns: 1fr;
  }

  .trainerBlock__avatar{
    width: 72px;
    height: 72px;
  }
}
