/* === FONT === */
@font-face {
  font-family: 'LeagueGothicRegular';
  src: url('league-gothic/League_Gothic-webfont.eot');
  src: url('league-gothic/League_Gothic-webfont.eot?#iefix') format('embedded-opentype'),
       url('league-gothic/League_Gothic-webfont.woff') format('woff'),
       url('league-gothic/League_Gothic-webfont.ttf') format('truetype'),
       url('league-gothic/League_Gothic-webfont.svg#LeagueGothicRegular') format('svg');
  font-weight: normal;
  font-style: normal;
}

/* === RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
    font-family: Arial, sans-serif;
    color: white;
    overflow-x: hidden;

    /* BACKGROUND IMAGE */
    background-image: url('https://www.ogcnissa.com/img/background-v6.jpg');
    background-repeat: no-repeat;        /* pas de répétition */
    background-size: cover;              /* couvre tout l’écran */
    background-position: center top;     /* centre horizontal, top vertical */
    background-attachment: fixed;        /* fixe le background au scroll */
}

body.no-scroll {
  overflow: hidden;
}

/* liens du contenu */

a{
    color:#d71920;                 /* rouge */
    text-decoration:none;
    position:relative;
}


/* animation au hover */

a:hover{
    color:#000;
}

a:hover::after{
    width:100%;
}

/* === LARGEUR FIXE du site === */
.main-container {
  width: 1200px; /* ou la largeur que tu veux */
  max-width: 100%;
  margin: 0 auto; /* centre horizontalement */
  padding: 0; /* un peu d’espace sur les côtés */
  box-sizing: border-box; 
}

/* === HEADER FIXE === */
.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
    background: transparent; /* 🔴 AVANT : #111 */
  overflow: visible;
}

/* === HEADER : fond centré 1200px === */
.header-fixed::before {
   content: none !important;
}

.page-offset {
  height: 230px;
}

/* ===============================
   HEADER COMPACT AU SCROLL
================================ */

/* transitions douces */
.header-fixed,
.top-bar,
.header-fixed nav {
  transition: all 0.3s ease;
}

/* AU SCROLL : on cache UNIQUEMENT la pub */
.header-fixed.header--compact .top-bar {
  height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

/* ⚠️ La barre grise reste visible */
.header-fixed.header--compact .top-grey-bar {
  height: auto;
  opacity: 1;
}

/* Le menu reste bien collé */
.header-fixed.header--compact nav {
  margin-top: 0;
}

/* Ajustement de l’espace réservé (barre grise + menu) */
.header-fixed.header--compact + .site-content .page-offset {
  height: 120px; 
  /* adapte si besoin : 
     ≈ barre grise (~40px) + menu (~80px) */
}

.top-bar {
  transition: opacity 0.2s ease, height 0.2s ease;
}

#lightbox-container-image-data-box,
#lightbox-container-image-data-box * {
    box-sizing: content-box !important;
}
#lightbox-container-image-data {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
}

#lightbox-image-details {
    flex: 1 !important;
    white-space: normal !important;
    overflow: visible !important;
}

#lightbox-image-details-caption {
    font-family: Verdana, sans-serif;
    font-size: 12px;
    color: #333;
    text-align: justify;
    padding: 5px 10px;
	overflow: visible !important;
    max-height: none !important;
}

#lightbox-image-details-caption b {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #000;
    margin-bottom: 8px;
}

#lightbox-image-details-caption a {
    white-space: nowrap !important;
    display: inline-block !important;
}

#lightbox-container-image-data-box {
    overflow: visible !important;
}

#lightbox-image-details {
    overflow: visible !important;
    max-height: none !important;
}

#lightbox-image-details-caption {
    overflow: visible !important;
    max-height: none !important;
    white-space: normal !important;
}

/* ===============================
   FONDU LATERAL BARRE GRISE
================================ */
.top-grey-bar {
    position: relative;
    width: 100%;
	height: 50px;            /* ✅ hauteur totale */
    background: none; /* plus de fond plein */
    z-index: 1;       /* sous la navigation */
}

/* zone centrale pleine */
.top-grey-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 50px;
    background: #333333;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* zones latérales semi-transparentes */
.top-grey-bar::before,
.top-grey-bar::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
	height: 50px;            /* ✅ IMPORTANT */
    width: calc((100vw - 1200px) / 2);
    background: rgba(51, 51, 51, 0.6);
    z-index: 4;
    pointer-events: none;
}

.top-grey-bar::before { left: 0; }
.top-grey-bar::after  { right: 0; }


/* Position normale (sans scroll) */
.top-online {
    font-family: Verdana, sans-serif;
    font-size: 11px;
    color: #fff;
    white-space: nowrap;
    flex-shrink: 0;
    transition: margin-left 0.3s ease;
	padding-left: 10px;
}

/* Quand le header est compact (au scroll) */
.header--compact .top-online {
    margin-left: 121px; /* largeur du logo-nav */
}



.top-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.top-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: color 0.3s;
}

.top-links a:hover {
  color: #d71920;
}

.social-icon {
  font-size: 16px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  color: #ffffff;
  transition: color 0.3s;
}

.social-icon i {
  font-size: 18px;
}

.social-icon:hover {
  color: #d71920;
}

.social-icon span,
.social-icon a {
  text-indent: -9999px;
  overflow: hidden;
  display: inline-block;
  width: 0;
}

.social-icon svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.top-search {
  height: 26px;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid #bbb;
  font-size: 14px;
  color: #ffffff;
  background: #000000;
}

.top-search::placeholder {
  color: #ddd;
}

.mp-icon img {
  width: 18px;
  vertical-align: middle;
  filter: brightness(0) invert(1);
}

.mp-icon img:hover {
  filter: brightness(0) invert(1) sepia(1) hue-rotate(-20deg) saturate(500%);
}

.mp-count {
  color: white;
  background: red;
  padding: 1px 4px;
  border-radius: 4px;
  font-size: 11px;
}

.connexion-link a {
  font-weight: bold;
  color: #ffffff;
  transition: color 0.3s;
   margin-right: 10px; 
}

.connexion-link a:hover {
  color: #d71920;
}

/* === PROFIL === */

.profile-avatar {
    text-align: center;
    margin-bottom: 20px;
}

.profile-avatar img {
    border-radius: 50%;
    border: 3px solid #d71920;
}

.main-article h1 {
    text-align: left;
    color: #333;
}

.main-article p {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 15px;
}

.main-article .btn {
    display: block;
    text-align: center;
    width: 200px;
    margin: 30px auto 0 auto;
    padding: 10px 20px;
    background-color: #d71920;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: opacity 0.3s;
}

.main-article .btn:hover {
    opacity: 0.8;
}

/* === BANNIERE === */
.site-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.site-container.top-grey-inner {
  justify-content: space-between;
}

.top-bar .banner img {
  max-width: 100%;
  height: auto;
  display: block;

}

/* === NAVIGATION === */
.header-fixed nav {
	 position: relative; /* déjà le cas chez toi */
	 overflow: visible;
  background: transparent;   /* IMPORTANT */	
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 10;
  height: 80px;
}

/* Trait rouge centrée sur la zone centrale */
.menu-red-line {
    width: 1200px;             /* largeur zone centrale */
    max-width: 100%;           /* responsive */
    height: 6px;
    background: #d71920;
    margin: 0 auto;            /* centré */
    position: relative;
    z-index: 1;                /* derrière le menu si nécessaire */
}

/* Ligne rouge centrée avec transparence sur les côtés */
.menu-red-line-gradient {
    position: absolute;
    bottom: 0;             /* sous le menu */
    left: 0;
    width: 100%;           /* occupe toute la largeur de l'écran */
    height: 6px;
    background: linear-gradient(
        to right,
        rgba(215,25,32,0),
        #d71920 40%,
        rgba(215,25,32,0)
    );
    z-index: 1;
}

.logo-nav {
  position: relative;
  display: flex;
  width: 121px;
  height: 80px;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

/* fond gris réel */
.logo-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #333333;
    z-index: -1;
}

