/*
Theme Name: Divi Child
Template: Divi
Description: Thème enfant pour Divi
Author: Any Communication
Author URI: https://any-communication.com
Version: 1.0.6
*/
@import url("../Divi/style.css");

.fond-plein {
  width: 100vw; /* largeur = 100% de la fenêtre */
  min-height: 100vh; /* hauteur = 100% de la fenêtre */
  background-image: url("https://mbhorizonpadel.fr/wp-content/uploads/2025/08/Fond-Herbe.png");
  background-repeat: repeat;
  background-size: auto; /* ou cover si tu veux remplir sans répéter */
  background-position: top left; /* ajuste selon besoin */
}

@media (max-width: 980px) {
  .swap-1-2-mobile > .et_pb_column:nth-child(1) {
    order: 2;
  }
  .swap-1-2-mobile > .et_pb_column:nth-child(2) {
    order: 1;
  }
  .swap-1-2-mobile > .et_pb_column:nth-child(3) {
    order: 3;
  } /* garde la 3 en troisième */
}

@media (min-width: 1200px) {
  /* pousse le menu à droite */
  .menu-right .et_pb_menu__wrap {
    display: flex;
    align-items: center;
  }
  .menu-right .et_pb_menu__menu {
    margin-left: auto;
  }

  /* range les items sur une seule ligne, sans retour */
  .menu-right .et_pb_menu__menu > nav > ul {
    display: flex;
    flex-wrap: nowrap; /* pas de retour à la ligne */
    justify-content: flex-end;
    align-items: center;
    gap: 18px; /* espace entre items, ajuste si besoin */
  }

  /* empêche tout li de s’étirer ou de prendre 100% */
  .menu-right .et_pb_menu__menu > nav > ul > li {
    flex: 0 0 auto; /* taille au contenu */
    width: auto !important; /* écrase d’éventuels width:100% */
  }

  /* évite la coupure sur deux lignes */
  .menu-right .et_pb_menu__menu > nav > ul > li > a {
    white-space: nowrap;
    display: flex; /* utile si icône + texte */
    align-items: center;
  }
}

/*PERSONNALISER LE BOUTON DE RETOUR EN HAUT DE PAGE*/

/*Opacité du bouton et effets d'animation (pour tous les navigateurs)*/
.et_pb_scroll_top.et-visible {
  opacity: 1;
  -webkit-animation: fadeInBottom 1s;
  -moz-animation: fadeInBottom 1s;
  -o-animation: fadeInBottom 1s;
  animation: fadeInBottom 1s;
}

/*Positionnement et couleur du bouton*/
.et_pb_scroll_top.et-pb-icon {
  right: calc(
    50% - 25px
  ); /*distance du bouton par rapport à la droite de la fenêtre*/
  bottom: 50px; /*distance du bouton par rapport au bas de la fenêtre*/
  overflow: hidden;
  isolation: isolate;
  border-radius: 25px; /*Propriété permettant d'arrondir le bouton, supprimez la si vous voulez un bouton carré*/
  border: 2px solid rgba(255, 255, 255, 1);
  box-shadow: 2px 0 18px 0 rgba(0, 0, 0, 0.3);
  background: transparent !important;
}

/* Couche verre (blur + distorsion + voile), on n'utilise PAS ::before pour ne pas écraser l'icône */
.et_pb_scroll_top.et-pb-icon::after {
  content: "";
  position: absolute;
  inset: -95%;
  pointer-events: none;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  filter: url(#de-glass-distortion);
  background: #5e8b3a;
  box-shadow: inset 2px 2px 1px rgba(255, 255, 255, 0.5),
    inset -1px -1px 1px rgba(255, 255, 255, 0.5);
  border-radius: inherit;
  z-index: 0;
}

/*Choix de l'icone et couleur de celui-ci*/
.et_pb_scroll_top:before {
  position: relative;
  z-index: 1;
  content: "\36"; /* icone provenant des icones de bases de Divi*/
  color: #fff; /*couleur de l'icône*/
}

/* PERSONNALISER LES ARTICLES */
@media (max-width: 980px) {
  .single-post .wp-block-gallery.columns-2 figure,
  .single-post .wp-block-gallery.columns-3 figure {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-bottom: 20px;
  }
}

/* PERSONNALISER LES BADGES TOURNOIS */
/* Conteneur des badges */
.mbh-tournament-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.2rem 0;
}