.logo-nav img {
  height: 210px;
  width: auto;
  position: relative;
  top: 0;
  transform: translateY(-20px);
}

.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  border-left: 1px solid #000;
  height: 100%;
  background: #333333; /* FOND DES BOUTONS */
}
/* ailes gauche & droite */
.header-fixed nav::before,
.header-fixed nav::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: calc((100vw - 1200px) / 2 - 1px); /* retrancher 1px pour éviter chevauchement */
  background: rgba(51, 51, 51, 0.6);
  z-index: -1;
}

/* aile gauche */
.header-fixed nav::before {
  left: 0;
}

/* aile droite */
.header-fixed nav::after {
  right: 0;
}

.menu > li {
  position: static;
  border-right: 1px solid #000;
  height: 100%;
  width: 154px;
}


.menu > li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 80px;        /* juste sous le bouton */
  width: 100%;
  height: 20px;     /* zone-tampon pour éviter la perte du hover */
}

.menu > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  font-family: 'LeagueGothicRegular';
  font-size: 30px;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
  padding: 0;
}

.menu > li:hover > a,
.menu > li.open > a {
  background: #d71920;
  color: white;
}

.menu > li:last-child {
  border-right: none;
}

/* === SOUS-MENUS === */
.submenu {
    display: none;
    position: absolute;
    top: 80px; /* juste sous ton header */
    left: 0;
    width: 100%;
    background: rgba(215, 25, 32, 0.80); /* rouge semi-transparent */
    padding: 30px 0;
    z-index: 15;
    backdrop-filter: blur(3px);
    animation: submenufade 0.25s ease-out forwards;
}

@keyframes submenufade {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Affichage au survol */
.menu > li:hover .submenu,
.menu > li.open .submenu {
    display: block;
}

.submenu-inner {
  display: flex;
  justify-content: flex-start;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
  background: none;
  padding-left: 160px; /* ALIGNER SOUS 'ACTUALITÉ' */
}

/* Colonnes configurables */
.submenu-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Liens */
.submenu-column a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-family: Arial, sans-serif;
    padding: 6px 0;
    display: block;
    transition: 0.2s;
}

.submenu-column a:hover {
    color: #000;
}

/* En-têtes de colonnes */
.submenu-column-title {
    font-size: 20px;
    color: #000;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 10px;
}

/* === WRAPPER CENTRAL === */
.page-container {
    display: block;
    justify-content: center;
    width: 100%;
}

.page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.page-wrapper * {
    max-width: 100%;
    box-sizing: border-box;
}


.main-article img,
.article-image,
.article-content img,
.related-card img {
	margin-top: 0;      /* supprime l'espace au-dessus de l'image */
    padding-top: 0;
    max-width: 100%;
    height: auto;
    display: block;
}

.related-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* === CORRECTION PUB 160x600 === */

/* Autorise la pub à sortir de la zone centrale */
.page-wrapper,
.home-layout {
    overflow: visible !important;
}

/* Layout home */
.home-layout {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* Pub droite */
.home-right-ad {
    position: absolute;
    top: 35px;
    right: -180px; /* 160px + 20px marge */
    width: 160px;
    height: 600px;
    z-index: 100;
}

.home-right-ad img {
    display: block;
    width: 160px;
    height: auto;
}




/* =====================================================
   CARROUSEL DE UNE
===================================================== */
/* ===== CONTAINER ===== */
.news-slider {
  width: 100%;
  max-width: 1200px;   /* garde ton design desktop */
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

/* ===== INNER WRAPPER ===== */
.news-slider-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* ===== TRACK ===== */
.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  will-change: transform;
}

/* ===== SLIDE ===== */
.news-slide {
  flex: 0 0 100%;      /* 🔥 responsive */
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

/* ===== IMAGE ===== */
.news-slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== CAPTION ===== */
.news-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(50,50,50,0.6);
  color: #fff;
  padding: 20px 25px 60px 25px;
  font-family: 'LeagueGothicRegular';
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* ===== TEXT SIZES DESKTOP ===== */
.news-caption .news-title {
  font-size: 60px;
  line-height: 1.2;
  text-transform: uppercase;
}

.news-caption .news-date {
  font-size: 26px;
}

.news-caption .news-summary {
  font-family: LeagueGothicRegular;
  font-size: 26px;
}

/* ===== RUBRIQUE ===== */
.news-rubrique {
  position: absolute;
  top: 0;
  left: 0;
  background: #333333;
  color: #d71920;
  padding: 8px 14px;
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
  z-index: 20;
}

/* ===== ARROWS ===== */
.news-slider .prev,
.news-slider .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: white;
  border: none;
  font-size: 40px;
  cursor: pointer;
  padding: 0 15px;
  z-index: 10;
}

.news-slider .prev { left: 10px; }
.news-slider .next { right: 10px; }

.news-slider .prev:hover,
.news-slider .next:hover {
  color: #d71920;
}

/* ===== DOTS ===== */
.news-slider .dots {
  text-align: center;
  position: absolute;
  bottom: 10px;
  width: 100%;
}

.news-slider .dots span {
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.news-slider .dots span.active {
  background: #d71920;
}

/* ligne calendrier */

.smallcal-row td{
transition:background 0.2s ease;
}

/* fond gris */

.smallcal-row:hover td{
background:#f3f3f3;
}

/* barre rouge sur la première colonne seulement */

.smallcal-row td:first-child{
position:relative;
padding-left:8px;
}

.smallcal-row:hover td:first-child::before{
content:"";
position:absolute;
left:0;
top:3px;
bottom:3px;
width:3px;
background:#d71920;
}

/* styles texte */

.smallcal-left,
.smallcal-match{
font-family:Verdana;
font-size:12px;
color:#000;
}

.smallcal-icon{
vertical-align:middle;
margin-right:5px;
}

.smallcal-hour{
font-size:10px;
}



/* ===== BLOCS MATCH PAGE ACCUEIL ===== */
.index-match-content {
    position: relative;
    background: #fff;
    color: #000;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 18px;
    line-height: 1.4;
    border-left: 4px solid transparent;
    transition: border-color 0.2s;
}

.index-match-content:hover {
    border-left-color: #d71920;
}

/* Lien overlay invisible */
.index-match-overlay-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 14px;
}

/* ===== BOUTONS LIENS MATCHS ===== */
.match-links-btn {
    font-family: Verdana, Arial, sans-serif;
    font-size: 13px;
    padding: 5px 10px;
    background: #f3f3f3;
    border-radius: 3px;
	margin-top: 20px;
	margin-right: 10px;
    font-weight: bold;
    color: #d71920;
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    z-index: 2;
    transition: background 0.2s, color 0.2s;
}

.match-links-btn:hover {
    background: #d71920;
    color: #000;
}

.match-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

/* bloc match */

.match-box{
display:flex;
flex-direction:column;
align-items:center;
text-align:center;
gap:10px;
font-family:LeagueGothicRegular, Arial, sans-serif;
letter-spacing:0.5px;
margin-bottom: 10px;
}


/* compétition */

.match-meta{
font-size:40px;
text-transform:uppercase;
color:#000;
}

.match-date{
font-size:30px;
color:#555;
}


/* logos */

.match-logos{
display:flex;
gap:12px;
align-items:center;
justify-content:center;
margin-top:6px;
}

.match-logos img{
height:auto;
width:auto;
}



/* ligne score */

.match-score-line{
font-size:38px;
text-transform:uppercase;
}

.match-score{
font-size:38px;
color:#d71920;
margin:0 8px;
}




/* lien bloc prochain match */

.match-bloc-link{
text-decoration:none;
color:inherit;
display:block;
}


/* compétition */

.match-meta{
font-size:22px;
color:#444;
}

.match-date{
font-size:18px;
color:#777;
margin-top:2px;
}


/* logos */

.match-logos{
display:flex;
gap:12px;
align-items:center;
margin-top:6px;
justify-content:center;
}

.match-logos img{
height:auto;
width:auto;
max-height:none;
}


/* score */

.match-score-line{
font-size:34px;
}

.match-score{
font-family:LeagueGothicRegular;
font-size:34px;
color:#000;
margin:0 8px;
}

/* lien bloc prochain match */

.match-bloc-link{
text-decoration:none;
color:inherit;
display:block;
}


/* === LARGEUR MAX POUR MATCHS + CLASSEMENT === */
.zone-matchs,
.zone-classement,
.bloc-matchs,
.bloc-classement,
#matchs, 
#classement,
.content-center {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto !important;
    box-sizing: border-box;
}
.flash-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: stretch; /* 🔥 important */
}

/* ===== COLONNES ===== */

.flash-col {
  flex: 2 1 64%;
  min-width: 500px;
  position: relative;

  /* 🔥 AJOUT */
  display: flex;
  flex-direction: column;
}

.pub-col {
  flex: 1 1 31%;
  min-width: 250px;

  /* 🔥 AJOUT */
  display: flex;
  flex-direction: column;
}

/* ===== BLOC LIGUE 1 AVEC BOUTON ===== */
.bloc-journee-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.bloc-journee-wrapper .v6-journee {
    border-radius: 0 !important;
    box-shadow: none !important;
    height: auto !important;
    flex: 1;
}

.bloc-journee-wrapper .match-box {
    padding: 10px 0 12px 0;
    border-top: 1px solid #eee;
    background: #fff;
}



/* ===== TITRE ===== */

.flash-block-title {
  font-family: LeagueGothicRegular;
  font-size: 38px;
  color: white;
  text-transform: uppercase;
  margin: 0 0 8px 0;
  padding: 0;
}

/* ===== WRAPPER CARROUSEL ===== */

#flash-carousel-wrapper {
  position: relative;
  overflow: hidden;

  /* ❌ SUPPRIME la hauteur fixe */
  /* height: 450px; */

  /* 🔥 AJOUT */
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ===== TRACK ===== */

#flash-carousel {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;

  /* 🔥 AJOUT */
  flex: 1;
  height: 100%;
}

/* ===== SLIDE ===== */

.flash-slide {
  flex: 0 0 100%;
  position: relative;

  /* 🔥 AJOUT */
  height: 100%;
}

.flash-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* lien plein */
.flash-link {
  display: block;
  height: 100%;
}

/* ===== OVERLAY ===== */

.flash-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(50,50,50,0.6);
  color: #fff;
  box-sizing: border-box;
  padding: 20px 20px 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 5;
}

.flash-rubrique {
  background-color: #333333;
  color: #d71920;
  font-family: 'LeagueGothicRegular', sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  padding: 0 5px;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

/* ===== TEXTE ===== */

.flash-text { margin-top: auto; }

.flash-title {
  font-family: LeagueGothicRegular;
  font-size: 36px;
  margin-bottom: 0;
  margin-top: 10px;
}

.flash-date {
  font-family: LeagueGothicRegular;
  font-size: 22px;
  margin-bottom: 5px;
}

.flash-summary {
  font-family: LeagueGothicRegular;
  font-size: 22px;
  text-transform: none;
}

/* ===== DOTS ===== */

.flash-dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 50;
}

.flash-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #999;
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.3s;
}

.flash-dots span.active {
  background: #d71920;
  opacity: 1;
}

/* ===== FLECHES ===== */

.flash-prev,
.flash-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  color: white;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 20;
}

.flash-prev { left: 10px; }
.flash-next { right: 10px; }

.flash-prev:hover,
.flash-next:hover {
  color: #d71920;
}



/* ===== WRAPPER 3 COLS ===== */
.v6-3cols {
    display: flex;
    max-width: 1200px;
    width: 100%;
    margin: 20px auto;
    gap: 12px;
    align-items: stretch; /* 🔥 IMPORTANT */
}

.v6-col {
    flex: 1;
    display: flex;        /* permet d'étirer le contenu */
}

.v6-col > div {
    flex: 1;              /* le bloc intérieur prend toute la hauteur */
}

/* ===== TITRE ===== */
.v6-col-title {
    padding: 10px 0;
    margin-bottom: 10px;
}

.v6-col-title h2 {
    font-family: LeagueGothicRegular;
    font-size: 38px;
    color: white;
    text-transform: uppercase;
    margin: 0;
}

/* ===== CONTENU QUI S'ÉTIRE ===== */
.v6-col-content {
    flex: 1;              /* 🔥 TRÈS IMPORTANT */
    display: flex;
    flex-direction: column;
}

/* ===== force les blocs internes à remplir ===== */
.v6-col-content > * {
    flex: 1;
}


/* === NEWS GRID === */
.news-grid {
  width: 100%;
  max-width: 1200px;
}

.news-grid h2 {
  font-family: 'LeagueGothicRegular';
  text-transform: uppercase;
  font-size: 40px;
  margin: 0 0 8px 0;
  text-align: left;
}

.news-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.news-card {
  background: #ffffff;      /* 🔥 fond blanc */
  color: #000000;           /* 🔥 texte noir */
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
}

.news-card:hover {
  transform: scale(1.03);
}

.news-card img {
  width: 100%;
  height: auto;
  display: block;
}

.news-info {
  padding: 15px;
}

.news-title {
  font-family: 'LeagueGothicRegular';
  font-size: 60px;
  color: #FFF;
  margin-top: 20px;
}

.news-title-actu {
  font-family: 'LeagueGothicRegular';
  font-size: 28px;
  color: #000000;           /* 🔥 texte noir */
}

.news-date {
  font-size: 14px;
  color: #aaa;
}


.table-classement {
    width: 1200px;
    max-width: 100%; /* pour que ça reste responsive sur mobile */
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 14px;
    color: #000; /* 🔥 force le texte en noir */
	
	
}

.table-classement th {
    font-weight: bold;
    color: #000;
    padding: 6px;
    text-align: center;
    border-bottom: 1px solid #ccc;
}

.table-classement td {
    padding: 6px 4px;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid #eee;
    color: #000; /* 🔥 indispensable */
}

.table-classement td:first-child,
.table-classement td:nth-child(2) {
    text-align: left;
}

.ligne-nice {
    font-weight: bold;
    background-color: #f8f8f8;
    border-left: 3px solid #d71920;
    color: #000; /* 🔥 au cas où */
}

.logo-club {
    height: 20px;
    vertical-align: middle;
    margin-right: 5px;
}

.table-classement tr:hover {
    background-color: #f2f2f2;
}

/* ===== CONTENEUR ===== */
.v6-classement {
    width: 100%;
    max-width: none; /* 🔥 IMPORTANT : supprime la limite */
    background: #fff;
    color: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    font-family: Verdana, Arial, sans-serif;
	height: 100%;
	font-family: Verdana, Arial, sans-serif;
    font-size: 13px;
}

/* Hauteur du bandeau du classement */
.v6-classement thead th {
    height: 39px;              /* ajuste si besoin */
    padding: 0 8px;
    vertical-align: middle;
}

/* Centre le contenu verticalement */
.v6-classement thead tr {
    height: 39px;
}


/* ===== HEADER ===== */
.v6-classement-header {
	 display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: #f2f2f2;
    font-size: 13px;
    border-bottom: 1px solid #ddd;
}