/* =========================================
   BADGES TOURNOIS MB HORIZON PADEL
   Palette : #efd396 / #6c4e3d / #5e8b3a / #f5f1e7
   ========================================= */

/* Style de base d'un badge */
.mbh-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 0;
  font-size: 0.8rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: #f5f1e7;
  color: #6c4e3d;
}

/* =========================================
   SÉRIES : couleurs vives et marquées
   ========================================= */

.mbh-badge--serie {
  color: #fff;
  border-color: transparent;
}

/* P250 → jaune */
.mbh-badge--p25,
.mbh-badge--p50,
.mbh-badge--p100,
.mbh-badge--p250,
.mbh-badge--p500,
.mbh-badge--p1000,
.mbh-badge--p2000 {
  background: #f5c542;
  color: #6c4e3d;
}

/* Série interne club */
.mbh-badge--serie-default {
  background: #6c4e3d;
  color: #f5f1e7;
}

/* =========================================
   FORMAT, PARTICIPANTS, PRIX
   Harmonisés avec la palette du thème
   ========================================= */

/* Format → ton beige du thème */
.mbh-badge--format {
  background: #f5f1e7;
  color: #6c4e3d;
}

/* Participants → ton marron du thème */
.mbh-badge--participants {
  background: #f5f1e7;
  color: #6c4e3d;
}

/* Prix → neutre avec accent beige */
.mbh-badge--price {
  background: #f5f1e7;
  color: #6c4e3d;
}

/* =========================================
   STATUTS : couleurs marquées
   ========================================= */

/* Statut par défaut (inscriptions ouvertes) */
.mbh-badge--statut {
  background: #5e8b3a;
  color: #fff;
}

/* Statut complet → rouge/orange */
.mbh-badge--statut.complet {
  background: #e33b2f;
  color: #fff;
}

/* Statut annulé → gris foncé */
.mbh-badge--statut.annule {
  background: #3f424d;
  color: #f5f1e7;
}

/* Statut reporté → orange doux */
.mbh-badge--statut.reporte {
  background: #f38b2a;
  color: #fff;
}

/* Statut reprogrammé → bleu */
.mbh-badge--statut.reprogramme {
  background: #2b7fdc;
  color: #fff;
}

/* Statut résultats → violet */
.mbh-badge--statut.resultats {
  background: #7c3aed;
  color: #fff;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 767px) {
  .mbh-tournament-badges {
    gap: 0.4rem;
  }

  .mbh-badge {
    font-size: 0.78rem;
    padding: 0.2rem 0.6rem;
  }
}
/* =========================================
   gestion des infos dans les sliders
   ========================================= */
/* Styles pour les badges dans le slider */
.slide-tournoi .mbh-tournament-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
}

.slide-tournoi .mbh-badge {
  font-size: 0.75rem;
  padding: 4px 10px;
  line-height: 1.3;
}

/* Responsive */
@media (max-width: 767px) {
  .slide-tournoi .mbh-badge {
    font-size: 0.7rem;
    padding: 3px 8px;
  }

  .mbh-slider-date {
    font-size: 0.85rem !important;
  }
}
/* Date centrée */
.slide-tournoi .mbh-slider-date {
  margin: 10px 0 0 0;
  font-size: 1rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  color: #fff !important;
  justify-content: center; /* Centrage horizontal */
  text-align: center;
}

.slide-tournoi .mbh-slider-date svg {
  fill: currentColor;
  flex-shrink: 0; /* Empêche l'icône de rétrécir */
}

/* Badges centrés */
.slide-tournoi .mbh-slider-badges {
  margin: 0;
  text-align: center; /* Permet le centrage du contenu */
}

.slide-tournoi .mbh-tournament-badges {
  display: inline-flex; /* Changé de flex à inline-flex */
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center; /* Centrage horizontal */
  align-items: center;
}