.v6-classement-header h2 {
    font-family: LeagueGothicRegular;
    font-size: 26px;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

/* ===== TABLE WRAPPER ===== */
.v6-classement-table {
    overflow-x: auto;
}

/* ===== TABLE ===== */
.table-classement {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    line-height: 1.4;
}

/* HEADER GRIS FIXE */
.table-classement thead th {
    background: #f2f2f2;
    font-weight: bold;
    color: #000;
    padding: 6px 4px;
    text-align: center;
    border-bottom: 1px solid #ccc;
}

/* CELLULES */
.table-classement td {
    padding: 6px 4px;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid #eee;
    color: #000;
}

.table-classement td:first-child,
.table-classement td:nth-child(2) {
    text-align: left;
}

.v6-classement .table-classement td,
.v6-classement .table-classement th {
    padding: 11px 4px !important;
}

/* LIGNE NICE */
.ligne-nice {
    font-weight: bold;
    background-color: #f8f8f8;
    border-left: 3px solid #d71920;
}

/* LOGO */
.logo-club {
    height: 20px;
    vertical-align: middle;
    margin-right: 5px;
}

/* HOVER */
.table-classement tbody tr:hover {
    background-color: #f2f2f2;
}

/* ===== FOOTER ===== */
.v6-classement-footer {
    text-align: center;
	font-weight: bold;
}

/* =====================================================
   V6 – BLOC JOURNÉE / MATCHS
===================================================== */

.v6-journee {
	width: 100%;
    max-width: none; /* 🔥 IMPORTANT : supprime la limite */
    background: #fff;
    color: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    font-family: Verdana, Arial, sans-serif;
	height: 100%;
	font-family: Verdana, Arial, sans-serif;
    font-size: 13px;
	line-height: 1.4;
}

/* HEADER */
.v6-journee-header {
    background: #333333;
    border-bottom: 4px solid #d71920;
    padding: 12px 15px;
}

.v6-journee-header h2 {
    font-family: LeagueGothicRegular;
    font-size: 26px;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

/* NAV JOURNÉE */
.v6-journee-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: #f2f2f2;
    font-size: 13px;
    border-bottom: 1px solid #ddd;
}

.v6-journee-nav b {
    color: #000;
    font-weight: bold;
}

.v6-journee-nav img {
    vertical-align: middle;
}

/* MATCH */
.v6-match {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 12px;
    font-size: 13px;
    border-bottom: 1px solid #eee;
}

.v6-match:last-child {
    border-bottom: none;
}

/* Match Nice */
.v6-match.nice {
    font-weight: bold;
    background: #f8f8f8;
    border-left: 3px solid #d71920;
}

/* SCORE */
.v6-score a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

.v6-score a:hover {
    color: #d71920;
}

/* VERSION LARGE (si tu veux du 1200px) */
.v6-journee.large {
    max-width: 1200px;
}


.bloc-blanc-v6 {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    background: #fff;
}


/* === ARTICLES === */

/* Conteneur principal des pages articles */
.page-article {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* Empêche les images de casser la largeur */
.page-article img {
    max-width: 100%;
    height: auto;
}



article.main-article {
  width: 100%;
  max-width: 1240px;
  margin: 50px auto;
  padding: 40px;
  background-color: #fff;
  color: #000;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: justify;
  font-family: Verdana, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
}



/* === IMAGE DE UNE (pleine largeur) === */
.article-image-wrapper {
    width: 100%;
    max-width: 100%;
     margin-top: 0 !important;
  padding-top: 0 !important;
  display: block;
}

.article-image,
.article-header-img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block;
    object-fit: cover;
}

/* === IMAGES DANS LE TEXTE === */
/* On annule toute règle globale qui les étirerait */
.article-content img {
    width: auto !important;
    max-width: 100%; /* empêche de déborder mais respecte la taille originale */
    height: auto !important;
    display: block;
    margin: 15px auto;
}

/* === RÉSUMÉS === */
.resume-container {
  width: 100%;
  max-width: 1140px;
  margin: 30px auto;
  padding: 30px;
  background-color: #fff;
  color: #000;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: justify;
  font-family: Verdana, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.resume-container b {
  color: #d71920;
}

.resume-container p {
  margin: 5px 0;
}

/* ARTICLES LIÉS */
.related-articles {
  margin-top: 50px;
}

.related-articles .related-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 colonnes fixes */
  gap: 25px;
}

.related-articles .related-card {
  background: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease;
}

.related-articles .related-card:hover {
  transform: scale(1.03);
}

.related-articles .related-card img {
  width: 100%;
  height: auto;
  display: block;
}

.related-articles .related-card-title {
  padding: 15px;
  font-family: 'LeagueGothicRegular';
  font-size: 22px;
}

/* === Galerie === */

.galerie-v6 {
    width: 100%;
    max-width: 1200px;
    margin: 110px auto 40px;
    color: #fff;
    text-align: center;
}

.galerie-titre {
    font-size: 32px;
    margin-bottom: 20px;
}

.galerie-liens a {
    color: #d71920;
    font-weight: bold;
    text-decoration: none;
    padding: 5px 10px;
}

.galerie-liens a:hover {
    text-decoration: underline;
}

.gallery-grid {
    max-width: 1200px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    padding: 0 15px;
}

.gallery-card {
    background: #111;
    overflow: hidden;
    position: relative;
}

.gallery-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.2),
        transparent
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;
    color: #fff;
}

.gallery-title {
    font-family: 'LeagueGothicRegular';
    font-size: 22px;
    text-transform: uppercase;
}

.gallery-meta {
    font-size: 14px;
    color: #d71920;
}

/* ===== FORUM V6 ===== */

.v6-forum {
	width: 100%;
    max-width: none; /* 🔥 IMPORTANT : supprime la limite */
    background: #fff;
    color: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    font-family: Verdana, Arial, sans-serif;
	height: 100%;
    font-size: 13px;
}
.v6-forum * {
    font-family: Verdana, Arial, sans-serif;
    font-size: 13px;
}

.v6-forum-header {
	display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    background: #f2f2f2;
    font-size: 13px;
    border-bottom: 1px solid #ddd;
	}



.v6-forum-header h2 {
    font-family: LeagueGothicRegular;
    font-size: 26px;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

.v6-forum-list {
    background: #fff;
}

.v6-forum-topic {
    padding: 7px 12px;
    font-size: 13px;
    border-bottom: 1px solid #eee;
}

.v6-forum-topic:last-child {
    border-bottom: none;
}

.v6-forum-topic a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

.v6-forum-topic a:hover {
    color: #d71920;
}

.v6-forum-item {
  border-bottom: 1px solid #eee;
}

/* lien ligne */
.v6-forum-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
	font-weight: 400; /* enleve le gras */
  /* 🔥 hauteur EXACTE comme classement */
  padding: 6px 6px 6px 10px;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  background: #fff;
  min-height: 32px; /* compact comme tableau */
  transition: color .18s ease;
}

/* hover identique tableau */
.v6-forum-link:hover {
  background-color: #f2f2f2;
}

.v6-forum-link:hover .v6-forum-title {
  color: #d71920;
}

/* ===== TRAIT ROUGE IDENTIQUE ===== */

.v6-forum-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;              /* 🔥 EXACT comme .ligne-nice */
  background: #d71920;     /* 🔥 EXACT couleur */
  opacity: 0;
  transition: opacity .15s ease;
}

.v6-forum-link:hover .v6-forum-bar {
  opacity: 1;
}


.v6-forum-list {
    box-shadow: none;
}

.v6-forum {
    box-shadow: none;
}

/* ===== TITRE ===== */

.v6-forum-title {
  flex: 1;
  font-weight: 400;
  color: #000;
}

/* ===== DATE ===== */

.v6-forum-date {
  font-size: 12px;
  color: #666;
  white-space: nowrap;
}


/* ===== SONDAGE ===== */


.pollv6 {
	width: 100%;
    max-width: none; /* 🔥 IMPORTANT : supprime la limite */
}

/* Titre */
.pollv6-title {
  font-family: LeagueGothicRegular;
  font-size: 38px;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 8px 0;
}

.pollv6-box {
  position: relative;
  width: 100%;
  min-height: 212px;
  padding: 12px;
  background: #fff url("/img/joueur-moisv5.jpg") no-repeat left top;
  background-size: cover;
  border: 1px solid #000;
  border-radius: 6px;
  box-sizing: border-box;
  overflow: hidden;
}

/* 🔥 overlay cliquable propre */
.pollv6-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* 🔥 le sondage passe AU-DESSUS de l'overlay */
.pollv6-box form,
.pollv6-box input,
.pollv6-box label,
.pollv6-box button {
  position: relative;
  z-index: 5;
}





/* ===== EFFECTIF V6 ===== */

.effectifv6 {
  width: 100%;
  max-width: 1200px;
}

/* Titre */
.effectifv6-title {
  font-family: LeagueGothicRegular;
  font-size: 38px;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 8px 0;
}

/* Carte */
.effectifv6-card {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

/* ⭐ IMAGE RESPONSIVE (clé) */
.effectifv6-img {
  display: block;
  width: 100% !important;
  height: auto !important;
  max-width: 100%;
}

/* Hover */
.effectifv6-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.25);
}



/* =====================================================
   SECTION EXTRA ACCUEIL : 1N2 + BOUTIQUE + VIDÉOS
===================================================== */

.accueil-extra-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    max-width: 1200px;
    margin: 20px auto;
    align-items: stretch; /* ← les deux colonnes font la même hauteur */
}

/* ===== COLONNE GAUCHE ===== */

.accueil-extra-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accueil-extra-bloc {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.accueil-extra-title {
    font-family: 'LeagueGothicRegular', sans-serif;
    font-size: 38px;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

.accueil-extra-content {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    color: #000;
}

/* ===== ACTUALITÉS 1N2 ===== */

.accueil-1n2-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 12px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #000;
    transition: background 0.2s, border-left 0.2s;
    position: relative;
    border-left: 3px solid transparent;
}

.accueil-1n2-item:last-child {
    border-bottom: none;
}

.accueil-1n2-item:hover {
    background: #f8f8f8;
    border-left-color: #d71920;
}

.accueil-1n2-title {
    font-family: Verdana, sans-serif;
    font-size: 13px;
    color: #000;
    flex: 1;
}

.accueil-1n2-item:hover .accueil-1n2-title {
    color: #d71920;
}

.accueil-1n2-date {
    font-family: Verdana, sans-serif;
    font-size: 11px;
    color: #888;
    white-space: nowrap;
    margin-left: 10px;
}

.accueil-extra-empty {
    padding: 15px;
    color: #888;
    font-style: italic;
    font-family: Verdana, sans-serif;
    font-size: 13px;
}

/* ===== BOUTIQUE ===== */

.accueil-boutique-content {
    padding: 15px;
}

.accueil-boutique-link {
    margin-top: 10px;
    text-align: center;
}

/* ===== COLONNE DROITE VIDÉOS ===== */

.accueil-extra-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%; /* ← même hauteur que la colonne gauche */
}

.accueil-videos-wrapper {
    display: flex;
    flex-direction: column; /* ← empilé verticalement */
    gap: 10px;
    flex: 1; /* ← prend toute la hauteur disponible */
}

.accueil-videos-bloc-blanc {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 15px 15px 0 15px;
    box-sizing: border-box;
}

.accueil-videos-bloc-blanc .accueil-videos-wrapper {
    flex: 1;
}

/* GRANDE VIDÉO */

.accueil-video-main {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    flex: 2; /* ← prend plus de place */
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.accueil-video-main:hover {
    transform: scale(1.02);
}

.accueil-video-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}


.accueil-video-main:hover img {
    transform: scale(1.05);
}

.accueil-video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    padding: 20px 15px 15px 15px;
    box-sizing: border-box;
}

.accueil-video-play {
    font-size: 36px;
    color: #d71920;
    margin-bottom: 8px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.accueil-video-title {
    font-family: 'LeagueGothicRegular', sans-serif;
    font-size: 28px;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 4px;
}

.accueil-video-date {
    font-family: Verdana, sans-serif;
    font-size: 12px;
    color: #aaa;
}

/* 3 PETITES VIDÉOS */


.accueil-videos-side {
    display: flex;
    flex-direction: row; /* ← côte à côte */
    gap: 10px;
    flex: 1; /* ← prend le reste */
}


.accueil-video-small {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    flex: 1; /* ← largeur égale */
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}

.accueil-video-small:hover {
    transform: scale(1.02);
}

.accueil-video-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.accueil-video-small:hover img {
    transform: scale(1.05);
}

.accueil-video-small-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 15px 10px 8px 10px;
    box-sizing: border-box;
}

.accueil-video-play-small {
    font-size: 18px;
    color: #d71920;
    margin-bottom: 4px;
}

.accueil-video-small-title {
    font-family: 'LeagueGothicRegular', sans-serif;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
}




/* === Titre sur les images dans le slider === */
.boxTitle {
  position: absolute;
  font-family: 'LeagueGothicRegular';
  text-transform: uppercase;
  top: 0;
  left: 0;
  padding: 0 9px 0 6px;
  background-color: #232323;
  border-right: 1px solid #000000;
  border-bottom: 1px solid #000000;
  color: white; /* titre en blanc */
  z-index: 10; /* au-dessus des images */
}

/* === FRISE PHOTOS ACCUEIL === */
#footerGallery {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 0;
    background: #1e1e1e;
}

#scroller {
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: thin;
}

#scroller li {
    display: inline-block;
    margin-right: 8px;
}




/* === FOOTER GENERAL === */



#footerWrapper {
    background: #111;
    color: white;
    /* plus de bordures rouges pour le scroller */
}

#footerContent {
    max-width: 1200px;
    margin: auto;
}

/* MENU BAS */
#footerWrapper {
  width: 100%;
  min-width: 320px;
  overflow: hidden;
  background: url(/img/bg-footer-wrapper.png) repeat-x left top;
}

#footerWrapper #footerContent {
  width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  height: 500px;
  background: url(/img/bg-footer-content-v6.jpg) repeat-x left top;
}


#footerWrapper #footerContent #copy{
  display: inline;
  float: left;
  width: 50%;
  margin: 0 0 0 0;
  background: url(/img/bg-footer-copy.jpg) repeat-x left top;
}

#footerWrapper #footerContent #copy p{
  font-size: 0.9230769230769231em;
  line-height: 2.5833333333333335em;
  margin: 0 10px;
}

#footerWrapper #footerContent #copy p a {
  color: #FFFFFF;
  text-decoration: none;	
}
#footerWrapper #footerContent #copy p a:hover {
  color: #FF0000;	
}



#footerWrapper #footerContent #privacy {
  display: inline;
  float: left;
  width: 50%;
  margin: 0 0 0 0;
  background: url(/img/bg-footer-copy.jpg) repeat-x left top;
}

#footerWrapper #footerContent #privacy p {
  font-size: 0.9230769230769231em;
  line-height: 2.5833333333333335em;
  margin: 0 10px;
  color: #FFFFFF;
  text-align: right;
}

#footerWrapper #footerContent #privacy p a {
  color: #FFFFFF;
  text-decoration: none;
}
#footerWrapper #footerContent #privacy p a:hover {
  text-decoration: none;
}


#footerWrapper #footerContent #boutons {
  position: relative;
  display: inline;
  float: left;
  width: 100%;
  margin: 0 1px 0 0;
  height: 80px;
}

#footerWrapper #footerContent #boutons #boxTitle {
  position: absolute;
  top: 0;
  padding: 0 9px 0 6px;
  
  border-right: 1px solid #000000;
  border-bottom: 1px solid #000000;
}

#footerWrapper #footerContent #boutons #boxTitle h2 {
  font-family: 'LeagueGothicRegular';
  font-weight: normal;
  font-style: normal;
  font-size: 1.6923076923076923em;
  line-height: 1.3181818181818181em;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

#footerWrapper #footerContent #boutons a {
  display: block;
  position: absolute;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
#footerWrapper #footerContent #boutons a#easports {
  top: 10px;
  left: 179px;
  width: 100px;
  height: 70px;
  background: url(/img/easports.png) no-repeat;
}
#footerWrapper #footerContent #boutons a#easports:hover {
  background: url(/img/easports_over.png) no-repeat;
}
#footerWrapper #footerContent #boutons a#olympic {
  top: 10px;
  left: 500px;
  width: 150px;
  height: 70px;
  background: url(/img/olympic.png) no-repeat;
}
#footerWrapper #footerContent #boutons a#olympic:hover {
  background: url(/img/olympic_over.png) no-repeat;
}

#footerWrapper #footerContent #boutons a#kalu {
  top: 10px;
  left: 850px;
  width: 130px;
  height: 70px;
  background: url(/img/kalu.png) no-repeat;
}
#footerWrapper #footerContent #boutons a#kalu:hover {
  background: url(/img/kalu_over.png) no-repeat;
}



#footerWrapper #footerContent #partenaires {
  width: 100%;
  color: #656565;
  text-align: center;
  height: 110px;
}