.slide-tournoi .mbh-badge {
  font-size: 0.75rem;
  padding: 4px 10px;
  line-height: 1.3;
}

/* Badges sur fond sombre - augmenter le contraste */
.slide-tournoi .mbh-badge {
  border-width: 2px;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 767px) {
  .slide-tournoi .mbh-badge {
    font-size: 0.7rem;
    padding: 3px 8px;
  }

  .slide-tournoi .mbh-slider-date {
    font-size: 0.85rem !important;
  }

  .slide-tournoi .mbh-tournament-badges {
    gap: 6px;
  }
}

/* Amélioration de l'espacement global */
.slide-tournoi .et_pb_slide_content {
  margin-bottom: 0; /* Réduit l'espace après le texte */
}

.slide-tournoi .et_pb_button_wrapper {
  margin-top: 0; /* Augmente l'espace avant le bouton */
}

/* Grille tournois */

.mbh-tournois-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin: 15px 0 20px 0;
  align-items: start;
}

.mbh-tournoi-card {
  position: relative;
  height: auto;
  min-height: 400px;
  display: flex;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  align-self: start;
}

.mbh-tournoi-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.mbh-tournoi-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mbh-tournoi-card__overlay {
  position: relative;
  flex: 1;
  min-height: 400px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(108, 78, 61, 0.6),
    rgba(94, 139, 58, 0.45) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  color: white;
}

.mbh-tournoi-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  line-height: 1.3;
  color: white;
}

.mbh-tournoi-card__date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
}

.mbh-tournoi-card__date svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.mbh-tournoi-card__badges {
  margin-bottom: 20px;
}

.mbh-tournoi-card__badges .mbh-tournament-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mbh-tournoi-card__badges .mbh-badge {
  font-size: 0.9rem;
  padding: 4px 8px;
}

.mbh-tournoi-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #5e8b3a;
  color: white;
  text-decoration: none;
  border-radius: 0;
  font-weight: 600;
  font-size: 20px;
  transition: background 0.3s ease;
  align-self: flex-start;
}

.mbh-tournoi-card__link svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 1200px) {
  .mbh-tournois-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 980px) {
  .mbh-tournois-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .mbh-tournoi-card {
    height: 380px;
  }

  .mbh-tournoi-card__title {
    font-size: 1.25rem;
  }
}

@media (max-width: 767px) {
  .mbh-tournois-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mbh-tournoi-card {
    height: 400px;
  }
}

/* =========================================
   Grille d'actualités - Version corrigée
   ========================================= */

.mbh-actus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin: 0 0 25px 0;
}

.mbh-actu-card {
  position: relative;
  height: auto; /* Changé de 450px à auto */
  min-height: 450px; /* Hauteur minimale pour garder l'uniformité */
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  background: #f5f1e7;
  display: flex;
  flex-direction: column;
}

.mbh-actu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.mbh-actu-card__image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  flex-shrink: 0; /* Empêche l'image de rétrécir */
}

.mbh-actu-card__image--placeholder {
  background: linear-gradient(
    135deg,
    rgba(108, 78, 61, 0.8) 0%,
    rgba(94, 139, 58, 0.8) 100%
  );
}

.mbh-actu-card__overlay {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Prend tout l'espace restant */
  background: white;
}

.mbh-actu-card__category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #5e8b3a;
  background: rgba(94, 139, 58, 0.1);
  padding: 4px 12px;
  border-radius: 0;
  margin-bottom: 10px;
  align-self: flex-start;
  letter-spacing: 0.5px;
}

.mbh-actu-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #6c4e3d;
  margin: 0 0 10px 0;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 3em; /* Réserve l'espace pour 2 lignes */
}

.mbh-actu-card__date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #5e8b3a;
  margin-bottom: 12px;
}

.mbh-actu-card__date svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.mbh-actu-card__excerpt {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  flex-grow: 1;
  margin-bottom: 15px;
  min-height: 3em; /* Réserve l'espace pour 2 lignes */
}