#footerWrapper #footerContent #partenaires a {
  color: #656565;
  text-decoration: none;
}
#footerWrapper #footerContent #partenaires a:hover {
  color: #FF0000;
}


/* ===== MENU FOOTER ===== */

#footerWrapper #footerContent #footerMenu{
width:100%;
margin-top:20px;
float:left;
padding-left:40px;
}

/* colonnes principales */

#footerWrapper #footerContent #footerMenu > ul{
list-style:none;
margin:0;
padding:0;

display:flex;
justify-content:flex-start;
align-items:flex-start;
gap:28px;
}

/* colonne */

#footerWrapper #footerContent #footerMenu > ul > li{
width:150px;
flex-shrink:0;
}

/* titres */

#footerWrapper #footerContent #footerMenu > ul > li p{
font-family:'LeagueGothicRegular';
font-size:1.6923076923076923em;
line-height:1em;
margin-bottom:10px;
text-transform:uppercase;
letter-spacing:1px;
white-space:nowrap;
}

/* sous menus */

#footerWrapper #footerContent #footerMenu ul li ul{
list-style:none;
margin:0;
padding:0;
display:block;
}

#footerWrapper #footerContent #footerMenu ul li ul li{
font-size:0.9230769230769231em;
line-height:1.5em;
margin-bottom:3px;
}

/* liens */

#footerWrapper #footerContent #footerMenu a{
color:#ffffff;
text-decoration:none;
}

#footerWrapper #footerContent #footerMenu a:hover{
color:#ff0000;
}

/* Footer forum site
*/
#footerWrapper2 {
  width: 100%;
  min-width: 320px;
  overflow: hidden;
}

#footerWrapper2 #footerContent {
  width: 968px;
  margin: 0 auto;
  overflow: hidden;
  height: 500px;
  background: url(/img/bg-footer-content-v6.jpg) repeat-x left top;
}


#footerWrapper2 #footerContent #copy{
  display: inline;
  float: left;
  width: 484px;
  margin: 0 0 0 0;
  background: url(/img/bg-footer-copy.jpg) repeat-x left top;
}

#footerWrapper2 #footerContent #copy p{
  font-size: 0.9230769230769231em;
  line-height: 2.5833333333333335em;
  margin: 0 10px;
     text-align: left;
}

#footerWrapper2 #footerContent #copy p a {
  color: #FFFFFF;
  text-decoration: none;	
}
#footerWrapper2 #footerContent #copy p a:hover {
  color: #FF0000;	
}



#footerWrapper2 #footerContent #privacy {
  display: inline;
  float: left;
  width: 484px;
  margin: 0 0 0 0;
  background: url(/img/bg-footer-copy.jpg) repeat-x left top;
}

#footerWrapper2 #footerContent #privacy p {
  font-size: 0.9230769230769231em;
  line-height: 2.5833333333333335em;
  margin: 0 10px;
   text-align: right;
}

#footerWrapper2 #footerContent #privacy p a {
  color: #FFFFFF;
  text-decoration: none;
}
#footerWrapper2 #footerContent #privacy p a:hover {
  text-decoration: none;
}

#footerWrapper2 #footerContent #boutons {
  position: relative;
  display: inline;
  float: left;
  width: 100%;
  margin: 0 1px 0 0;
  height: 80px;
}

#footerWrapper2 #footerContent #boutons #boxTitle {
  position: absolute;
  top: 0;
  padding: 0 9px 0 6px;
  
  border-right: 1px solid #000000;
  border-bottom: 1px solid #000000;
}

#footerWrapper2 #footerContent #boutons #boxTitle h2 {
  font-family: 'LeagueGothicRegular';
  font-weight: normal;
  font-style: normal;
  font-size: 1.6923076923076923em;
  line-height: 1.3181818181818181em;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

#footerWrapper2 #footerContent #boutons a {
  display: block;
  position: absolute;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
#footerWrapper2 #footerContent #boutons a#easports {
  top: 10px;
  left: 179px;
  width: 100px;
  height: 70px;
  background: url(/img/easports.png) no-repeat;
}
#footerWrapper2 #footerContent #boutons a#easports:hover {
  background: url(/img/easports_over.png) no-repeat;
}
#footerWrapper2 #footerContent #boutons a#olympic {
  top: 10px;
  left: 419px;
  width: 150px;
  height: 70px;
  background: url(/img/olympic.png) no-repeat;
}
#footerWrapper2 #footerContent #boutons a#olympic:hover {
  background: url(/img/olympic_over.png) no-repeat;
}

#footerWrapper2 #footerContent #boutons a#kalu {
  top: 10px;
  left: 698px;
  width: 130px;
  height: 70px;
  background: url(/img/kalu.png) no-repeat;
}
#footerWrapper2 #footerContent #boutons a#kalu:hover {
  background: url(/img/kalu_over.png) no-repeat;
}



#footerWrapper2 #footerContent #partenaires {
  width: 100%;
  color: #656565;
  text-align: center;
  height: 110px;
}

#footerWrapper2 #footerContent #partenaires a {
  color: #656565;
  text-decoration: none;
}
#footerWrapper2 #footerContent #partenaires a:hover {
  color: #FF0000;
}

/* ===== MENU FOOTER ===== */

#footerWrapper2 #footerContent #footerMenu{
width:100%;
margin-top:20px;
float:left;
padding-left:20px;
}

/* colonnes principales */

#footerWrapper2 #footerContent #footerMenu > ul{
list-style:none;
margin:0;
padding:0;

display:flex;
justify-content:center;
align-items:flex-start;
gap:35px;
}

/* colonne */

#footerWrapper2 #footerContent #footerMenu > ul > li{
width:150px;
flex-shrink:0;
}

/* titres */

#footerWrapper2 #footerContent #footerMenu > ul > li p{
font-family:'LeagueGothicRegular';
font-size:1.6923076923076923em;
line-height:1em;
margin-bottom:10px;
text-transform:uppercase;
letter-spacing:1px;
white-space:nowrap;
}

/* sous menus */

#footerWrapper2 #footerContent #footerMenu ul li ul{
list-style:none;
margin:0;
padding:0;
display:block;
}

#footerWrapper2 #footerContent #footerMenu ul li ul li{
font-size:0.9230769230769231em;
line-height:1.5em;
margin-bottom:3px;
}

/* liens */

#footerWrapper2 #footerContent #footerMenu a{
color:#ffffff;
text-decoration:none;
}

#footerWrapper2 #footerContent #footerMenu a:hover{
color:#ff0000;
}

/* === FOOTER GALLERY SCROLLER === */
#footerGallery {
    position: relative;
    margin-top: 40px;
}

/* Wrapper full width */
#footerScrollerWrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #111;
}

/* Conteneur global */
#scrollphotos-full {
    position: relative;
}


/* Zones grises uniquement sur la hauteur galerie */
#scrollphotos-full::before,
#scrollphotos-full::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: calc(50vw - 600px); /* 1200px / 2 = 600 */
    background: rgba(0,0,0,0.6);
    z-index: 30;
    pointer-events: auto; /* bloque hover */
}

/* gauche */
#scrollphotos-full::before {
    left: calc(50% - 600px - (50vw - 600px));
}

/* droite */
#scrollphotos-full::after {
    right: calc(50% - 600px - (50vw - 600px));
}


	/* Bandeau */
.scroll-header{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    height:40px;
	overflow:hidden;
}

/* Effets alpha (hors flux) */
#alphaLeft,
#alphaRight{
    position:absolute;
    top:0;
    width:40px;
    height:40px;
    background:url('../img/bg-footer-gallery.png') repeat-y;
    pointer-events:none;
	z-index:1; /* derrière */
}

#alphaLeft{
    left:0;
}

#alphaRight{
    right:0;
}

/* blocs titre + bouton */
#boxTitle,
#topRightLink{
    background:#232323;
    border-left:1px solid #000;
    border-bottom:1px solid #000;
    padding:0 10px;
    font-family:'LeagueGothicRegular';
    text-transform:uppercase;
    font-size:28px;
    height:40px;
    line-height:40px;
	position: relative;
    z-index: 50;
}