.mbh-actu-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  color: #5e8b3a;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  align-self: flex-start;
  margin-top: auto; /* Pousse le lien en bas */
}

.mbh-actu-card__link:hover {
  color: #4a6e2e;
}

/* Bouton "Toutes les actualités" */
.mbh-actus-voir-plus {
  text-align: center;
  margin-top: 40px;
}

.mbh-actus-voir-plus__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  background: #5e8b3a;
  color: white !important;
  text-decoration: none;
  border-radius: 0;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background 0.3s ease;
}

.mbh-actus-voir-plus__btn:hover {
  background: #4a6e2e;
}

.mbh-actus-voir-plus__btn svg {
  width: 20px;
  height: 20px;
}

/* Responsive */
@media (max-width: 1200px) {
  .mbh-actus-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .mbh-actu-card {
    min-height: 420px;
  }
}

@media (max-width: 980px) {
  .mbh-actus-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .mbh-actu-card {
    min-height: 400px;
  }

  .mbh-actu-card__title {
    font-size: 1.1rem;
  }
}

@media (max-width: 767px) {
  .mbh-actus-grid {
    grid-template-columns: 1fr !important; /* 1 colonne sur mobile */
    gap: 20px;
    max-width: 100%; /* Annule les max-width */
    margin-left: 0;
    margin-right: 0;
  }

  .mbh-actu-card {
    height: auto;
    min-height: 380px;
  }

  .mbh-actu-card__image {
    height: 220px;
  }

  .mbh-actu-card__overlay {
    padding: 15px;
  }

  .mbh-actu-card__title {
    font-size: 1.1rem;
  }

  .mbh-actus-voir-plus__btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

/* Gestion des grilles avec moins de 8 articles - Desktop seulement */
@media (min-width: 768px) {
  .mbh-actus-grid:has(.mbh-actu-card:nth-child(7):last-child) {
    /* 7 articles : 4 + 3 */
    grid-template-columns: repeat(4, 1fr);
  }

  .mbh-actus-grid:has(.mbh-actu-card:nth-child(6):last-child) {
    /* 6 articles : 3 + 3 */
    grid-template-columns: repeat(3, 1fr);
  }

  .mbh-actus-grid:has(.mbh-actu-card:nth-child(5):last-child) {
    /* 5 articles : 3 + 2 */
    grid-template-columns: repeat(3, 1fr);
  }

  .mbh-actus-grid:has(.mbh-actu-card:nth-child(4):last-child) {
    /* 4 articles : 2 + 2 */
    grid-template-columns: repeat(2, 1fr);
  }

  .mbh-actus-grid:has(.mbh-actu-card:nth-child(3):last-child) {
    /* 3 articles */
    grid-template-columns: repeat(3, 1fr);
  }

  .mbh-actus-grid:has(.mbh-actu-card:nth-child(2):last-child) {
    /* 2 articles : centrer */
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .mbh-actus-grid:has(.mbh-actu-card:only-child) {
    /* 1 article : centrer */
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Pagination pour blog */
.mbh-archive-pagination {
  margin: 40px auto 0;
  text-align: center;
}

.mbh-archive-pagination ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 8px;
}

.mbh-archive-pagination li a,
.mbh-archive-pagination li span {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 0;
  border: 1px solid #5e8b3a;
  color: #5e8b3a;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.mbh-archive-pagination li span.current {
  background: #5e8b3a;
  color: #fff;
}

.mbh-archive-pagination li a:hover {
  background: #4a6e2e;
  color: #fff;
}

/* mb_app_badges */
.app_badges_wrap{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:20px;
}

.app_badge_link{
  display:flex;
  align-items:center;
}

.app_badge_img{
  height:50px;
  width:auto;
  display:block;
}

/* =========================================
   Acceuil
   ========================================= */

/* MB Horizon Padel – Header plein écran spécifique */
.mbh-fullwidth-header .et_pb_fullwidth_header_container,
.mbh-fullwidth-header .header-content-container{
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

.mbh-fullwidth-header .header-content{
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* Animations slide buttons – MB Horizon Padel header */
@keyframes mbh-slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes mbh-slide-in-right {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Bouton 1 – glisse depuis la gauche */
.et_pb_fullwidth_header_0 .et_pb_button_one{
  animation: mbh-slide-in-left 0.8s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

/* Bouton 2 – glisse depuis la droite */
.et_pb_fullwidth_header_0 .et_pb_button_two{
  animation: mbh-slide-in-right 0.8s ease-out forwards;
  animation-delay: 0.45s;
  opacity: 0;
}


/* MBH Home postits */

.mbh-postits{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 35px;
  align-items: start;
}

@media (max-width: 980px){
  .mbh-postits{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px){
  .mbh-postits{ grid-template-columns: 1fr; }
}

.mbh-postit{
  text-decoration:none;
  color: inherit;
  display:block;
  transform: rotate(var(--mbh-rot, 0deg));
  transform-origin: 50% 20%;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.mbh-postit:hover{
  transform: rotate(calc(var(--mbh-rot, 0deg) + var(--mbh-rot-delta, 0deg))) translateY(-4px);
  box-shadow: 0 18px 28px rgba(0,0,0,.20);
}

/* Équilibrage des rotations (delta CSS) */
.mbh-postit{
  transform: rotate(calc(var(--mbh-rot, 0deg) + var(--mbh-rot-delta, 0deg)));
}

/* Alternance gauche / droite plus marquée */
.mbh-postits > .mbh-postit:nth-child(odd){  --mbh-rot-delta: 3deg; }
.mbh-postits > .mbh-postit:nth-child(even){ --mbh-rot-delta: -3deg; }

/* Petites variations pour casser l’effet trop mécanique */
.mbh-postits > .mbh-postit:nth-child(3n){   --mbh-rot-delta: 4deg; }
.mbh-postits > .mbh-postit:nth-child(4n){   --mbh-rot-delta: -4deg; }


.mbh-postit__inner{
  position:relative;
  background: #f5f1e7;
  border-radius: 0;
  padding: 26px 18px 16px 18px;
  box-shadow: 0 10px 18px rgba(0,0,0,.16);
  min-height: 170px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;

  overflow: visible;
}

/* Punaise, centrée, qui dépasse */
.mbh-postit__pin{
  position:absolute;
  top: -18px;
  left: 50%;
  width: 40px;
  height: auto;
  z-index: 5;
  pointer-events:none;
  user-select:none;
  transform: translateX(-50%) rotate(-6deg);
  filter: drop-shadow(0 2px 0 rgba(0,0,0,.25));
}

/* Logo filigrane */
.mbh-postit__stamp{
  position:absolute;
  right: 10px;
  bottom: 10px;
  width: 54px;
  height: auto;
  opacity: .30;
  z-index: 1;
  pointer-events:none;
  user-select:none;
}

.mbh-postit__kicker,
.mbh-postit__title,
.mbh-postit__date,
.mbh-postit__btn{
  position:relative;
  z-index: 2;
}

.mbh-postit__kicker{
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(0,0,0,.55);
  font-size: 13px;
  margin-bottom: 10px;
}

.mbh-postit__title{
  font-weight: 800;
  font-size: 20px;
  line-height: 1.15;
  color: rgba(0,0,0,.82);
  margin-bottom: 12px;
}

.mbh-postit__date{
  font-weight: 700;
  font-size: 14px;
  color: rgba(0,0,0,.65);
  margin-bottom: 14px;
}

.mbh-postit__btn{
  align-self:flex-start;
  background:#5e8b3a;
  color:#fff;
  padding: 10px 16px;
  border-radius: 0;
  font-weight: 800;
  font-size: 14px;
}

@media (max-width: 480px){
  .mbh-postit{ transform: none; }
  .mbh-postit:hover{ transform: translateY(-2px); }
}

/* FAQ visible uniquement pour les tournois internes club */

/* Par défaut : tournois FFT → on masque */
body.mbh-tournoi-fft .et_pb_accordion_item_2_tb_body {
    display: none !important;
}

/* Tournois internes club → on affiche */
body.mbh-tournoi-interne .et_pb_accordion_item_2_tb_body {
    display: block !important;
}