/* liens */
#boxTitle a,
#topRightLink a{
    color:red;
    text-decoration:none;
}

#boxTitle a:hover,
#topRightLink a:hover{
    color:#fff;
}




/* ===============================================
   FLÈCHES
================================================ */
#scrollphotos-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 400px;
    margin: 0 auto;
    overflow: visible;
    z-index: 5;
}

.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 36px;
    color: white;
    cursor: pointer;
    user-select: none;
	 width:40px;
    text-align:center;
}

/* Flèches dans zone centrale */
#scroll-left,
#scroll-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 36px;
    color: white;
    background: transparent;
    cursor: pointer;
    z-index: 100; 
	pointer-events:auto;
	width:50px;
    height:50px;
}

/* Positionnement exact */
#scroll-left  { left: 10px; }
#scroll-right { right: 10px; }

#scrollphotos-wrapper {
    position: relative;
    width: 1200px;
    max-width: 1200px;
    height: 400px;
    margin: 0 auto;
    overflow: visible;
    z-index: 1;
}

/* Effet hover */
#scroll-left:hover,
#scroll-right:hover {
    color: #d71920; /* rouge OGCN */
}

/* Supprimer anciens ::before */
#scroll-left::before,
#scroll-right::before {
    content: none;
}

/* Track flex */
#scrollphotos-track {
    position: absolute;
    top: 0;
    left: calc((100vw - 1200px) / -2);
    height: 100%;
    display: flex;
    width: max-content;
    z-index: 1;
    will-change: transform;
	touch-action: pan-y;
}

/* Images */
#scrollphotos-track a {
	position:relative;
	flex: 0 0 auto;
    display: block;
    height: 100%;        /* 100% du wrapper */
    display: flex;
    align-items: center;  /* centre l'image verticalement */
    justify-content: center;
	cursor: pointer; /* montre que c’est cliquable */
    pointer-events: auto; /* assure l’interaction */
	z-index: 1; /* en dessous des flèches */
}

#scrollphotos-track a.lightphotos {
    position: relative;
    z-index: 1; /* doit être supérieur au track mais inférieur au lightbox */
    display: inline-block;
}

#scrollphotos-track a img {
    max-height: 100%;
    width: auto;
    transition: transform 0.3s ease;
}



#scrollphotos-track img {
    height: 100%;
    width: auto;
    max-width: none;
	position:relative;
    z-index:1;
}

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

/* =====================================================
   CARROUSEL DE UNE — DESKTOP
===================================================== */

#une-carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

#une-carousel {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.une-slide {
    flex: 0 0 100%;
    position: relative;
    height: 636px;
}

.une-link {
    display: block;
    height: 100%;
}

.une-slide img {
    width: 100%;
    height: 636px;
    object-fit: cover;
    display: block;
}

.une-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(50,50,50,0.6);
    color: #fff;
    box-sizing: border-box;
    padding: 0 25px 40px 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 5;
}

.une-rubrique {
    background-color: #333333;
    color: #d71920;
    font-family: 'LeagueGothicRegular', sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    padding: 4px 10px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.une-text {
    margin-top: 40px;
}

.une-title {
    font-family: 'LeagueGothicRegular', sans-serif;
    font-size: 60px;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 6px;
}

.une-summary {
    font-family: 'LeagueGothicRegular', sans-serif;
    font-size: 24px;
}

.une-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 50;
}

.une-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #999;
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s;
}

.une-dots span.active {
    background: #d71920;
    opacity: 1;
}

.une-prev,
.une-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 20;
    padding: 0 15px;
}

.une-prev { left: 10px; }
.une-next { right: 10px; }
.une-prev:hover, .une-next:hover { color: #d71920; }

	.article-breadcrumb {
			font-family: Verdana, sans-serif;
			font-size: 12px;
			color: #aaa;
			margin-bottom: 12px;
		}
		
	.article-breadcrumb a {
			color: #d71920;
			text-decoration: none;
		}

		.article-rubrique {
			font-size: 13px;
			font-weight: bold;
			color: #d71920;
			text-transform: uppercase;
			margin-bottom: 6px;
		}

		.article-title {
			font-family: 'LeagueGothicRegular', sans-serif;
			font-size: 46px;
			text-transform: uppercase;
			color: #333;
			margin: 0 0 10px 0;
			line-height: 1;
		}

		.article-meta {
			font-size: 12px;
			color: #888;
			margin-bottom: 20px;
			border-left: 3px solid #d71920;
			padding-left: 10px;
		}

@media (max-width: 1400px) {
     .home-right-ad {
        display: none;
    }
}



@media (max-width:1200px){

/* ===== SCROLLPHOTOS ===== */

#scrollphotos-full{
    width:100%;
    max-width:100%;
}

#scrollphotos-wrapper{
    width:100%;
    max-width:100%;
    height:400px;
    margin:0 auto;
    overflow:visible;
    z-index:5;
}

#scrollphotos-track{
    left:0;
}

#scrollphotos-track img{
    max-height:100%;
    height:auto;
}

#scrollphotos-full::before,
#scrollphotos-full::after{
    display:none;
}

/* header galerie */

.scroll-header{
    width:100vw;
    margin-left:calc(50% - 50vw);
    position:relative;
    z-index:50;
    display:flex;
    align-items:center;
}

#boxTitle,
#topRightLink{
    font-size:clamp(16px,4vw,24px);
}

#topRightLink{
    position:relative;
    margin-left:auto;
    height:auto;
}

/* flèches */

#scroll-left{
    left:10px;
}

#scroll-right{
    right:10px;
}

/* ===== FOOTER ===== */

#footerWrapper{
    width:100%;
}

#footerWrapper #footerContent{
    width:100%;
    max-width:100%;
    padding:10px;
    box-sizing:border-box;
    height:auto !important;
    background-size:cover;
    background-position:center top;
	 display:flex;
    flex-direction:column;
    align-items:center;
}


/* ===== boutons partenaires responsive ===== */

#footerWrapper #footerContent #boutons{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100%;
	gap:8px;
}

/* reset du positionnement desktop */

#footerWrapper #footerContent #boutons a{
    position:relative !important;
    left:auto !important;
    top:auto !important;

    flex:1;
    height:70px;

    background-size:contain !important;
    background-position:center !important;
    background-repeat:no-repeat !important;
}

/* on enlève les largeurs fixes */

#footerWrapper #footerContent #boutons a#easports,
#footerWrapper #footerContent #boutons a#olympic,
#footerWrapper #footerContent #boutons a#kalu{
    width:auto !important;
}



/* partenaires */

#footerWrapper #footerContent #partenaires{
    text-align:center;
    font-size:13px;
    line-height:1.6;
    margin-bottom:10px;
}

#footerWrapper #footerContent #partenaires a{
    display:inline-block;
    margin:4px 6px;
}

/* copyright */

#footerWrapper #footerContent #copy{
    font-size:9px;
    text-align:center;
    margin-top:10px;
    background:none;
	order:1;
}



#footerWrapper #footerContent #privacy{
	float: center;
	font-size:9px;
    text-align:center;
    background:none;
	order:2;
}



/* Paypal */

#footerWrapper #footerContent #donate-button-container {
	text-align:center;
	order:3;
    margin-top:15px;
}

/* menu footer supprimé sur mobile */

#footerWrapper #footerContent #footerMenu{
    display:none;
}

}







@media (max-width: 900px) {

    /* ===== HEADER ===== */
    .header-fixed {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9000;
        background: #333333 !important;
    }

    .header-fixed nav {
        margin-top: 0 !important;
        padding-top: 0 !important;
        height: 80px !important;
        background: #333333 !important;
    }

    .header-fixed nav::before,
    .header-fixed nav::after {
        display: none !important;
    }

    .top-bar {
        display: none !important;
        height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .top-grey-bar {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
	
	
	

    /* ===== LOGO ===== */
    .logo-nav {
        padding-top: 0 !important;
        margin-top: 0 !important;
        position: relative !important;
        top: 0 !important;
        transform: none !important;
        height: 60px !important;
        background: #333333 !important;
		z-index: 10000 !important;
    }

    .logo-nav img {
        height: 60px !important;
        width: auto !important;
        transform: translateY(0) !important;
    }

    /* ===== BURGER ===== */
    .burger {
        display: flex;
        position: absolute;
        left: 20px;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 22px;
        cursor: pointer;
        z-index: 10000 !important;
    }

    .burger span {
        display: block;
        height: 3px;
        width: 100%;
        background: #fff;
        border-radius: 3px;
        transition: 0.3s ease;
    }

    .burger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .burger.active span:nth-child(2) { opacity: 0; }
    .burger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

	  /* ===== MENU LATÉRAL ===== */
	.menu {
		position: fixed !important;
		top: 130px !important;
		left: 0 !important;
		width: 130px !important;
		min-width: 0 !important;
		height: 100% !important;
		background: rgba(51, 51, 51, 0.98) !important;
		transform: translateX(-130px) !important;
		transition: transform 0.3s ease !important;
		display: flex !important;
		flex-direction: column !important;
		z-index: 9999 !important;
		overflow-y: auto !important;
		padding-top: 0!important;
		justify-content: flex-start !important;
	}

	.menu.open {
		transform: translateX(0) !important;
	}

	.menu > li {
		width: 130px !important;
		min-width: 0 !important;
		height: 50px !important;
		border-right: none !important;
		border-bottom: 1px solid rgba(255,255,255,0.1) !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	.menu > li:first-child {
		margin-top: 0 !important;
	}

	.menu > li > a {
		width: 130px !important;
		display: flex !important;
		align-items: center !important;
		padding: 0 10px !important;
		height: 50px !important;
		font-size: 20px !important;
		font-family: 'LeagueGothicRegular' !important;
		color: #fff !important;
		text-transform: uppercase !important;
		text-decoration: none !important;
		transition: background 0.2s !important;
	}

	.menu > li > a:hover,
	.menu > li > a:active {
		background: #d71920 !important;
	}

	.submenu {
		display: none !important;
	}

	.menu-red-line,
	.menu-red-line-gradient {
		display: none !important;
	}



    /* ===== CONTENU ===== */
	#site-content-wrapper {
		transition: transform 0.3s ease;
		padding-top: 0 !important;
		margin-top: 130px !important;
	}

	#site-content-wrapper.shift {
		transform: translateX(130px) !important;
	}

    /* ===== PAGE OFFSET ===== */
    .page-offset {
        display: none !important;
    }

    .page-wrapper {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .home-layout {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .news-slider {
        margin-top: 0 !important;
    }

    /* ===== TOP GREY BAR ===== */
	.top-grey-inner {
		justify-content: flex-end;
		gap: 10px;
	}

	.top-online {
    display: none !important;
}

	.site-container.top-grey-inner {
		justify-content: flex-end !important;
	}

    .top-grey-inner li:nth-child(1),
	.top-grey-inner li:nth-child(2) {
		display: inline-flex !important;
	}

	.top-grey-inner li:nth-child(1) a,
	.top-grey-inner li:nth-child(2) a {
		font-size: 12px !important;
		color: #fff !important;
		text-decoration: none !important;
	}

    .top-grey-inner li.social-icon,
    .top-grey-inner li.mp-icon,
    .top-grey-inner li.connexion-link,
    .top-grey-inner li.search-li {
        display: inline-block !important;
    }

	/* Cache le champ texte mais garde le bouton loupe */
	.top-grey-inner li.search-li form {
		display: flex !important;
		align-items: center;
	}

	.top-grey-inner li.search-li .top-search {
		display: none !important;
	}

	.top-grey-inner li.search-li button {
		display: inline-flex !important;
		align-items: center;
		padding: 0;
		background: none;
		border: none;
		cursor: pointer;
	}

	.top-grey-inner li.search-li button img {
		height: 22px;
		width: auto;
	}

    .top-grey-inner li.mp-icon img {
        width: 20px;
        height: auto;
        vertical-align: middle;
    }

    .top-grey-inner li.connexion-link a {
        font-size: 14px;
        color: #fff;
    }

    .banner {
        display: none !important;
    }

    /* ===== CARROUSEL DE UNE — MOBILE ===== */
    .une-slide { 
	height: auto !important;
    aspect-ratio: 16 / 9; 
	}
	.une-slide img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover;
	}
    .une-title { font-size: 38px !important; }
    .une-summary { display: none !important; }
    .une-rubrique { font-size: 18px !important; }
    .une-overlay { padding: 0 12px 25px 12px !important; }
    .une-prev, .une-next { font-size: 26px !important; padding: 0 10px !important; }

    /* ===== CARROUSEL FLASH INFO ===== */
    #flash-carousel-wrapper {
        width: 100% !important;
        overflow: visible !important;
        position: relative !important;
        height: auto !important;
        min-height: 320px;
    }

    #flash-carousel {
        display: flex !important;
        width: 100% !important;
        transition: transform 0.5s ease !important;
    }

    .flash-slide {
        flex: 0 0 100% !important;
        width: 100% !important;
        height: auto !important;
        position: relative !important;
    }

	   .flash-slide img {
		width: 100% !important;
		height: 100% !important;
		object-fit: cover !important;
		display: block !important;
	}
    .flash-overlay {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        background: rgba(35, 35, 35, 0.8) !important;
        padding: 20px 12px 35px 12px !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
        z-index: 5 !important;
    }

    .flash-rubrique {
        font-size: 18px !important;
        padding: 5px !important;
        margin-bottom: 0 !important;
        display: inline-block !important;
        line-height: 1.2 !important;
        background: rgba(51, 51, 51, 0.8) !important;
    }
		
	.flash-title {
		font-size: 32px !important;
		line-height: 1.2 !important;
		margin: 0 !important;
		padding-top: 10px !important;
	}

    .flash-summary,
    .flash-date {
        display: none !important;
    }

    .flash-prev,
    .flash-next {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        font-size: 36px !important;
        color: white !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        z-index: 100 !important;
    }

    .flash-prev { left: 10px !important; }
    .flash-next { right: 10px !important; }

    .flash-dots {
        position: absolute !important;
        bottom: 15px !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        gap: 8px !important;
        z-index: 50 !important;
    }

    .flash-dots span {
        width: 12px !important;
        height: 12px !important;
        border-radius: 50% !important;
        background: #999 !important;
        opacity: 0.5 !important;
        cursor: pointer !important;
        transition: all 0.3s !important;
    }

    .flash-dots span.active {
        background: #d71920 !important;
        opacity: 1 !important;
    }

    .flash-container {
        flex-direction: column;
    }

    .flash-col,
    .pub-col {
        min-width: 100%;
        flex: 1 1 auto;
    }
	
	/* ===== BLOCS MATCHS EN MOBILE ===== */
	.blocs-matchs-wrapper {
		flex-wrap: wrap !important;
	}

	.blocs-matchs-wrapper > div:nth-child(1),
	.blocs-matchs-wrapper > div:nth-child(2) {
		min-width: 0 !important;
		flex: 1 1 calc(50% - 10px) !important;
	}

	.blocs-matchs-wrapper > div:nth-child(3) {
		flex: 1 1 100% !important;
		min-width: 100% !important;
	}
	
/* ===== TEXTES ET IMAGES BLOCS MATCHS EN MOBILE ===== */
.match-meta { font-size: 18px !important; }
.match-date { font-size: 16px !important; }
.match-score-line { font-size: 20px !important; }
.match-score { font-size: 24px !important; }
.match-logos img { height: 90px !important; width: auto !important; }
.match-links-btn { font-size: 12px !important; padding: 4px 8px !important; margin-top: 10px !important; margin-right: 5px !important; }
.index-match-content { padding: 15px !important; }
			
    .accueil-extra-wrapper {
        grid-template-columns: 1fr;
    }

	.accueil-videos-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .accueil-videos-side {
        flex-direction: row;  /* les 3 petites côte à côte */
        gap: 8px;
    }

    .accueil-video-small {
        flex: 1;
        min-width: 0;
    }

    .accueil-video-small-title {
        font-size: 11px;
    }
	

} /* FIN @media (max-width: 900px) */





