/* ============================================
   SOMMAIRE STYLE.CSS

    01. Variables globales
    02. Base générale
    03. Boutons et formulaires
    04. Menu principal
    05. Titres et blocs génériques
    06. Footer
    07. Accueil
    08. Le club
    09. Historique
    10. Palmarès
    11. Comité
    12. Arbitres
    13. Entraîneurs
    14. Entraînements
    15. Salles
    16. Équipes
    17. Dames / Hommes
    18. Jeunes
    19. Documents
    20. Inscription
    21. Liens
    22. Actualités
    23. Événements
    24. Galeries
    25. Archives
    26. Calendrier
    27. Sponsors
    28. Infos
    29. Animations et utilitaires
    30. Corrections finales temporaires
    31. Fenêtre Pop-up

============================================ */


/* ============================================
   01. VARIABLES GLOBALES
============================================ */

:root {
  --bleu: #005dab;
  --vert: #72bf44;
  --clair: #f3f7fb;
  --fonce: #102033;
  --blanc: #ffffff;
  --gris: #555;
  --gris-clair: #f5f7fa;
  --bordure: #d7e0ea;
  --ombre: 0 12px 32px rgba(16, 32, 51, .10);
  --ombre-hover: 0 22px 55px rgba(0, 93, 171, .18);
  --ombre-premium: 0 28px 70px rgba(16, 32, 51, .18);
  --rayon: 16px;
  --rayon-grand: 22px;
  --largeur-page: 1280px;
}

/* ============================================
   02. BASE GENERALE
============================================ */

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

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: Arial, sans-serif;
  color: var(--fonce);
  line-height: 1.6;
  background:
    linear-gradient(rgba(244, 248, 252, .82),
      rgba(250, 251, 253, .92)),
    url("images/fond1.jpeg") center center / cover fixed no-repeat;

  animation: pageFadeIn .35s ease;
}

body.popup-open {
  overflow: hidden;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ANIMATION AU DÉFILEMENT */

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity .7s ease,
    transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--vert);
  outline-offset: 4px;
}

section,
.section,
.content-section {
  margin-bottom: 30px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.section {
  max-width: var(--largeur-page);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.editable {
  max-width: 850px;
  margin: auto;
}

code {
  background: #eef3f8;
  padding: 2px 6px;
  border-radius: 5px;
}

/* === ANIMATIONS GLOBALES === */

html {
  scroll-behavior: smooth;
}

* {
  transition:
    background-color .25s ease,
    color .25s ease,
    border-color .25s ease,
    box-shadow .30s ease;
}

/* ============================================
   03. BOUTONS ET FORMULAIRES
============================================ */

.btn,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: var(--vert);
  color: white;

  border: none;
  border-radius: 999px;

  padding: 13px 26px;

  text-decoration: none;
  font-weight: 800;
  letter-spacing: .2px;

  cursor: pointer;

  box-shadow: 0 8px 20px rgba(16, 32, 51, .12);

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background-color .25s ease,
    color .25s ease;
}

.btn:hover,
button:hover {
  transform: translateY(-3px);
  opacity: 1;
  box-shadow: 0 14px 30px rgba(0, 93, 171, .24);
}

.btn-blue {
  background: var(--bleu);
}

.btn-white {
  background: white;
  color: var(--bleu);
}

input,
textarea,
select {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccd6e0;
  border-radius: 12px;
  font: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--vert);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.contact form {
  max-width: 650px;
  margin: auto;
  display: grid;
  gap: 15px;
}

/* ============================================
   04. MENU PRINCIPAL
============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bleu);
  box-shadow: 0 3px 15px rgba(0, 0, 0, .18);
}

.navbar {
  max-width: 1350px;
  margin: auto;
  padding: 8px 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;

  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
}

.brand img {
  width: 82px;
  height: auto;
  object-fit: contain;

  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, .28));

  transition:
    transform .25s ease,
    filter .25s ease;
}

.brand:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .34));
}

.menu {
  display: flex;
  align-items: center;
  gap: 3px;

  list-style: none;
}

.menu a {
  display: block;

  padding: 12px 11px;

  color: white;
  text-decoration: none;
  font-weight: bold;

  white-space: nowrap;

  transition:
    background .25s ease,
    color .25s ease,
    transform .25s ease;
}

.menu a.active {
  background: var(--vert);
  border-radius: 12px;
  color: white;
}

.menu a:hover {
  background: rgba(255,255,255,.14);
  color: white;
  border-radius: 12px;
  transform: translateY(-2px);
}

.dropdown,
.subdropdown {
  position: relative;
}

.dropdown>ul,
.subdropdown>ul {
  display: block;

  position: absolute;

  list-style: none;

  background: white;

  border-radius: 12px;

  box-shadow: 0 15px 35px rgba(0,0,0,.18);

  min-width: 230px;

  opacity: 0;
  visibility: hidden;

  transform: translateY(12px);

  transition:
      opacity .25s ease,
      transform .25s ease,
      visibility .25s;
}

.dropdown>ul {
  top: 100%;
  left: 0;
}

.subdropdown>ul {
  top: 0;
  left: 100%;
  min-width: 250px;
}

.dropdown:hover>ul,
.subdropdown:hover>ul {

  opacity: 1;

  visibility: visible;

  transform: translateY(0);
}

.dropdown ul a,
.subdropdown ul a {
  color: var(--bleu);
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 700;
}

.dropdown ul a:hover,
.subdropdown ul a:hover {
  color: white;
  background: var(--bleu);
  border-radius: 8px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  position: relative;
  z-index: 10000;
  padding: 10px 12px;
  min-width: 48px;
  min-height: 48px;
}

.menu a {
  position: relative;
}

.menu > li > a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 3px;
  background: var(--vert);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

.menu > li > a:hover::after,
.menu > li > a.active::after {
  transform: scaleX(1);
}

.dropdown > ul,
.subdropdown > ul {
  padding: 10px;
  background: rgba(255, 255, 255, .98);
  border: 1px solid rgba(0, 93, 171, .12);
  box-shadow: 0 18px 45px rgba(16, 32, 51, .18);
}

.dropdown ul a,
.subdropdown ul a {
  display: flex;
  align-items: center;
  min-height: 42px;
  border-radius: 10px;
}

.dropdown ul a:hover,
.subdropdown ul a:hover {
  background: linear-gradient(135deg, var(--bleu), #004985);
  color: white;
  transform: none;
}

/* ============================================
   05. TITRES ET BLOCS GÉNÉRIQUES
============================================ */

h1 {
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.1;
}

h2 {
  position: relative;

  color: var(--bleu);

  text-align: center;

  font-size: 34px;

  font-weight: 800;

  margin-bottom: 28px;

  padding-bottom: 16px;
}

h2::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: 0;

  transform: translateX(-50%);

  width: 70px;
  height: 4px;

  background: var(--vert);

  border-radius: 999px;
}

h3 {
  color: var(--bleu);
  margin-bottom: 10px;
}

.page-title {
  padding: 35px 18px;

  text-align: center;

  background:
    linear-gradient(rgba(0, 0, 0, .15),
      rgba(0, 0, 0, .65));
}

.page-title h1 {
  color: white;
  font-size: 2.4rem;

  margin: 0;
}

.page-title p {
  font-size: 16px;
}

.intro {
  max-width: 850px;

  margin: 0 auto 28px;

  text-align: center;

  font-size: 20px;
}

.hero {
  min-height: 82vh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 32px 20px;

  text-align: center;

  color: white;

  background:
    linear-gradient(rgba(0, 93, 171, .88), rgba(0, 93, 171, .88)),
    url("images/logo-ancienne-volley.png") center / 430px no-repeat;
}

.hero-logo {
  width: 360px;
  max-width: 82%;

  margin-bottom: 24px;

  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, .34));
}

.hero p {
  margin: 18px 0 28px;

  font-size: 22px;
}

.grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  gap: 30px;
}

.card,
.team-card {
  margin-bottom: 8px;
}

.card {
  position: relative;
  overflow: hidden;

  padding: 15px;
  background: white;
  border-radius: var(--rayon);
  border-top: 5px solid var(--vert);

  box-shadow: var(--ombre);

  transition:
    transform .28s ease,
    box-shadow .28s ease;
}

.card::before {
  content: "";

  position: absolute;

  top: 0;
  left: -130%;

  width: 70%;
  height: 100%;

  background:
    linear-gradient(
      115deg,
      transparent,
      rgba(255,255,255,.55),
      transparent
    );

  transition: left .7s ease;

  pointer-events: none;
}

.card:hover {

  transform: translateY(-8px);

  box-shadow:
      0 22px 50px rgba(16,32,51,.16);

}

.card:hover::before {

  left: 150%;

}

.link-card {
  width: 280px;
  text-align: center;
  text-decoration: none;
  color: var(--fonce);
  transition: .25s;
}

.link-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ombre-hover);
}

.link-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* ============================================
   06. FOOTER
============================================ */

footer {
  background:
    linear-gradient(135deg, #102033, #07111f);
  color: white;

  padding: 34px 20px 18px;
}

/* Sponsors */

.footer-sponsors {
  margin-top: 40px;

  padding: 30px 20px;

  text-align: center;

  background: rgba(255, 255, 255, .08);

  border-top: 2px solid rgba(255, 255, 255, .10);
}

.footer-sponsors h3 {
  margin-bottom: 25px;

  color: white;

  font-size: 24px;
}

.footer-sponsors-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;

  gap: 30px;
}

.footer-sponsors-slider a {
  display: flex;
  align-items: center;
  justify-content: center;

  transition: .25s;
}

.footer-sponsors-slider a:hover {
  transform: scale(1.15);
}

.footer-sponsors-slider img {
  height: 70px;
  max-width: 160px;

  object-fit: contain;

  background: white;

  padding: 10px;

  border-radius: 12px;

  box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
}

/* Plan du site */

.footer-sitemap {
  max-width: 1200px;

  margin: 0 auto 18px;

  text-align: left;
}

.footer-sitemap h3 {
  margin-bottom: 18px;

  text-align: center;

  color: white;

  font-size: 22px;
}

.footer-sitemap-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);

  gap: 24px;
}

.footer-sitemap h4 {
  margin-bottom: 8px;

  color: var(--vert);

  font-size: 16px;
}

.footer-sitemap a {
  display: block;

  margin: 4px 0;

  color: white;

  text-decoration: none;

  opacity: .9;

  font-size: 14px;

  transition:
    color .25s ease,
    opacity .25s ease,
    transform .25s ease;
}

.footer-sitemap a:hover {
  color: var(--vert);
  opacity: 1;
  transform: translateX(4px);
}

/* Copyright */

.footer-copy {
  margin-top: 14px;
  padding-top: 12px;

  text-align: center;

  font-size: 14px;

  border-top: 1px solid rgba(255, 255, 255, .18);
}

/* ============================================
   07. ACCUEIL
============================================ */

/* ACCUEIL - Corrections tablette Dashboard */

@media (min-width: 769px) and (max-width: 1000px) {

  .home-dashboard-side {
    width: 100%;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .home-dashboard-small {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .home-dashboard-small > span {
    display: none;
  }

  .home-dashboard-small > div {
    width: 100%;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .home-result-card,
  .home-ranking-slider,
  .home-ranking-group,
  .home-next-event-link {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

}

.home-hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 21px 20px;
  text-align: center;
  color: white;
  background:
    linear-gradient(rgba(0, 93, 171, .86), rgba(0, 93, 171, .86)),
    url("images/logo-ancienne-volley.png") center / 460px no-repeat;
}

.home-hero-content {
  max-width: 1000px;
  margin: auto;
}

.home-hero-logo {
  width: 250px;
  max-width: 80%;
  margin: 0 auto 25px;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, .35));
}

.home-news-ticker {
  max-width: 850px;
  margin: 22px auto;
  overflow: hidden;
  background: rgba(255, 255, 255, .15);
  border-radius: 999px;
}

.home-news-ticker span {
  display: inline-block;
  padding: 10px 40px;
  white-space: nowrap;
  animation: ticker 18s linear infinite;
}

@keyframes ticker {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

.home-hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 25px;
}

/* Sections accueil */

.home-team-slider,
.home-dashboard,
.home-stats,
.home-calendar-preview,
.home-contact,
.home-sponsors,
.home-socials {
  max-width: var(--largeur-page);
  margin: 60px auto;
  padding: 0 20px;
}

.home-team-slider-intro,
.home-dashboard-intro,
.home-stats-intro,
.home-calendar-intro,
.home-contact-intro,
.home-sponsors-intro,
.home-socials-intro {
  margin-bottom: 35px;
  text-align: center;
}

.home-team-slider-intro p,
.home-dashboard-intro p,
.home-stats-intro p,
.home-calendar-intro p,
.home-contact-intro p,
.home-sponsors-intro p,
.home-socials-intro p {
  max-width: 720px;
  margin: 12px auto 0;
  color: var(--gris);
  line-height: 1.7;
}

/* Slider équipes accueil */

.team-photo-slider {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: white;
  box-shadow: var(--ombre-premium);
}

.team-photo-slide {
  display: none;
  position: relative;
}

.team-photo-slide::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 115px;
  height: 38%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, .42),
    rgba(0, 0, 0, 0)
  );
  pointer-events: none;
}

.team-photo-slide.active {
  display: block;
  animation: fadeIn .35s ease;
}

.team-photo-slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition:
    transform .55s ease,
    filter .55s ease;
}

.team-photo-slide:hover img {
  transform: scale(1.035);
  filter: brightness(.94);
}

.team-photo-caption {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 30px;
  color: var(--fonce);
  background:
    linear-gradient(90deg, rgba(255,255,255,1), rgba(245,248,252,.96));
  border-top: 7px solid var(--team-color, var(--vert));
}

.team-photo-caption h3 {
  margin: 0;
  color: var(--team-color, var(--bleu));
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  letter-spacing: -.5px;
}

.team-photo-caption a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 135px;
  padding: 12px 20px;
  color: white;
  background: var(--team-color, var(--bleu));
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(16, 32, 51, .16);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background-color .25s ease;
}

.team-photo-caption a:hover {
  background: var(--bleu);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(16, 32, 51, .22);
}

.team-photo-slide:nth-child(1) {
  --team-color: #ff4fd8;
}

.team-photo-slide:nth-child(2) {
  --team-color: #008E40;
}

.team-photo-slide:nth-child(3) {
  --team-color: #8B2D2D;
}

.team-photo-slide:nth-child(4) {
  --team-color: #ff6600;
}

.team-photo-slide:nth-child(5) {
  --team-color: #0070C0;
}

.team-photo-slide:nth-child(6) {
  --team-color: #806000;
}

.team-photo-slide:nth-child(7) {
  --team-color: #72bf44;
}

.team-slider-prev,
.team-slider-next {
  position: absolute;
  top: calc(50% - 38px);
  z-index: 4;
  width: 48px;
  height: 48px;
  padding: 0;
  transform: translateY(-50%);
  color: white;
  background: rgba(16, 32, 51, .58);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  font-size: 26px;
  backdrop-filter: blur(6px);
}

.team-slider-prev:hover,
.team-slider-next:hover {
  background: var(--bleu);
  transform: translateY(-50%) scale(1.06);
}

.team-slider-prev {
  left: 18px;
}

.team-slider-next {
  right: 18px;
}

.team-slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 112px;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.team-slider-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
}

.team-slider-dots button.active {
  width: 28px;
  background: var(--vert);
}

@media (max-width: 768px) {
  .team-photo-slide img {
    height: 360px;
  }

  .team-photo-caption {
    flex-direction: column;
    text-align: center;
    padding: 22px 18px;
  }

   .team-slider-dots {
    bottom: 135px;
  }
}

/* Dashboard */

.home-dashboard-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 25px;
}

.home-next-match {
  min-height: 360px;
  padding: 35px;
  text-align: center;
  color: white;
  background:
    linear-gradient(rgba(0, 93, 171, .92), rgba(0, 93, 171, .92)),
    url("images/logo-ancienne-volley.png") center / 320px no-repeat;
  border-radius: 22px;
  box-shadow: var(--ombre);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.home-next-match::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at top right, rgba(255,255,255,.18), transparent 35%);

  pointer-events: none;
}

.dashboard-label {
  align-self: center;
  display: inline-block;
  margin-bottom: 22px;
  padding: 8px 18px;
  color: white;
  background: var(--vert);
  border-radius: 999px;
  font-weight: bold;
}

.home-next-match h3 {
  color: white;
  font-size: 2.1rem;
  margin-bottom: 20px;
}

.home-next-match a {
  align-self: center;
  display: inline-block;
  margin-top: 25px;
  padding: 12px 22px;
  color: var(--bleu);
  background: white;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
}

.home-next-match a:hover {
  color: white;
  background: var(--vert);
}

.home-dashboard-side {
  display: grid;
  gap: 18px;
}

.home-dashboard-small {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, .96);
  border-radius: var(--rayon-grand);
  border-left: 6px solid var(--vert);
  box-shadow: var(--ombre);
  transition: .25s;
  position: relative;
  overflow: hidden;
}

.home-dashboard-small::after {
  content: "";

  position: absolute;
  top: 0;
  right: 0;

  width: 80px;
  height: 80px;

  background: rgba(114, 191, 68, .10);

  border-bottom-left-radius: 100%;
}

.home-dashboard-small:hover {
  transform: translateX(5px);
  box-shadow: var(--ombre-hover);
}

.home-dashboard-small>span {
  font-size: 2.3rem;
}

.home-dashboard-small h3 {
  margin-bottom: 5px;
}

/* Matchs dashboard */

.home-match-slider {
  width: 100%;
}

.home-match-slides {
  position: relative;
  min-height: 210px;
}

.home-match-slide {
  display: none;
  animation: fadeIn .35s ease;
}

.home-match-slide.active {
  display: block;
}

.home-match-count {
  font-weight: bold;
  opacity: .9;
  margin-bottom: 12px;
}

.match-versus {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin: 22px 0;
}

.match-versus strong {
  font-size: 1.25rem;
}

.match-versus span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: var(--bleu);
  background: white;
  border-radius: 50%;
  font-weight: 900;
}

.match-info {
  font-size: 1.05rem;
  line-height: 1.7;
}

.home-match-loading,
#home-last-result,
#home-next-event,
#home-rankings-slider {
  color: rgba(16, 32, 51, .72);
  font-style: italic;
}

.home-match-empty {
  text-align: center;
}

.home-match-empty span {
  display: block;
  font-size: 3rem;
  margin-bottom: 15px;
}

.home-match-dots,
.home-result-dots,
.home-ranking-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 15px;
}

.home-match-dots button,
.home-result-dots button,
.home-ranking-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  background: #cbd5df;
}

.home-match-dots button.active,
.home-result-dots button.active,
.home-ranking-dots button.active {
  background: var(--vert);
  transform: scale(1.25);
}

/* Dernier résultat */

.home-result-slider {
  width: 100%;
  min-height: 160px;
}

.home-result-slide {
  display: none;
  width: 100%;
}

.home-result-slide.active {
  display: block;
}

.home-result-card {
  position: relative;
  overflow: hidden;

  width: 100%;
  padding: 14px 34px 14px 16px;

  background: var(--gris-clair);
  border-left: 6px solid var(--team-color, var(--vert));
  border-radius: 12px;
}

.home-result-card::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -22px;

  width: 44px;
  height: 44px;

  background: var(--team-color, var(--vert));
  border-radius: 50%;

  transform: translateY(-50%);
}

.home-result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.home-result-header strong {
  color: var(--team-color, var(--bleu));
  font-size: 1rem;
}

.home-result-header small,
.home-result-date {
  color: var(--gris);
  font-size: .82rem;
}

.home-result-date {
  display: block;
  margin-top: 2px;
}

.home-result-score-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;

  margin-top: 10px;
}

.home-result-score-line span {
  color: var(--fonce);
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.25;
}

.home-result-score-line span:first-child {
  text-align: right;
}

.home-result-score-line span:last-child {
  text-align: left;
}

.home-result-score-line strong {
  color: var(--bleu);
  font-size: 1.35rem;
  font-weight: 900;
  white-space: nowrap;
}

.home-result-score-line strong.home-result-win {
    color: #1f9d45;
}

.home-result-score-line strong.home-result-loss {
    color: #d62828;
}

.home-result-sets {
  margin-top: 6px;

  color: var(--gris);
  font-size: .82rem;
  font-weight: 700;
  text-align: center;
}

.home-result-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 15px;
}

.home-result-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  background: #cbd5df;
}

.home-result-dots button.active {
  background: var(--vert);
  transform: scale(1.25);
}

/* Classements accueil */

.home-ranking-slider {
  width: 100%;
  min-height: 150px;
}

.home-ranking-slide {
  display: none;
  width: 100%;
}

.home-ranking-slide.active {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.home-ranking-group {
  width: 100%;
  display: grid;
  gap: 10px;
}

.home-ranking-row {
  position: relative;
  overflow: hidden;

  display: grid;
  grid-template-columns: minmax(120px, 1.7fr) 70px 75px 48px;
  align-items: center;
  gap: 8px;

  width: 100%;
  min-height: 56px;
  padding: 10px 34px 10px 14px;

  color: inherit;
  text-decoration: none;

  background: var(--gris-clair);
  border-left: 6px solid var(--team-color, var(--vert));
  border-radius: 12px;
}

.home-ranking-row::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -22px;

  width: 44px;
  height: 44px;

  background: var(--team-color, var(--vert));
  border-radius: 50%;

  transform: translateY(-50%);
}

.home-ranking-row strong {
  color: var(--team-color, var(--bleu));
  font-size: .95rem;
  white-space: nowrap;
}

.home-ranking-row small,
.home-ranking-row span,
.home-ranking-row em {
  text-align: center;
  font-size: .85rem;
  font-style: normal;
  white-space: nowrap;
}

.home-ranking-row small {
  color: var(--gris);
  font-weight: 700;
}

.home-ranking-row span {
  color: var(--bleu);
  font-weight: 900;
}

.ranking-evolution {
  font-weight: 900;
}

.ranking-evolution.up {
  color: #148a45;
}

.ranking-evolution.down {
  color: #d93025;
}

.ranking-evolution.stable {
  color: #555;
}

/* Stats accueil */

.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px;
}

.home-stat-card {
  padding: 28px 18px;
  text-align: center;
  background: white;
  border-radius: var(--rayon-grand);
  border-top: 5px solid var(--vert);
  box-shadow: var(--ombre);
  transition: .25s;
  position: relative;
  overflow: hidden; 
}

.home-stat-card::before {
  content: "";

  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 4px;

  background: linear-gradient(90deg, var(--bleu), var(--vert));

  transform: scaleX(0);
  transform-origin: left;

  transition: transform .30s ease;
}

.home-stat-card:hover::before {
  transform: scaleX(1);
}

.home-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ombre-hover);
}

.home-stat-card span {
  display: block;
  margin-bottom: 12px;
  font-size: 2.2rem;
}

.home-stat-card h3 {
  font-size: 2rem;
}

/* Agenda accueil */

.home-calendar-box {
  padding: 30px;
  background: white;
  border-radius: var(--rayon-grand);
  border-top: 5px solid var(--vert);
  box-shadow: var(--ombre);
}

.home-calendar-main h3 {
  margin-bottom: 20px;
  text-align: center;
}

.home-calendar-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.home-calendar-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px;
  color: var(--fonce);
  text-decoration: none;
  background: var(--gris-clair);
  border-radius: var(--rayon);
  border-left: 5px solid var(--vert);
  transition: .25s;
}

.home-calendar-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--ombre);
}

.home-calendar-date {
  min-width: 58px;
  padding: 8px;
  color: white;
  background: var(--bleu);
  border-radius: 12px;
  text-align: center;
  font-weight: bold;
}

/* CONTACT ACCUEIL */

.home-contact {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
}

.home-contact-content {
  background: white;
  border-radius: var(--rayon-grand);
  padding: 45px;
  box-shadow: var(--ombre);
}

.home-contact-content h2 {
  text-align: center;
  color: var(--bleu);
  font-size: 2.3rem;
  margin-bottom: 15px;
}

.home-contact-content p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 35px;
  line-height: 1.8;
}

.home-contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.home-contact-form input,
.home-contact-form select,
.home-contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #d9e2ec;
  border-radius: 12px;
  font-size: 1rem;
  transition: .25s;
  font-family: inherit;
  background: white;
}

.home-contact-form textarea {
  resize: vertical;
  min-height: 170px;
}

.home-contact-form input:focus,
.home-contact-form select:focus,
.home-contact-form textarea:focus {
  outline: none;
  border-color: var(--bleu);
  box-shadow: 0 0 0 4px rgba(0, 93, 171, .12);
}

.home-contact-form button {
  align-self: center;
  padding: 15px 42px;
  background: var(--vert);
  color: white;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: .25s;
}

.home-contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: var(--ombre-hover);
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .95rem;
  line-height: 1.5;
  color: var(--gris);
  cursor: pointer;
}

.contact-consent input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Sponsors accueil */

.home-sponsors-slider {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  align-items: center;
  padding: 35px;
  background: white;
  border-radius: var(--rayon-grand);
  border-top: 5px solid var(--vert);
  box-shadow: var(--ombre);
}

.home-sponsors-slider a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 18px;
  background: var(--gris-clair);
  border-radius: var(--rayon);
  transition: .25s;
}

.home-sponsors-slider a:hover {
  transform: translateY(-5px);
  box-shadow: var(--ombre-hover);
}

.home-sponsors-slider img {
  max-width: 100%;
  max-height: 75px;
  object-fit: contain;
  transition: .25s;
}

.home-sponsors-slider a:hover img {
  transform: scale(1.06);
}

.home-sponsors-button {
  margin-top: 30px;
  text-align: center;
}

.home-sponsors-button a {
  display: inline-block;
  padding: 13px 25px;
  color: white;
  background: var(--bleu);
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
}

.home-sponsors-button a:hover {
  background: var(--vert);
}

/* Réseaux sociaux accueil */

.home-socials {
  max-width: 1000px;
}

.home-socials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.home-social-card {
  padding: 35px 25px;
  text-align: center;
  text-decoration: none;
  color: var(--fonce);
  background: white;
  border-radius: var(--rayon-grand);
  box-shadow: var(--ombre);
  transition: .25s;
}

.home-social-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ombre-hover);
}

.home-social-card span:first-child {
  display: block;
  margin-bottom: 15px;
  font-size: 3rem;
}

.home-social-card.facebook {
  border-top: 5px solid #1877f2;
}

.home-social-card.instagram {
  border-top: 5px solid #e4405f;
}

.home-social-action {
  display: inline-block;
  margin-top: 15px;
  color: var(--bleu);
  font-weight: bold;
}

/* Responsive accueil */

@media (max-width: 1000px) {
  .home-dashboard-layout {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .home-next-match,
  .home-dashboard-side {
    width: 100%;
    max-width: 760px;
  }

  .home-dashboard-small {
    justify-content: center;
    text-align: center;
  }

  .home-dashboard-small > span:empty {
    display: none;
  }

  .home-dashboard-small > div {
    width: 100%;
  }

  #home-last-result,
  #home-next-event,
  #home-rankings-slider {
    width: 100%;
    text-align: center;
  }

  .home-result-card,
  .home-ranking-group {
    margin-left: auto;
    margin-right: auto;
  }

  .home-sponsors-slider {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .calendar-table,
  main > .wide-table-section .calendar-table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
    font-size: clamp(10px, 2.4vw, 13px);
  }

  .calendar-table th,
  .calendar-table td {
    padding: 5px 3px;
    white-space: normal;
    word-break: break-word;
  }
}

@media (max-width: 700px) {
  main > .wide-table-section .calendar-table {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .home-hero {
    min-height: auto;
    padding: 70px 20px;
  }

  .home-hero-logo {
    width: 190px;
  }

  .team-photo-slide img {
    height: 360px;
  }

  .team-photo-caption {
    flex-direction: column;
    text-align: center;
  }

  .team-photo-caption h3 {
    font-size: 26px;
  }

  .home-socials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .home-sponsors-slider {
    grid-template-columns: repeat(2, 1fr);
    padding: 22px;
  }
}

@media (max-width: 520px) {
  .home-hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .home-hero-buttons .btn {
    width: 100%;
    max-width: 260px;
  }

  .home-dashboard-small {
    align-items: flex-start;
  }

  .home-sponsors-slider {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   08. LE CLUB
============================================ */

.club-intro {
  max-width: 950px;
  margin: 50px auto;
  padding: 0 20px;
  text-align: center;
}

.club-intro p {
  margin: 15px 0;
  line-height: 1.8;
  font-size: 1.05rem;
}

.club-links-section {
  max-width: 1200px;
  margin: 60px auto 80px;
  padding: 0 20px;
  text-align: center;
}

.club-links-section h2 {
  color: var(--bleu);
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.club-section-intro {
  max-width: 720px;
  margin: 0 auto 40px;
  color: var(--gris);
  line-height: 1.7;
}

.club-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.club-link-card {
  background: rgba(255, 255, 255, .96);
  border-radius: var(--rayon-grand);
  border-top: 5px solid var(--vert);

  padding: 28px 22px;

  text-decoration: none;
  text-align: center;
  color: var(--fonce);

  box-shadow: var(--ombre);

  transition: .30s ease;
}

.club-link-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ombre-hover);
}

.club-card-icon {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.club-link-card h3 {
  color: var(--bleu);
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.club-link-card p {
  color: var(--gris);
  line-height: 1.6;
}

.club-salle-card {
  grid-column: 2;
}

@media (max-width:900px) {

  .club-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .club-salle-card {
    grid-column: 1 / span 2;
    justify-self: center;
    max-width: 420px;
    width: 100%;
  }

}

@media (max-width:768px) {

  .club-links-grid {
    grid-template-columns: 1fr;
  }

  .club-salle-card {
    grid-column: auto;
    max-width: none;
    width: auto;
  }

}

/* ============================================
   09. HISTORIQUE
============================================ */

.history-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.history-intro,
.history-card {
  margin-bottom: 35px;
  padding: 30px;
  background: white;
  border-radius: var(--rayon-grand);
  box-shadow: var(--ombre);
}

.history-intro h2,
.history-card h2 {
  color: var(--bleu);
  margin-bottom: 18px;
}

.history-intro p,
.history-card p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.history-photo-section {
  max-width: 1100px;
  margin: 35px auto;
  padding: 0 20px;
  text-align: center;
}

.history-photo-section img {
  width: 80%;
  max-width: 900px;
  max-height: 500px;
  margin: 0 auto;
  object-fit: cover;
  border-radius: var(--rayon-grand);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}

.history-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.history-stat {
  padding: 25px 15px;
  text-align: center;
  background: white;
  border-radius: var(--rayon-grand);
  border-top: 5px solid var(--vert);
  box-shadow: var(--ombre);
  transition: .25s;
}

.history-stat:hover {
  transform: translateY(-5px);
}

.history-icon {
  display: block;
  margin-bottom: 12px;
  font-size: 2rem;
}

.history-number {
  display: block;
  margin-bottom: 10px;
  color: var(--bleu);
  font-size: 2.3rem;
  font-weight: bold;
  line-height: 1;
}

.history-label {
  color: var(--gris);
  font-size: 1rem;
}

/* Timeline historique */

.modern-timeline {
  position: relative;
  max-width: 1100px;
  margin: 60px auto;
  padding: 20px 0;
}

.modern-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--vert);
  transform: translateX(-50%);
  border-radius: 12px;
}

.history-step {
  position: relative;
  width: 50%;
  margin-bottom: 45px;
  padding: 0 15px;
}

.history-step:nth-child(odd) {
  left: 0;
}

.history-step:nth-child(even) {
  left: 50%;
}

.history-step::before {
  content: "";
  position: absolute;
  top: 22px;
  width: 22px;
  height: 22px;
  background: var(--bleu);
  border: 5px solid var(--vert);
  border-radius: 50%;
  z-index: 3;
}

.history-step:nth-child(odd)::before {
  right: -16px;
}

.history-step:nth-child(even)::before {
  left: -16px;
}

.history-year {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 18px;
  color: white;
  background: var(--bleu);
  border-radius: 999px;
  font-weight: bold;
}

.history-step:nth-child(odd) .history-year {
  float: right;
}

.history-step:nth-child(even) .history-year {
  float: left;
}

.history-step-content {
  clear: both;
  width: 100%;
  padding: 26px 28px;
  text-align: left !important;
  background: white;
  border-radius: var(--rayon-grand);
  border-top: 5px solid var(--vert);
  box-shadow: var(--ombre);
}

.history-step-content h3 {
  color: var(--bleu);
  margin-bottom: 12px;
  font-size: 1.25rem;
  text-align: left !important;
}

.history-step-content p {
  margin: 0;
  color: var(--fonce);
  font-size: 1rem;
  line-height: 1.7;
  text-align: left !important;
}

@media (max-width: 900px) {
  .modern-timeline {
    padding-left: 45px;
  }

  .modern-timeline::before {
    left: 18px;
  }

  .history-step,
  .history-step:nth-child(odd),
  .history-step:nth-child(even) {
    width: 100%;
    left: 0;
    padding: 0 0 35px;
  }

  .history-step::before,
  .history-step:nth-child(odd)::before,
  .history-step:nth-child(even)::before {
    left: -38px;
    right: auto;
  }

  .history-step:nth-child(odd) .history-year,
  .history-step:nth-child(even) .history-year {
    float: none;
  }
}

/* Galerie historique */

.history-gallery {
  margin: 55px 0;
  text-align: center;
}

.history-gallery h2 {
  margin-bottom: 25px;
}

.history-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.history-gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--rayon-grand);
  box-shadow: var(--ombre);
  transition: .25s;
}

.history-gallery-grid img:hover {
  transform: scale(1.04);
  box-shadow: var(--ombre-hover);
}

/* Citation historique */

.history-quote {
  margin: 50px 0 20px;
  padding: 40px 30px;
  text-align: center;
  color: white;
  background: linear-gradient(135deg, var(--bleu), #003f75);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

.history-quote blockquote {
  max-width: 850px;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
}

.history-quote p {
  margin: 0;
  color: rgba(255, 255, 255, .85);
  font-weight: bold;
}

/* Responsive historique */

@media (max-width: 900px) {
  .modern-timeline {
    max-width: 100%;
    padding-left: 10px;
  }

  .modern-timeline::before {
    left: 18px;
  }

  .modern-timeline .timeline-item {
  position: relative;
  width: 50%;
  margin: 0 0 45px;
  padding: 0 80px;
  }

  .modern-timeline .timeline-item::before {
    left: 18px;
    transform: translateX(-50%);
  }

  .modern-timeline .timeline-content,
  .modern-timeline .timeline-item:nth-child(odd) .timeline-content,
  .modern-timeline .timeline-item:nth-child(even) .timeline-content {
    max-width: none;
    text-align: left;
  }

  .history-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .history-photo-section img {
    width: 100%;
  }

  .history-gallery-grid {
    grid-template-columns: 1fr;
  }

  .history-quote blockquote {
    font-size: 1.2rem;
  }
}

/* ============================================
   10. PALMARÈS
============================================ */

.palmares-intro {
  max-width: 1000px;
  margin: 25px auto 0;
  padding: 0 20px;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Statistiques */

.palmares-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 40px auto 60px;
  padding: 0 20px;
}

.stat-card {
  background: white;
  padding: 28px 22px;
  text-align: center;
  border-radius: var(--rayon-grand);
  border-top: 5px solid var(--vert);
  box-shadow: var(--ombre);
  transition: .25s;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ombre-hover);
}

.stat-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.stat-number {
  display: block;
  color: var(--bleu);
  font-size: 2.3rem;
  font-weight: bold;
  line-height: 1;
}

.stat-label {
  margin-top: 10px;
  color: var(--gris);
}

/* Distinctions */

.palmares-highlights,
.palmares-timeline,
.palmares-seasons {
  max-width: 1100px;
  margin: 20px auto 70px;
  padding: 0 20px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.highlight-card {
  background: white;
  padding: 26px 22px;
  text-align: center;
  border-radius: var(--rayon-grand);
  border-top: 5px solid var(--bleu);
  box-shadow: var(--ombre);
  transition: .25s;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ombre-hover);
}

.highlight-season {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  color: white;
  background: var(--bleu);
  border-radius: 999px;
  font-weight: bold;
  font-size: .9rem;
}

.highlight-card h3 {
  margin-bottom: 12px;
}

.highlight-card p {
  color: var(--fonce);
  line-height: 1.6;
}

/* Couleurs équipes */

.highlight-card.p2-dames-a,
.team-result.p2-dames-a {
  border-top-color: #ff4fd8;
  border-left-color: #ff4fd8;
}

.highlight-card.p3-dames-b,
.team-result.p3-dames-b {
  border-top-color: #008E40;
  border-left-color: #008E40;
}

.highlight-card.p4-dames-c,
.team-result.p4-dames-c {
  border-top-color: #8B2D2D;
  border-left-color: #8B2D2D;
}

.highlight-card.p4-dames-d,
.team-result.p4-dames-d {
  border-top-color: #ff6600;
  border-left-color: #ff6600;
}

.highlight-card.p2-hommes-a,
.team-result.p2-hommes-a {
  border-top-color: #0070C0;
  border-left-color: #0070C0;
}

.highlight-card.p4-hommes-b,
.team-result.p4-hommes-b {
  border-top-color: #806000;
  border-left-color: #806000;
}

/* Timeline succès */

.success-timeline {
  position: relative;
  padding-left: 30px;
}

.success-timeline::before {
  content: "";
  position: absolute;
  left: 150px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--bleu);
  border-radius: 12px;
}

.success-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.success-year {
  text-align: right;
  padding-right: 70px;
  color: var(--bleu);
  font-weight: bold;
}

.success-content {
  background: white;
  padding: 22px 25px;
  border-left: 5px solid var(--vert);
  border-radius: var(--rayon-grand);
  box-shadow: var(--ombre);
}

/* Saisons */

.season-help {
  text-align: center;
  color: var(--gris);
  margin: 10px auto 25px;
}

.season-accordion {
  background: white;
  border-radius: var(--rayon-grand);
  box-shadow: var(--ombre);
  margin-bottom: 16px;
  overflow: hidden;
  border-left: 5px solid var(--vert);
}

.season-accordion summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: bold;
  color: var(--bleu);
  font-size: 1.15rem;
  list-style: none;
}

.season-accordion summary::-webkit-details-marker {
  display: none;
}

.season-accordion summary::after {
  content: "＋";
  float: right;
  color: var(--vert);
  font-weight: bold;
}

.season-accordion[open] summary::after {
  content: "−";
}

.season-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  padding: 0 22px 22px;
}

.team-result {
  background: var(--gris-clair);
  border-left: 5px solid var(--vert);
  border-radius: 12px;
  padding: 15px;
}

.team-result h4 {
  color: var(--bleu);
  margin-bottom: 8px;
}

.team-result p {
  margin: 0;
  color: var(--fonce);
  line-height: 1.5;
}

/* ============================================
   11. COMITÉ
============================================ */

.comite-intro,
.comite-closing {
  max-width: 1100px;

  margin: 0 auto 40px;

  padding: 0 20px;
}

.comite-section {
  max-width: 1200px;

  margin: 50px auto;

  padding: 0 20px;
}

.section-title {
  text-align: center;

  color: var(--bleu);

  font-size: 2rem;

  margin-bottom: 30px;
}

.comite-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

  gap: 25px;
}

.comite-card {
  background: white;

  padding: 35px 20px;

  text-align: center;

  border-radius: 16px;

  border-top: 5px solid var(--vert);

  box-shadow: var(--ombre);

  transition: .25s;
}

.comite-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ombre-hover);
}

.comite-icon {
  display: block;

  font-size: 4rem;

  margin-bottom: 20px;
}

.comite-card h3 {
  color: var(--bleu);

  margin-bottom: 10px;
}

.fonction {
  color: var(--vert);

  font-weight: bold;

  margin-bottom: 15px;
}

.comite-mail {
  display: inline-block;

  color: var(--bleu);

  font-size: .9rem;

  word-break: break-word;
}

/* Statistiques */

.comite-stats {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.comite-stats .stat-card {
  background: #fff;
  border-radius: 16px;
  border-top: 5px solid var(--vert);

  padding: 30px 20px;
  text-align: center;

  box-shadow: var(--ombre);
  transition: .25s;
}

.comite-stats .stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ombre-hover);
}

.comite-stats .number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--bleu);
  margin-bottom: 10px;
}

.comite-stats p {
  margin: 0;
  color: var(--gris);
  font-size: 1rem;
}

/* ============================================
   12. ARBITRES
============================================ */

.arbitres-intro {
  max-width: 1000px;
  margin: 35px auto 50px;
  padding: 0 20px;
  text-align: center;
}

.arbitres-intro p {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.05rem;
}

.arbitres-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.arbitres-grid {
  display: grid;
  grid-template-columns: repeat(2, 270px);
  justify-content: center;
  gap: 30px;
}

.arbitre-card {
  background: var(--blanc);
  border-radius: var(--rayon-grand);
  border-top: 5px solid var(--vert);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--ombre);
  transition: .25s ease;
}

.arbitre-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ombre-hover);
}

.arbitre-card img {
  width: 145px;
  height: 145px;
  margin: 0 auto 18px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--clair);
}

.arbitre-card h3 {
  color: var(--bleu);
  margin-bottom: 15px;
  font-size: 1.35rem;
}

.arbitre-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.arbitre-card li {
  margin: 8px 0;
  color: var(--fonce);
}

/* Cache les 2 cartes futures */
.arbitre-futur {
  display: none !important;
}

.future-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: var(--vert);
  color: white;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Rôle de l'arbitre */

.role-arbitre {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.role-card {
  background: var(--blanc);
  border-top: 5px solid var(--vert);
  border-radius: var(--rayon-grand);
  padding: 32px 30px;
  text-align: center;
  box-shadow: var(--ombre);
}

.role-card p {
  max-width: 850px;
  margin: 0 auto 15px;
  line-height: 1.8;
}

.role-card p:last-child {
  margin-bottom: 0;
}

/* Devenir arbitre */

.devenir-arbitre-section {
  max-width: 1000px;
  margin: 70px auto;
  padding: 0 20px;
}

.devenir-arbitre-card {
  background: linear-gradient(135deg, var(--bleu), var(--vert));
  color: white;
  border-radius: var(--rayon-grand);
  padding: 45px 35px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

.devenir-arbitre-card h2 {
  color: white;
  margin-bottom: 20px;
}

.devenir-arbitre-card p {
  max-width: 800px;
  margin: 0 auto 18px;
  line-height: 1.7;
}

.arbitre-btn {
  display: inline-block;
  margin-top: 20px;
  background: white;
  color: var(--bleu);
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
  transition: .25s ease;
}

.arbitre-btn:hover {
  background: var(--bleu);
  color: white;
  transform: translateY(-3px);
}

/* Responsive */

@media (max-width: 768px) {
  .arbitres-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .arbitre-card {
    width: 100%;
    max-width: 320px;
  }

  .devenir-arbitre-card {
    padding: 35px 24px;
  }
}

/* ============================================
   13. ENTRAÎNEURS
============================================ */

.entraineurs-intro,
.entraineurs-closing {
  max-width: 1100px;
  margin: 60px auto;
  padding: 40px 35px;
  text-align: center;
  background: rgba(255, 255, 255, 0.90);
  border-radius: var(--rayon-grand);
  border-top: 5px solid var(--vert);
  box-shadow: var(--ombre);
}

.entraineurs-intro h2 {
  color: var(--bleu);
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.entraineurs-intro p,
.entraineurs-closing p {
  max-width: 900px;
  margin: 15px auto;
  line-height: 1.9;
}

.entraineurs-closing {
  margin-top: 70px;
}

.entraineurs-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.entraineurs-grid {
  display: grid;
  grid-template-columns: repeat(4, 260px);
  justify-content: center;
  gap: 25px;
}

.entraineur-card {
  background: white;
  padding: 25px 20px;
  text-align: center;
  border-radius: 16px;
  border-top: 5px solid var(--vert);
  box-shadow: var(--ombre);
  transition: .25s;
}

.entraineur-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ombre-hover);
}

.entraineur-card img {
  width: 120px;
  height: 150px;
  margin: 0 auto 18px;
  object-fit: cover;
  border-radius: 12px;
}

.entraineur-card h3 {
  color: var(--bleu);
  text-align: center;
  margin-bottom: 18px;
}

.entraineur-info {
  text-align: left;
}

.entraineur-info p {
  margin: 8px 0;
}

.entraineur-info strong {
  color: var(--bleu);
}

.equipes-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 10px 0 18px;
}

.team-tag {
  display: inline-block;
  padding: 7px 13px;
  border-radius: 999px;
  color: white !important;
  text-decoration: none !important;
  font-size: .85rem;
  font-weight: bold;
  line-height: 1;
  box-shadow: 0 3px 8px rgba(0, 0, 0, .18);
  transition: .25s;
}

.team-tag:hover {
  transform: translateY(-2px);
  opacity: .9;
}

/* Couleurs équipes */

.team-tag.p2da {
  background: #ff4fd8;
}

.team-tag.p3db {
  background: #008E40;
}

.team-tag.p4dc {
  background: #8B2D2D;
}

.team-tag.p4dd {
  background: #ff6600;
}

.team-tag.p2ha {
  background: #0070C0;
}

.team-tag.p4hb {
  background: #806000;
}

.team-tag.jeunes {
  background: var(--vert);
}

/* Responsive */

@media (max-width: 1150px) {
  .entraineurs-grid {
    grid-template-columns: repeat(2, 260px);
  }
}

@media (max-width: 650px) {
  .entraineurs-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   14. ENTRAÎNEMENTS
============================================ */

.entrainements-intro,
.jeunes-highlight,
.entrainements-contact {
  max-width: 1100px;

  margin: 60px auto;

  padding: 0 20px;

  text-align: center;
}

.entrainements-intro h2,
.jeunes-highlight h2,
.entrainements-contact h2,
.salles-preview h2 {
  color: var(--bleu);

  font-size: 2.5rem;

  margin-bottom: 20px;
}

.entrainements-intro p,
.jeunes-highlight p,
.entrainements-contact p {
  max-width: 900px;

  margin: 15px auto;

  line-height: 1.8;
}

/* Statistiques */

.entrainements-stats {
  max-width: 1100px;

  margin: 50px auto;

  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

  gap: 25px;
}

.entrainement-stat-card {
  background: white;

  padding: 30px 20px;

  text-align: center;

  border-radius: 16px;

  border-top: 5px solid var(--vert);

  box-shadow: var(--ombre);

  transition: .25s;
}

.entrainement-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ombre-hover);
}

.entrainement-stat-card span {
  display: block;

  margin-bottom: 15px;

  font-size: 2.8rem;
}

.entrainement-stat-card h3 {
  color: var(--bleu);

  font-size: 3.5rem;
  line-height: 1;

  margin-bottom: 10px;

  font-weight: bold;
}

.entrainement-stat-card p {
  margin: 0;

  font-size: 1.05rem;
}

/* Tableau */

.entrainements-section {
  max-width: 1200px;

  margin: 60px auto;

  padding: 0 20px;
}

.entrainements-table-wrapper {
  overflow-x: auto;

  background: white;

  border-radius: 16px;

  box-shadow: var(--ombre);
}

.entrainements-table {
  width: 100%;

  border-collapse: collapse;
}

.entrainements-table th,
.entrainements-table td {
  padding: 14px 12px;

  text-align: center;

  border-bottom: 1px solid var(--bordure);
}

.entrainements-table th {
  background: var(--bleu);

  color: white;
}

.entrainements-table tbody tr:hover {
  background: #f5f9ff;
}

.entrainements-table .team-name {
  vertical-align: middle;

  font-weight: bold;

  border-left: 6px solid var(--bleu);

  background: #f8f8f8;
}

.entrainements-table td a {
  color: var(--bleu);

  font-weight: bold;

  text-decoration: none;

  transition: .25s;
}

.entrainements-table td a:hover {
  color: var(--vert);

  text-decoration: underline;
}

/* Couleurs équipes */

.team-p2da .team-name {
  border-left-color: #ff99cc;
}

.team-p3db .team-name {
  border-left-color: #008E40;
}

.team-p4dc .team-name {
  border-left-color: #8B2D2D;
}

.team-p4dd .team-name {
  border-left-color: #ff6600;
}

.team-p2ha .team-name {
  border-left-color: #0000ff;
}

.team-p4hb .team-name {
  border-left-color: #948A54;
}

.team-jeunes .team-name {
  border-left-color: var(--vert);
}

/* Section jeunes */

.jeunes-highlight {
  color: white;

  background: var(--bleu);

  padding: 50px 30px;

  border-radius: 20px;

  margin: 80px auto;
}

.jeunes-highlight h2 {
  color: white;
}

.jeunes-content {
  max-width: 900px;

  margin: 0 auto;
}

.jeunes-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 12px;

  margin: 30px auto;
}

.jeunes-points div {
  padding: 15px;

  background: rgba(255, 255, 255, .15);

  border-radius: 12px;

  font-weight: bold;
}

.jeunes-horaire {
  margin-top: 25px;

  font-size: 1.1rem;
}

/* Salles */

.salles-preview {
  max-width: 1200px;

  margin: 60px auto;

  padding: 0 20px;
}

.salles-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 25px;
}

.salle-preview-card {
  background: white;

  padding: 30px;

  text-align: center;

  border-radius: 16px;

  border-top: 5px solid var(--vert);

  box-shadow: var(--ombre);

  transition: .25s;
}

.salle-preview-card:hover {
  transform: translateY(-5px);

  box-shadow: var(--ombre-hover);
}

.salle-preview-card img {
  width: 100%;
  height: 180px;

  object-fit: cover;

  border-radius: 12px;

  margin-bottom: 18px;
}

.salle-preview-card h3 {
  color: var(--bleu);

  margin-bottom: 10px;
}

.salle-mini-adresse {
  margin-top: 10px;

  color: var(--gris);

  font-size: .95rem;
  line-height: 1.5;
}

.salle-preview-card a {
  display: inline-block;

  margin-top: 15px;

  background: var(--bleu);
  color: white;

  text-decoration: none;

  padding: 10px 18px;

  border-radius: 12px;

  transition: .25s;
}

.salle-preview-card a:hover {
  background: var(--vert);
}

/* Contact */

.entrainements-contact {
  color: white;

  background: var(--vert);

  padding: 50px 30px;

  border-radius: 20px;

  margin-bottom: 70px;
}

.entrainements-contact h2 {
  color: white;
}

.btn-entrainement-contact {
  display: inline-block;

  margin-top: 20px;

  background: white;
  color: var(--bleu);

  text-decoration: none;

  padding: 12px 25px;

  border-radius: 12px;

  font-weight: bold;

  transition: .25s;
}

.btn-entrainement-contact:hover {
  transform: translateY(-2px);
}

/* Mobile */

@media (max-width: 768px) {

  .entrainements-intro,
  .jeunes-highlight,
  .entrainements-contact {
    margin: 40px auto;
  }

  .entrainement-stat-card h3 {
    font-size: 2.8rem;
  }

  .jeunes-points {
    grid-template-columns: 1fr;
  }

  .entrainements-table th,
  .entrainements-table td {
    padding: 12px 10px;

    font-size: .92rem;
  }

}

/* ============================================
   15. SALLES
============================================ */

.salles-intro,
.salles-collaboration {
  max-width: 1100px;
  margin: 60px auto;
  padding: 40px 35px;

  text-align: center;

  background: rgba(255, 255, 255, .92);
  border-radius: var(--rayon-grand);
  border-top: 5px solid var(--vert);
  box-shadow: var(--ombre);
}

.salles-intro h2,
.salles-collaboration h2 {
  color: var(--bleu);
  font-size: 2.5rem;
  margin-bottom: 22px;
}

.salles-intro p,
.salles-collaboration p {
  max-width: 900px;
  margin: 15px auto;
  line-height: 1.8;
}

.salles-grid {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.salle-card {
  display: flex;
  flex-direction: column;

  overflow: hidden;

  background: white;

  border-radius: var(--rayon-grand);
  border-top: 5px solid var(--vert);

  box-shadow: var(--ombre);

  transition: .25s;
}

.salle-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ombre-hover);
}

.salle-card img {
  width: 100%;
  height: 260px;

  object-fit: cover;
}

.salle-content {
  display: flex;
  flex-direction: column;
  flex: 1;

  padding: 32px;
}

.salle-content h3 {
  color: var(--bleu);

  font-size: 1.35rem;

  margin-bottom: 22px;
}

.salle-content p {
  margin-bottom: 26px;

  line-height: 1.8;
}

.salle-content ul {
  list-style: none;

  padding: 0;
  margin: 0 0 28px;
}

.salle-content li {
  margin-bottom: 14px;

  line-height: 1.6;
}

.salle-content strong {
  color: var(--bleu);
}

.salle-btn {
  display: inline-block;
  align-self: center;

  width: fit-content;

  margin: auto auto 0;
  padding: 12px 22px;

  color: white;
  background: var(--bleu);

  text-decoration: none;
  font-weight: bold;

  border-radius: 999px;

  transition: .25s;
}

.salle-btn:hover {
  background: var(--vert);
  transform: translateY(-2px);
}

.salles-stats {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.salle-stat-card {
  background: white;

  border-radius: 16px;
  border-top: 5px solid var(--vert);

  padding: 30px 20px;

  text-align: center;

  box-shadow: var(--ombre);

  transition: .25s;
}

.salle-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ombre-hover);
}

.salle-stat-card span {
  display: block;

  margin-bottom: 12px;

  color: var(--bleu);

  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1;
}

.salle-stat-card p {
  margin: 0;

  color: var(--fonce);

  font-weight: bold;
}

/* Responsive */

@media (max-width: 1000px) {

  .salles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .salles-stats {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {

  .salles-intro,
  .salles-collaboration {
    margin: 45px auto;
    padding: 30px 24px;
  }

  .salles-intro h2,
  .salles-collaboration h2 {
    font-size: 2rem;
  }

  .salles-grid {
    grid-template-columns: 1fr;
    margin: 45px auto;
  }

  .salle-card img {
    height: 220px;
  }

  .salle-content {
    padding: 26px;
  }

  .salles-stats {
    grid-template-columns: 1fr;
    margin: 45px auto;
  }

}

/* ============================================
   16. ÉQUIPES
============================================ */

/* Page générale équipes */

.equipe-intro {
  max-width: 1000px;
  margin: 50px auto 30px;
  padding: 0 20px;
  text-align: center;
}

.equipe-intro p {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

.equipe-categories {
  max-width: 1100px;
  margin: 50px auto 80px;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.equipe-category-card {
  background: white;
  border-radius: var(--rayon-grand);
  padding: 35px 25px;

  text-align: center;
  text-decoration: none;
  color: var(--fonce);

  box-shadow: var(--ombre);
  transition: .25s;

  border-top: 6px solid var(--vert);
}

.equipe-category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ombre-hover);
}

.equipe-category-icon {
  font-size: 2.5rem;
  margin-bottom: 18px;
}

.equipe-category-card h3 {
  font-size: 1.8rem;
  color: var(--bleu);
  margin-bottom: 15px;
}

.equipe-category-card p {
  margin: 8px 0;
  line-height: 1.6;
}

.equipe-category-card span {
  display: inline-block;
  margin-top: 15px;
  font-weight: bold;
  color: var(--bleu);
}

.dames-card {
  border-top-color: #ff4fd8;
}

.hommes-card {
  border-top-color: #0070C0;
}

.jeunes-card {
  border-top-color: var(--vert);
}

.team-page.section {
  padding: 22px 16px;
}

.team-page .editable {
  max-width: none;
}

.team-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 22px;

  margin-bottom: 24px;
}

.team-side-layout {
  display: grid;
  grid-template-columns: 360px 1fr;

  gap: 24px;

  align-items: start;
}

.team-side-layout.fixed-side-by-side {
  grid-template-columns: 1fr;
  gap: 16px;
}

.full-card {
  margin-top: 16px;
}

.coach-section,
.training-inline-section,
.calendar-section,
.ranking-section,
.full-card {
  background: var(--clair);

  border-left: 5px solid var(--vert);

  border-radius: var(--rayon);

  padding: 18px;

  box-shadow: var(--ombre);
}

.coach-section h2,
.training-inline-section h2,
.calendar-section h2,
.ranking-section h2,
.full-card h2 {
  text-align: center;
}

/* Photo équipe */

.team-photo-card {
  width: 100%;

  margin-bottom: 25px;
}

.team-photo-container {
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;

  margin-bottom: 30px;
}

.team-photo {
  width: 95%;
  max-width: 1200px;
  max-height: 450px;

  object-fit: cover;

  border-radius: 16px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
}

.team-banner {
  width: 95%;
  max-width: 1200px;

  margin-top: -5px;

  padding: 1px;

  color: white;

  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;

  font-size: 24px;
  font-weight: bold;

  border-radius: 0 0 16px 16px;

  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

.team-banner.p2da {
  background: #ff99cc;
}

.team-banner.p3db {
  background: #008E40;
}

.team-banner.p4dc {
  background: #8B2D2D;
}

.team-banner.p4dd {
  background: #ff6600;
}

.team-banner.p2ha {
  background: #0000ff;
}

.team-banner.p4hb {
  background: #948A54;
}

.team-banner.jeunes {
  background: var(--vert);
}

/* Résumé équipe */

.team-summary-card {
  max-width: none;
  border-left: 6px solid #ff99cc;
}

.team-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

  gap: 12px;
}

.team-summary-grid p {
  margin: 0;

  padding: 12px;

  background: var(--gris-clair);

  border-radius: 12px;
  border-left: 4px solid var(--vert);

  box-shadow: 0 3px 10px rgba(0, 0, 0, .08);
}

/* Entraîneur / entraînements */

.top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 20px;

  align-items: stretch;

  margin-bottom: 24px;
}

.top-row .coach-section,
.top-row .training-inline-section {
  width: 100%;
  max-width: none;
  min-height: 430px;
  height: auto;

  margin: 0;
  align-self: stretch;
}

.coach-card,
.training-grid {
  flex: 1;

  display: flex;
  align-items: center;
  justify-content: center;
}

.coach-card img {
  width: 95px;
  height: 115px;

  margin: 0 auto 15px;

  object-fit: cover;

  border-radius: 12px;

  cursor: pointer;

  transition: .30s ease;
}

.coach-card img:hover {
  position: relative;
  z-index: 9999;

  transform: scale(1.8);
}

.coach-card .person-info {
  width: 100%;

  text-align: center;

  font-size: 17px;
  line-height: 1.6;
}

.coach-card .person-info h3 {
  font-size: 24px;

  margin-bottom: 10px;
}

.coach-card .person-info p {
  margin: 6px 0;

  font-size: 17px;
}

.compact-two,
.training-grid {
  display: grid;

  gap: 12px;
}

.compact-two {
  grid-template-columns: 1fr 1fr;
}

.training-grid {
  grid-template-columns: repeat(3, 1fr);
}

.training-box,
.training-item {
  padding: 12px;

  text-align: center;

  background: var(--clair);

  border-radius: 12px;
}

.training-box {
  border-left: 5px solid var(--vert);

  font-size: 14px;
}

.training-box h3 {
  font-size: 16px;

  margin-bottom: 6px;
}

/* CALENDRIER ÉQUIPES - TABLETTE */

@media (min-width: 701px) and (max-width: 1280px) and (pointer: coarse) {

  .wide-table-section {
    display: block;
    clear: both;

    width: 100%;
    margin-top: 35px;
  }

  .wide-table-section .calendar-section {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .wide-table-section .table-wrapper {
    display: block;

    width: 100%;
    max-width: 100%;

    overflow-x: auto;
    overflow-y: hidden;

    -webkit-overflow-scrolling: touch;
  }

  main > .wide-table-section .season-table.calendar-table {
    display: table;

    width: 1200px;
    min-width: 1200px;
    max-width: none;

    table-layout: fixed;
    border-collapse: collapse;

    opacity: 1;
    visibility: visible;
  }

  main > .wide-table-section .calendar-table th,
  main > .wide-table-section .calendar-table td {
    padding: 8px 5px;

    font-size: 12px;
    line-height: 1.25;

    text-align: center;
    vertical-align: middle;

    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;

    overflow: hidden;
  }

  /* Date */

  main > .wide-table-section .calendar-table th:nth-child(1),
  main > .wide-table-section .calendar-table td:nth-child(1) {
    width: 100px;
    white-space: nowrap;
  }

  /* Heures */

  main > .wide-table-section .calendar-table th:nth-child(2),
  main > .wide-table-section .calendar-table td:nth-child(2),
  main > .wide-table-section .calendar-table th:nth-child(3),
  main > .wide-table-section .calendar-table td:nth-child(3) {
    width: 75px;
    white-space: nowrap;
  }

  /* Équipes */

  main > .wide-table-section .calendar-table th:nth-child(4),
  main > .wide-table-section .calendar-table td:nth-child(4),
  main > .wide-table-section .calendar-table th:nth-child(5),
  main > .wide-table-section .calendar-table td:nth-child(5) {
    width: 220px;
    white-space: normal;
  }

  /* Salle */

  main > .wide-table-section .calendar-table th:nth-child(6),
  main > .wide-table-section .calendar-table td:nth-child(6) {
    width: 180px;
    white-space: normal;
  }

  /* Adresse */

  main > .wide-table-section .calendar-table th:nth-child(7),
  main > .wide-table-section .calendar-table td:nth-child(7) {
    width: 250px;
    max-width: 250px;

    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
  }

  main > .wide-table-section .calendar-table td:nth-child(7) .map-link {
    display: block;

    width: 100%;
    max-width: none;

    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
  }

  /* Score */

  main > .wide-table-section .calendar-table th:nth-child(8),
  main > .wide-table-section .calendar-table td:nth-child(8) {
    width: 80px;
    white-space: nowrap;
  }
}

/* Joueurs */

.players-section {
  width: 100%;

  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  gap: 8px;

  margin-bottom: 6px;
}

.section-head h2,
.team-page h2 {
  font-size: 24px;
}

.view-buttons {
  display: flex;

  gap: 6px;
}

.view-btn {
  min-width: 76px;

  padding: 7px 10px;

  background: #e8f0f8;
  color: var(--bleu);

  border-radius: 7px;

  font-size: 12px;
  text-align: center;
}

.view-btn.active {
  background: var(--vert);
  color: white;
}

.players-view {
  display: none;

  margin-top: 12px;
}

.players-view.active {
  display: block;
}

.players-list-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 10px;
}

.player-card {
  background: var(--clair);

  border-radius: 12px;
  border-left: 4px solid var(--vert);

  padding: 18px;

  min-height: 160px;

  text-align: left;

  transition: .25s;
}

.player-card:hover {
  transform: translateY(-4px);

  box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

.player-card h3 {
  text-align: left;
}

.player-card.player-row {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);

  gap: 28px;

  align-items: center;

  padding: 9px 10px;
}

.player-photo-wrap {
  width: 90px;
  min-width: 90px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.player-photo,
.player-photo-wrap img {
  width: 80px;
  height: 100px;

  object-fit: cover;

  border: 2px solid #ddd;
  border-radius: 12px;

  cursor: pointer;

  transition: .30s ease;
}

.player-photo:hover {
  position: relative;
  z-index: 9999;

  transform: scale(1.8);
}

.jersey-number {
  width: 66px;

  padding: 3px 4px;

  color: white;
  background: var(--bleu);

  border-radius: 999px;

  font-size: .72rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.person-info {
  text-align: left;

  font-size: 13px;
  line-height: 1.25;
}

.person-info h3 {
  font-size: 15px;

  margin: 0 0 6px;
}

.person-info p {
  margin: 4px 0;
}

.player-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 4px 12px;
}

.player-details-grid p {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;

  gap: 4px;

  margin: 2px 0;
}

.player-details-grid p strong {
  white-space: nowrap;
}

/* Vue grille joueurs */

.players-grid,
#players-grid-view.players-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(360px, 1fr));

  gap: 10px;
}

#players-grid-view .player-card {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);

  gap: 10px;

  align-items: center;
}

#players-grid-view .player-photo-wrap {
  gap: 4px;
}

#players-grid-view .person-info h3 {
  margin: 0 0 4px;

  font-size: .98rem;

  text-align: left;
}

#players-grid-view .person-info p {
  margin: 0;

  font-size: .78rem;
  line-height: 1.22;
}

/* ============================================
   Bandeau flottant des pages équipes
============================================ */

.team-floating-banner {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 1100;

  width: min(95%, 1200px);

  padding: 7px 15px;

  color: white;

  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;

  font-size: 20px;
  font-weight: bold;

  border-radius: 0 0 16px 16px;

  box-shadow: 0 8px 22px rgba(0, 0, 0, .22);

  opacity: 0;
  visibility: hidden;

  transform: translate(-50%, -18px);

  pointer-events: none;

  transition:
    opacity .25s ease,
    transform .25s ease,
    visibility .25s ease;
}

.team-floating-banner.visible {
  opacity: 1;
  visibility: visible;

  transform: translate(-50%, 0);
}

/* Couleurs des équipes */

.team-floating-banner.p2da {
  background: #ff4fd8;
}

.team-floating-banner.p3db {
  background: #008e40;
}

.team-floating-banner.p4dc {
  background: #8b2d2d;
}

.team-floating-banner.p4dd {
  background: #ff6600;
}

.team-floating-banner.p2ha {
  background: #0070c0;
}

.team-floating-banner.p4hb {
  background: #806000;
}

.team-floating-banner.jeunes {
  background: #72bf44;
}

/* Tablette */

@media (max-width: 1000px) {
  .team-floating-banner {
    top: 0;
    width: calc(100% - 30px);
    font-size: 18px;
  }
}

/* Mobile */

@media (max-width: 700px) {
  .team-floating-banner {
    top: 0;
    width: calc(100% - 20px);

    padding: 6px 12px;

    font-size: 15px;
    letter-spacing: .5px;

    border-radius: 0 0 12px 12px;
  }
}

/* ============================================
   17. DAMES
============================================ */

.dames-stats {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.dames-stat-card {
  background: white;
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  border-top: 5px solid var(--vert);
  box-shadow: var(--ombre);
  transition: .25s;
}

.dames-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ombre-hover);
}

.dames-stat-card span {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.dames-stat-card h3 {
  color: var(--bleu);
  font-size: 2rem;
  margin-bottom: 10px;
}

.dames-stat-card p {
  margin: 0;
  color: var(--gris);
}

.dames-history {
  max-width: 1100px;
  margin: 70px auto;
  padding: 0 20px;
}

.dames-history-content {
  background: white;
  border-radius: var(--rayon-grand);
  padding: 45px 35px;
  box-shadow: var(--ombre);
  border-left: 6px solid var(--bleu);
}

.dames-history h2 {
  color: var(--bleu);
  font-size: 2.3rem;
  text-align: center;
  margin-bottom: 35px;
}

.dames-history-timeline {
  display: grid;
  gap: 25px;
}

.dames-history-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 25px;
  align-items: center;
}

.dames-history-item span {
  background: var(--vert);
  color: white;
  font-weight: bold;
  padding: 12px 18px;
  border-radius: 30px;
  text-align: center;
}

.dames-history-item p {
  margin: 0;
  line-height: 1.7;
  color: #444;
}

.dames-join {
  max-width: 1100px;
  margin: 70px auto;
  padding: 0 20px;
}

.dames-join .card {
  text-align: center;
  padding: 50px 40px;
}

.dames-join h2 {
  color: var(--bleu);
  margin-bottom: 20px;
}

.dames-join p {
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

.dames-join .btn {
  display: inline-block;
}

/* Couleurs équipes dames */

.p2-card {
  border-top: 6px solid #ff99cc;
}

.p3-card {
  border-top: 6px solid #008E40;
}

.p4c-card {
  border-top: 6px solid #8B2D2D;
}

.p4d-card {
  border-top: 6px solid #ff6600;
}

.team-page.section {
  padding: 22px 16px;
}

.team-page .editable {
  max-width: none;
}

.top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 24px;
}

.coach-section,
.training-inline-section,
.calendar-section,
.ranking-section,
.full-card {
  background: var(--clair);
  border-left: 5px solid var(--vert);
  border-radius: var(--rayon);
  padding: 18px;
  box-shadow: var(--ombre);
}

.top-row .coach-section,
.top-row .training-inline-section {
  width: 100%;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.coach-section h2,
.training-inline-section h2,
.calendar-section h2,
.ranking-section h2,
.full-card h2 {
  text-align: center;
}

.coach-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: auto;
  text-align: center;
}

.coach-card img {
  width: 95px;
  height: 115px;
  margin: 0 auto 15px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: .30s ease;
}

.coach-card img:hover {
  position: relative;
  z-index: 9999;
  transform: scale(1.8);
}

.coach-card .person-info {
  width: 100%;
  text-align: center;
  font-size: 17px;
  line-height: 1.6;
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.training-box {
  padding: 12px;
  text-align: center;
  background: var(--clair);
  border-radius: 12px;
  border-left: 5px solid var(--vert);
  font-size: 14px;
}

.training-box h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

/* Mobile */

@media (max-width: 700px) {
  .dames-history-content {
    padding: 35px 22px;
  }

  .dames-history-item {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }

  .dames-history-item span {
    width: fit-content;
    margin: 0 auto;
  }

  .top-row {
    grid-template-columns: 1fr;
  }

  .training-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   17. HOMMES
============================================ */

.hommes-stats {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.hommes-stat-card {
  background: white;
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  border-top: 5px solid var(--vert);
  box-shadow: var(--ombre);
  transition: .25s;
}

.hommes-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ombre-hover);
}

.hommes-stat-card span {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hommes-stat-card h3 {
  color: var(--bleu);
  font-size: 2rem;
  margin-bottom: 10px;
}

.hommes-stat-card p {
  margin: 0;
  color: var(--gris);
}

.hommes-history {
  max-width: 1100px;
  margin: 70px auto;
  padding: 0 20px;
}

.hommes-history-content {
  background: white;
  border-radius: var(--rayon-grand);
  padding: 45px 35px;
  box-shadow: var(--ombre);
  border-left: 6px solid var(--bleu);
}

.hommes-history h2 {
  color: var(--bleu);
  font-size: 2.3rem;
  text-align: center;
  margin-bottom: 35px;
}

.hommes-history-timeline {
  display: grid;
  gap: 25px;
}

.hommes-history-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 25px;
  align-items: center;
}

.hommes-history-item span {
  background: var(--vert);
  color: white;
  font-weight: bold;
  padding: 12px 18px;
  border-radius: 30px;
  text-align: center;
}

.hommes-history-item p {
  margin: 0;
  line-height: 1.7;
  color: #444;
}

.hommes-join {
  max-width: 1100px;
  margin: 70px auto;
  padding: 0 20px;
}

.hommes-join .card {
  text-align: center;
  padding: 50px 40px;
}

.hommes-join h2 {
  color: var(--bleu);
  margin-bottom: 20px;
}

.hommes-join p {
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

.hommes-join .btn {
  display: inline-block;
}

/* Couleurs équipes hommes */

.p2h-card {
  border-top: 6px solid #0070C0;
}

.p4h-card {
  border-top: 6px solid #806000;
}

/* Mobile */

@media (max-width:700px) {

  .hommes-history-content {
    padding: 35px 22px;
  }

  .hommes-history-item {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }

  .hommes-history-item span {
    width: fit-content;
    margin: 0 auto;
  }

}

/* ============================================
   18. JEUNES
============================================ */

.jeunes-intro {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.jeunes-intro h2 {
  color: var(--bleu);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.jeunes-intro p {
  max-width: 900px;
  margin: 15px auto;
  line-height: 1.8;
}

.jeunes-stats {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.jeunes-stat-card {
  background: white;
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  border-top: 5px solid var(--vert);
  box-shadow: var(--ombre);
  transition: .25s;
}

.jeunes-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ombre-hover);
}

.jeunes-stat-card span {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.jeunes-stat-card h3 {
  color: var(--bleu);
  font-size: 2rem;
  margin-bottom: 10px;
}

.jeunes-stat-card p {
  margin: 0;
  color: var(--gris);
}

.jeunes-join {
  max-width: 1100px;
  margin: 70px auto;
  padding: 0 20px;
}

.jeunes-join .card {
  text-align: center;
  padding: 50px 40px;
}

.jeunes-join h2 {
  color: var(--bleu);
  margin-bottom: 20px;
}

.jeunes-join p {
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

.jeunes-join .btn {
  display: inline-block;
}

/* PAGE ÉQUIPE JEUNES */

.jeunes-page .top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 24px;
}

.jeunes-page .coach-section,
.jeunes-page .training-inline-section,
.jeunes-page .players-section,
.jeunes-page .full-card {
  background: var(--clair);
  border-left: 5px solid var(--vert);
  border-radius: var(--rayon);
  padding: 18px;
  box-shadow: var(--ombre);
}

.jeunes-page .coach-section,
.jeunes-page .training-inline-section {
  min-height: 345px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.jeunes-page .coach-section h2,
.jeunes-page .training-inline-section h2,
.jeunes-page .players-section h2,
.jeunes-page .full-card h2 {
  text-align: center;
  color: var(--bleu);
  margin-bottom: 25px;
}

/* Deux entraîneurs côte à côte */

.jeunes-page .coach-section .compact-two,
.jeunes-page .coach-section .coaches-grid,
.jeunes-page .coach-section .coach-grid,
.jeunes-page .coaches-duo {
  flex: 1;
  width: 100%;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;

  align-items: center;
}

.jeunes-page .coach-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  gap: 12px;
}

.jeunes-page .coach-card img {
  width: 95px;
  height: 115px;

  object-fit: cover;
  border-radius: 12px;

  cursor: pointer;
  transition: .30s ease;
}

.jeunes-page .coach-card img:hover {
  position: relative;
  z-index: 9999;
  transform: scale(1.8);
}

.jeunes-page .coach-card .person-info {
  width: 100%;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
}

.jeunes-page .coach-card .person-info h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

/* Entraînements jeunes */

.jeunes-page .training-grid {
  flex: 1;
  width: 100%;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  align-items: center;
}

.jeunes-page .training-box {
  padding: 16px;
  text-align: center;
  background: var(--clair);
  border-radius: 12px;
  border-left: 5px solid var(--vert);
  font-size: 15px;
}

.jeunes-page .training-box h3 {
  color: var(--bleu);
  font-size: 20px;
  margin-bottom: 10px;
}

/* Joueurs jeunes */

.jeunes-page .players-section {
  width: 100%;
  margin-top: 24px;
}

.jeunes-page .section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;

  gap: 10px;
  margin-bottom: 15px;
}

.jeunes-page .section-head h2 {
  font-size: 2rem;
  margin: 0;
}

.jeunes-page .view-buttons {
  display: flex;
  gap: 8px;
}

.jeunes-page .view-btn {
  min-width: 80px;
  padding: 8px 12px;

  background: #e8f0f8;
  color: var(--bleu);

  border-radius: 7px;

  font-size: 13px;
  text-align: center;
}

.jeunes-page .view-btn.active {
  background: var(--vert);
  color: white;
}

.jeunes-page .players-view {
  display: none;
  margin-top: 12px;
}

.jeunes-page .players-view.active {
  display: block;
}

.jeunes-page .players-list-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.jeunes-page .player-card {
  background: transparent;
  border-radius: 0;
  border-left: none;
  padding: 20px;
  min-height: 170px;
  text-align: left;
  transition: .25s;
}

.jeunes-page .player-card.player-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.jeunes-page .player-photo-wrap {
  width: 90px;
  min-width: 90px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.jeunes-page .player-photo,
.jeunes-page .player-photo-wrap img {
  width: 80px;
  height: 100px;

  object-fit: cover;

  border: 2px solid #ddd;
  border-radius: 12px;

  cursor: pointer;
  transition: .30s ease;
}

.jeunes-page .player-photo:hover {
  position: relative;
  z-index: 9999;
  transform: scale(1.8);
}

.jeunes-page .jersey-number {
  width: 66px;
  padding: 4px 6px;

  color: white;
  background: var(--bleu);

  border-radius: 999px;

  font-size: .75rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.jeunes-page .person-info {
  text-align: left;
  font-size: 14px;
  line-height: 1.35;
}

.jeunes-page .person-info h3 {
  color: var(--bleu);
  font-size: 16px;
  margin: 0 0 8px;
  text-align: left;
}

.jeunes-page .person-info p {
  margin: 4px 0;
}

.jeunes-page .player-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
}

.jeunes-page .player-details-grid p {
  margin: 2px 0;
}

.jeunes-page .player-details-grid p strong {
  white-space: nowrap;
}

/* Vue grille jeunes */

.jeunes-page .players-grid,
.jeunes-page #players-grid-view.players-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(360px, 1fr));
  gap: 14px;
}

.jeunes-page #players-grid-view .player-card {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.coaches-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  align-items: start;
}

.coaches-duo .coach-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.jeunes-page .players-list-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.jeunes-page .player-card.player-row {
  display: grid;
  grid-template-columns: 95px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 175px;
}

/* MOBILE JEUNES */

@media (max-width: 900px) {
  .jeunes-page .top-row {
    grid-template-columns: 1fr;
  }

  .jeunes-page .coach-section .compact-two,
  .jeunes-page .coach-section .coaches-grid,
  .jeunes-page .coach-section .coach-grid,
  .jeunes-page .coaches-duo,
  .jeunes-page .training-grid {
    grid-template-columns: 1fr;
  }

  .jeunes-page .players-list-cards,
  .jeunes-page .players-grid,
  .jeunes-page #players-grid-view.players-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .coaches-duo {
    grid-template-columns: 1fr;
  }

  .jeunes-page .players-list-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .jeunes-page .player-card.player-row,
  .jeunes-page #players-grid-view .player-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .jeunes-page .player-photo-wrap {
    margin: 0 auto;
  }

  .jeunes-page .person-info,
  .jeunes-page .person-info h3 {
    text-align: center;
  }

  .jeunes-page .player-details-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   19. DOCUMENTS
============================================ */

.documents-intro {
  max-width: 950px;
  margin: 60px auto 35px;
  padding: 30px;
  text-align: center;
  background: rgba(255, 255, 255, .90);
  border-radius: var(--rayon-grand);
  box-shadow: var(--ombre);
  border-top: 5px solid var(--bleu);
}

.documents-intro p {
  margin: 0;
  color: var(--gris);
  font-size: 1.1rem;
  line-height: 1.9;
}

.documents-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  gap: 12px;

  margin: 30px auto;
}

.documents-tab {
  background: var(--bleu);
  color: white;

  border-radius: 999px;

  padding: 10px 18px;
}

.documents-tab.active {
  background: var(--vert);
}

.documents-section {
  max-width: 1200px;

  margin: 50px auto;

  padding: 0 20px;
}

.documents-panel {
  display: none;
}

.documents-panel.active {
  display: block;
}

.documents-section h2 {
  margin-bottom: 30px;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

  gap: 25px;
}

.document-card {
  display: block;

  padding: 30px 22px;

  text-align: center;
  text-decoration: none;

  color: var(--fonce);

  background: white;

  border-radius: 16px;
  border-top: 5px solid var(--vert);

  box-shadow: var(--ombre);

  transition: .25s;
}

.document-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ombre-hover);
}

.card-icon {
  font-size: 2.5rem;

  margin-bottom: 15px;
}

.document-card h3 {
  margin-bottom: 12px;

  color: var(--bleu);
}

.document-card p {
  margin-bottom: 15px;

  color: var(--gris);
}

.document-card span {
  color: var(--bleu);

  font-weight: bold;
}

/* Couleurs des cartes équipes */

.document-card.p2-dames-a {
  border-top-color: #ff99cc;
  background: #fff5fa;
}

.document-card.p3-dames-b {
  border-top-color: #008E40;
  background: #f3fbf6;
}

.document-card.p4-dames-c {
  border-top-color: #8B2D2D;
  background: #faf4f4;
}

.document-card.p4-dames-d {
  border-top-color: #ff6600;
  background: #fff8f3;
}

.document-card.p2-hommes-a {
  border-top-color: #0000ff;
  background: #f4f6ff;
}

.document-card.p4-hommes-b {
  border-top-color: #948A54;
  background: #faf9f2;
}

.document-card.jeunes {
  border-top-color: #f2c94c;
  background: #fffdf5;
}

.documents-help {
  max-width: 950px;
  margin: 70px auto;
  padding: 45px 25px;
  text-align: center;

  background: #f4f9ff;
  border-radius: 20px;
  border-left: 6px solid var(--bleu);

  box-shadow: var(--ombre);
}

.documents-help h2 {
  color: var(--bleu);
  margin-bottom: 20px;
}

.documents-help p {
  max-width: 800px;
  margin: 0 auto 25px;
  line-height: 1.8;
}

.documents-help-btn {
  display: inline-block;
  background: var(--bleu);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: .25s;
}

.documents-help-btn:hover {
  background: var(--vert);
  transform: translateY(-2px);
}

/* ============================================
   20. INSCRIPTION
============================================ */

.inscription-intro,
.inscription-steps,
.inscription-public,
.inscription-equipes,
.inscription-cotisations,
.inscription-checklist,
.inscription-faq,
.inscription-contact {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.inscription-intro h2,
.inscription-steps h2,
.inscription-public h2,
.inscription-equipes h2,
.inscription-cotisations h2,
.inscription-checklist h2,
.inscription-faq h2,
.inscription-contact h2 {
  color: var(--bleu);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.inscription-intro p,
.inscription-contact p {
  max-width: 900px;
  margin: 15px auto;
  line-height: 1.8;
}

/* Photo inscription */

.inscription-banner {
  max-width: 1000px;
  margin: 30px auto;
}

.inscription-banner img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  border-radius: var(--rayon-grand);
  box-shadow: var(--ombre);
}

/* Statistiques */

.inscription-stats {
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.inscription-stat-card {
  background: white;
  border-radius: 16px;
  border-top: 5px solid var(--vert);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--ombre);
  transition: .25s;
}

.inscription-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ombre-hover);
}

.inscription-stat-card span {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.inscription-stat-card h3 {
  color: var(--bleu);
  margin-bottom: 10px;
}

/* Étapes + publics */

.steps-grid,
.public-grid,
.inscription-equipes-grid,
.cotisations-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 35px;
}

.step-card,
.public-card,
.inscription-equipe-card,
.cotisation-card,
.faq-card {
  background: white;
  border-radius: 16px;
  border-top: 5px solid var(--vert);
  padding: 30px 25px;
  box-shadow: var(--ombre);
  transition: .25s;
}

.step-card:hover,
.public-card:hover,
.inscription-equipe-card:hover,
.cotisation-card:hover,
.faq-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ombre-hover);
}

.step-number {
  width: 50px;
  height: 50px;
  margin: 0 auto 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  background: var(--bleu);
  border-radius: 50%;

  font-size: 1.4rem;
  font-weight: bold;
}

.step-card h3,
.public-card h3,
.inscription-equipe-card h3,
.cotisation-card h3,
.faq-card h3 {
  color: var(--bleu);
  margin-bottom: 12px;
}

/* Choisir son équipe */

.inscription-equipe-card a {
  display: inline-block;
  margin-top: 15px;
  color: var(--bleu);
  font-weight: bold;
  text-decoration: none;
  transition: .25s;
}

.inscription-equipe-card a:hover {
  color: var(--vert);
}

/* Cotisations */

.price {
  color: var(--vert);
  font-size: 2.2rem;
  font-weight: bold;
  margin: 15px 0;
}

.cotisation-note {
  margin-top: 25px;
  font-style: italic;
  color: var(--gris);
}

/* Checklist */

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.checklist-grid div {
  background: white;
  border-radius: var(--rayon);
  padding: 20px;
  font-weight: bold;
  box-shadow: var(--ombre);
}

/* Contact final */

.inscription-contact {
  background: var(--vert);
  border-radius: 20px;
  padding: 50px 25px;
  color: white;
  box-shadow: var(--ombre);
}

.inscription-contact h2 {
  color: white;
}

.inscription-contact .btn-primary {
  display: inline-block;
  margin-top: 20px;
  background: var(--bleu);
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: .25s;
}

.inscription-contact .btn-primary:hover {
  background: #004b8a;
  transform: translateY(-3px);
}

/* Responsive inscription */

@media (max-width: 768px) {

  .inscription-intro h2,
  .inscription-steps h2,
  .inscription-public h2,
  .inscription-equipes h2,
  .inscription-cotisations h2,
  .inscription-checklist h2,
  .inscription-faq h2,
  .inscription-contact h2 {
    font-size: 2rem;
  }

  .inscription-banner img {
    max-height: 300px;
  }

  .inscription-contact {
    margin: 50px 20px;
  }
}

/* ============================================
   21. LIENS
============================================ */

.liens-intro,
.liens-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.liens-intro h2,
.liens-section h2 {
  color: var(--bleu);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.liens-intro p {
  max-width: 900px;
  margin: 15px auto;
  color: var(--gris);
  line-height: 1.8;
}

.liens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 35px;
}

.lien-card {
  display: flex;
  flex-direction: column;
  align-items: center;

  min-height: 300px;
  padding: 32px 24px;

  text-align: center;
  text-decoration: none;
  color: var(--fonce);

  background: white;
  border-radius: 16px;
  border-top: 5px solid var(--vert);
  box-shadow: var(--ombre);

  transition: .25s ease;
}

.lien-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ombre-hover);
}

.lien-icon {
  display: block;
  margin-bottom: 18px;
  font-size: 2.8rem;
  line-height: 1;
}

.lien-card h3 {
  color: var(--bleu);
  margin-bottom: 14px;
  font-size: 1.45rem;
}

.lien-card p {
  flex: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 22px;
  color: var(--gris);
  line-height: 1.6;
}

.lien-card span:not(.lien-icon),
.lien-action {
  display: inline-block;
  margin-top: auto;
  color: var(--vert);
  font-weight: 700;
  text-decoration: none;
  transition: .25s ease;
}

.lien-card:hover span:not(.lien-icon),
.lien-card:hover .lien-action {
  color: var(--bleu);
}

/* Bloc Nos infrastructures */

.liens-info {
  max-width: 900px;
  margin: 0 auto 70px;
  padding: 40px 30px;

  text-align: center;

  background: white;
  border-radius: 16px;
  border-top: 5px solid var(--bleu);
  box-shadow: var(--ombre);
}

.liens-info h2 {
  color: var(--bleu);
  margin-bottom: 18px;
  font-size: 2.2rem;
}

.liens-info p {
  max-width: 750px;
  margin: 0 auto 28px;
  color: var(--gris);
  line-height: 1.8;
}

/* Bouton Nos infrastructures */

.liens-info .btn-primary {
  display: inline-block;
  padding: 13px 28px;

  color: white;
  background: var(--vert);

  border-radius: 12px;

  text-decoration: none;
  font-weight: 700;

  transition: .25s ease;
}

.liens-info .btn-primary:hover {
  background: var(--bleu);
  transform: translateY(-2px);
}

/* Responsive */

@media (max-width: 768px) {
  .liens-intro,
  .liens-section {
    margin: 45px auto;
  }

  .liens-intro h2,
  .liens-section h2 {
    font-size: 2rem;
  }

  .liens-grid {
    grid-template-columns: 1fr;
  }

  .lien-card {
    min-height: auto;
  }

  .liens-info {
    margin: 0 20px 60px;
    padding: 32px 22px;
  }

  .liens-info h2 {
    font-size: 1.8rem;
  }
}

/* ============================================
   22. ACTUALITÉS
============================================ */

/* Introduction */

.actualites-intro {
  max-width: 1000px;
  margin: 60px auto 40px;
  padding: 0 20px;
  text-align: center;
}

.actualites-intro h2 {
  color: var(--bleu);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.actualites-intro p {
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.08rem;
  color: var(--gris);
}

/* Actualité principale */

.actualite-main {
  max-width: 1150px;
  margin: 60px auto;
  padding: 0 20px;
}

.actualite-main-content {
  background:
    linear-gradient(rgba(0, 93, 171, .90), rgba(0, 93, 171, .90)),
    url("images/logo-ancienne-volley.png") center / 260px no-repeat;
  color: white;
  text-align: center;
  padding: 55px 45px;
  border-radius: var(--rayon-grand);
  box-shadow: var(--ombre);
}

.actualite-main-content span {
  display: inline-block;
  padding: 8px 18px;
  margin-bottom: 22px;
  background: var(--vert);
  color: white;
  border-radius: 999px;
  font-weight: bold;
}

.actualite-main-content h2 {
  color: white;
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.actualite-main-content p {
  max-width: 760px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

.actualite-main-content a {
  display: inline-block;
  padding: 13px 28px;
  background: white;
  color: var(--bleu);
  text-decoration: none;
  font-weight: bold;
  border-radius: 999px;
  transition: .25s;
}

.actualite-main-content a:hover {
  background: var(--vert);
  color: white;
}

/* Sections */

.actualites-section {
  max-width: 1200px;
  margin: 70px auto;
  padding: 0 20px;
}

.actualites-section h2 {
  text-align: center;
  color: var(--bleu);
  font-size: 2.3rem;
  margin-bottom: 35px;
}

/* Cartes */

.actualites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px;
}

.actualite-card {
  background: white;
  border-radius: var(--rayon-grand);
  border-top: 5px solid var(--vert);
  box-shadow: var(--ombre);
  padding: 35px 28px;
  text-align: center;
  transition: .25s;
}

.actualite-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ombre-hover);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 18px;
}

.actualite-date {
  color: var(--vert);
  font-weight: bold;
  margin-bottom: 12px;
}

.actualite-card h3 {
  color: var(--bleu);
  margin-bottom: 15px;
  font-size: 1.45rem;
}

.actualite-card p {
  color: var(--gris);
  line-height: 1.7;
  margin-bottom: 25px;
}

.actualite-card a {
  display: inline-block;
  padding: 12px 24px;
  background: var(--bleu);
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 999px;
  transition: .25s;
}

.actualite-card a:hover {
  background: var(--vert);
}

/* Evénement */

.actualite-event-card {
  max-width: 850px;
  margin: auto;
  background: white;
  border-radius: var(--rayon-grand);
  border-top: 5px solid var(--vert);
  box-shadow: var(--ombre);
  padding: 40px;
  text-align: center;
}

.actualite-event-card h3 {
  color: var(--bleu);
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.actualite-event-card p {
  color: var(--gris);
  line-height: 1.8;
  margin-bottom: 28px;
}

.actualite-event-card a {
  display: inline-block;
  padding: 12px 24px;
  background: var(--bleu);
  color: white;
  text-decoration: none;
  border-radius: 999px;
  font-weight: bold;
  transition: .25s;
}

.actualite-event-card a:hover {
  background: var(--vert);
}

/* Timeline */

.actualites-timeline {
  max-width: 850px;
  margin: auto;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  background: white;
  border-left: 5px solid var(--vert);
  border-radius: var(--rayon);
  padding: 25px;
  margin-bottom: 22px;
  box-shadow: var(--ombre);
}

.timeline-item .card-icon {
  flex-shrink: 0;
  font-size: 2.2rem;
  margin: 0;
}

.timeline-item span {
  display: block;
  color: var(--bleu);
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.timeline-item p {
  margin: 0;
  color: var(--gris);
  line-height: 1.7;
}

/* Responsive */

@media (max-width:768px) {

  .actualite-main-content {
    padding: 35px 25px;
  }

  .actualite-main-content h2 {
    font-size: 2rem;
  }

  .actualites-intro h2,
  .actualites-section h2 {
    font-size: 2rem;
  }

  .timeline-item {
    flex-direction: column;
    text-align: center;
  }

  .timeline-item .card-icon {
    margin: auto;
  }

}

/* ============================================
   23. ÉVÉNEMENTS
============================================ */

.evenements-intro,
.evenements-section,
.evenements-contact {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.evenements-intro h2,
.evenements-section h2,
.evenements-contact h2 {
  color: var(--bleu);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.evenements-intro p,
.evenements-contact p {
  max-width: 900px;
  margin: 15px auto;
  line-height: 1.8;
}

.evenements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 35px;
}

.evenement-card {
  overflow: hidden;
  background: var(--blanc);
  border-radius: var(--rayon-grand);
  border-top: 5px solid var(--vert);
  box-shadow: var(--ombre);
  transition: .25s;
}

.evenement-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ombre-hover);
}

.evenement-hidden {
  display: none;
}

.evenement-affiche {
  width: 100%;
  height: 280px;
  background: var(--gris-clair);
}

.evenement-affiche img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.evenement-content {
  padding: 28px 24px;
  text-align: center;
}

.evenement-badge {
  display: inline-block;
  margin-bottom: 15px;
  padding: 6px 15px;
  color: white;
  background: var(--vert);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: bold;
}

.evenement-content h3 {
  color: var(--bleu);
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.evenement-date-info,
.evenement-lieu {
  margin-bottom: 12px;
  color: var(--fonce);
  font-weight: bold;
  line-height: 1.6;
}

.evenement-content p {
  color: var(--gris);
  line-height: 1.7;
}

.evenement-btn {
  display: inline-block;
  margin-top: 22px;
  padding: 12px 24px;
  color: white;
  background: var(--bleu);
  text-decoration: none;
  font-weight: bold;
  border-radius: 999px;
  transition: .25s;
}

.evenement-btn:hover {
  background: var(--vert);
  transform: translateY(-2px);
}

.evenements-contact {
  max-width: 1000px;
  padding: 45px 25px;
  background: rgba(255, 255, 255, .92);
  border-radius: var(--rayon-grand);
  border-top: 5px solid var(--vert);
  box-shadow: var(--ombre);
}

@media (max-width: 768px) {
  .evenements-intro h2,
  .evenements-section h2,
  .evenements-contact h2 {
    font-size: 2rem;
  }

  .evenements-grid {
    grid-template-columns: 1fr;
  }

  .evenement-affiche {
    height: 240px;
  }

  .evenement-content {
    padding: 24px 18px;
  }
}

/* ============================================
   24. GALERIES
============================================ */

.galeries-slider {
  position: relative;
  max-width: 1200px;
  height: 560px;
  margin: 60px auto;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
}

.galeries-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.galeries-slider .slide.active {
  opacity: 1;
  z-index: 1;
}

.galeries-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  text-align: center;
  color: white;
  background: linear-gradient(rgba(0, 93, 171, .25), rgba(0, 93, 171, .75));
}

.slide-overlay h2 {
  color: white;
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, .45);
}

.slide-overlay p {
  max-width: 750px;
  font-size: 1.2rem;
  line-height: 1.7;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
}

.slider-dots {
  position: absolute;
  z-index: 3;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.slider-dots span {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, .55);
  border-radius: 50%;
  cursor: pointer;
  transition: .3s ease;
}

.slider-dots span.active {
  background: var(--vert);
  transform: scale(1.25);
}

/* Album mis en avant */

.galerie-featured {
  position: relative;
  max-width: 1200px;
  height: 460px;
  margin: 70px auto;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
}

.galerie-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.halloween-featured img {
  object-position: center 45%;
}

.featured-label {
  position: absolute;
  top: 18px;
  left: 24px;
  z-index: 3;
  padding: 10px 22px;
  color: white;
  background: var(--vert);
  border-radius: 999px;
  font-weight: bold;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
}

.featured-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 50px;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, .12), rgba(0, 0, 0, .72));
}

.featured-overlay span {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 18px;
  background: var(--bleu);
  color: white;
  border-radius: 999px;
  font-weight: bold;
}

.featured-overlay h2 {
  color: white;
  font-size: 3.4rem;
  margin-bottom: 22px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, .45);
}

.featured-overlay p {
  max-width: 760px;
  margin-bottom: 32px;
  font-size: 1.1rem;
  line-height: 1.7;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
}

.featured-album-btn {
  display: inline-block;
  padding: 14px 28px;
  color: white;
  background: var(--bleu);
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  transition: .3s ease;
}

.featured-album-btn:hover {
  background: var(--vert);
  transform: translateY(-3px);
}

/* Stats */

.galeries-stats {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.galerie-stat-card {
  background: white;
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  border-top: 5px solid var(--vert);
  box-shadow: 0 4px 15px rgba(0, 0, 0, .08);
  transition: .3s ease;
}

.galerie-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ombre-hover);
}

.galerie-stat-card span {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.galerie-stat-card h3 {
  color: var(--bleu);
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.galerie-stat-card p {
  color: var(--gris);
  margin: 0;
}

/* Filtres */

.galeries-filter {
  max-width: 1200px;
  margin: 70px auto 40px;
  padding: 0 20px;
  text-align: center;
}

.galeries-filter h2 {
  color: var(--bleu);
  font-size: 2.4rem;
  margin-bottom: 28px;
}

.galeries-filter-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}

.filter-btn {
  min-width: 90px;
  padding: 13px 24px;
  border: 2px solid var(--vert);
  border-radius: 999px;
  background: white;
  color: var(--bleu);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: .3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}

.filter-btn:hover {
  background: var(--vert);
  color: white;
  transform: translateY(-3px);
}

.filter-btn.active {
  background: var(--bleu);
  border-color: var(--bleu);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 93, 171, .30);
}

.galeries-empty-message {
  display: none;
  max-width: 850px;
  margin: 40px auto;
  padding: 35px 25px;
  text-align: center;
  background: white;
  border-radius: var(--rayon-grand);
  border-top: 5px solid var(--vert);
  box-shadow: 0 4px 15px rgba(0, 0, 0, .08);
}

.galeries-empty-message span {
  display: block;
  font-size: 3rem;
  margin-bottom: 12px;
}

.galeries-empty-message h3 {
  color: var(--bleu);
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.galeries-empty-message p {
  color: var(--gris);
  line-height: 1.7;
}

/* Albums */

.galeries-albums {
  max-width: 1200px;
  margin: 70px auto;
  padding: 0 20px;
}

.galeries-year-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 35px;
}

.galeries-year-title span {
  width: 90px;
  height: 3px;
  background: var(--vert);
  border-radius: 12px;
}

.galeries-year-title h2 {
  color: var(--bleu);
  font-size: 2.5rem;
  margin: 0;
  text-align: center;
}

.galeries-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.galerie-card {
  background: white;
  border-radius: var(--rayon-grand);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .08);
  transition: .3s ease;
}

.galerie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

.galerie-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.galerie-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(transparent 35%, rgba(0, 0, 0, .75));
}

.galerie-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s ease;
}

.galerie-card:hover .galerie-card-image img {
  transform: scale(1.06);
}

.galerie-image-title {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  color: white;
}

.galerie-image-title h3 {
  color: white;
  font-size: 1.6rem;
  margin: 0 0 5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
}

.galerie-image-title p {
  margin: 0;
  opacity: .95;
}

.galerie-card-content {
  padding: 25px;
}

.galerie-card-content p {
  color: var(--gris);
  line-height: 1.6;
  margin-bottom: 18px;
}

.galerie-card-content strong {
  color: var(--vert);
}

/* Archives preview */

.galeries-archives-preview {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.archives-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
}

.archives-content {
  background: white;
  border-radius: 20px;
  border-top: 5px solid var(--vert);
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .08);
  text-align: center;
}

.archives-content span {
  display: inline-block;
  background: var(--vert);
  color: white;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}

.archives-content h2 {
  color: var(--bleu);
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.archives-content p {
  color: var(--gris);
  line-height: 1.8;
  margin-bottom: 30px;
}

.archives-btn,
.galeries-share-btn {
  display: inline-block;
  background: var(--bleu);
  color: white;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 35px;
  font-weight: bold;
  transition: .3s ease;
}

.archives-btn:hover,
.galeries-share-btn:hover {
  background: var(--vert);
  color: white;
  transform: translateY(-3px);
}

/* Partage photos */

.galeries-share {
  max-width: 900px;
  margin: 80px auto;
  padding: 45px 30px;
  text-align: center;
  background: white;
  border-radius: 20px;
  border-top: 5px solid var(--vert);
  box-shadow: 0 4px 15px rgba(0, 0, 0, .08);
}

.galeries-share h2 {
  color: var(--bleu);
  font-size: 2.3rem;
  margin-bottom: 20px;
}

.galeries-share p {
  color: var(--gris);
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Responsive */

@media (max-width: 900px) {
  .galeries-archives-preview {
    grid-template-columns: 1fr;
  }

  .archives-image img {
    height: 260px;
  }
}

@media (max-width: 800px) {
  .galeries-slider {
    height: 390px;
    margin: 40px 20px;
  }

  .slide-overlay {
    padding: 25px;
  }

  .slide-overlay h2 {
    font-size: 2rem;
  }

  .slide-overlay p {
    font-size: 1rem;
  }

  .galerie-featured {
    height: 390px;
    margin: 50px 20px;
  }

  .featured-overlay {
    padding: 30px;
  }

  .featured-overlay h2 {
    font-size: 2.2rem;
  }

  .galeries-grid {
    grid-template-columns: 1fr;
  }

  .galeries-year-title span {
    width: 45px;
  }

  .galeries-year-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 520px) {
  .galeries-slider {
    height: 340px;
  }

  .galerie-featured {
    height: 360px;
  }

  .featured-label {
    left: 15px;
    right: 15px;
    text-align: center;
  }

  .featured-overlay h2 {
    font-size: 2rem;
  }

  .filter-btn {
    min-width: 76px;
    padding: 10px 16px;
    font-size: .95rem;
  }

  .archives-content,
  .galeries-share {
    padding: 30px 22px;
  }
}

/* ============================================
   25. Archives
============================================ */

.archives-intro {
  max-width: 1000px;
  margin: 60px auto 40px;
  padding: 0 20px;
  text-align: center;
}

.archives-intro h2 {
  color: #005dab;
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.archives-intro p {
  max-width: 850px;
  margin: 0 auto;
  color: #555;
  line-height: 1.8;
}

.archives-filter {
  max-width: 1200px;
  margin: 40px auto 60px;
  padding: 0 20px;
  text-align: center;
}

.archives-filter h2 {
  color: #005dab;
  font-size: 2.3rem;
  margin-bottom: 30px;
}

.archives-filter-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}

.archive-filter-btn {
  min-width: 86px;
  padding: 13px 24px;
  border: 2px solid #72bf44;
  border-radius: 999px;
  background: white;
  color: #005dab;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: .3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}

.archive-filter-btn:hover {
  transform: translateY(-3px);
  background: #72bf44;
  color: white;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .15);
}

.archive-filter-btn.active {
  background: #005dab;
  border-color: #005dab;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 93, 171, .30);
}

.archives-summary {
  margin-top: 30px;
  text-align: center;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
}

.archives-summary strong {
  color: #005dab;
}

.archives-timeline {
  max-width: 1200px;
  margin: 60px auto 90px;
  padding: 0 20px;
}

.archives-year {
  position: relative;
  margin-bottom: 70px;
  padding-left: 35px;
  border-left: 4px solid #72bf44;
  animation: archiveFade .35s ease;
}

.archives-year h2 {
  display: inline-block;
  background: #005dab;
  color: white;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: left;
  box-shadow: 0 6px 18px rgba(0, 93, 171, .25);
}

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

.archive-card {
  background: white;
  border-radius: var(--rayon-grand);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border-top: 5px solid #72bf44;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .08);
  transition: .3s ease;
}

.archive-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

.archive-card-image {
  height: 190px;
  overflow: hidden;
}

.archive-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s ease;
}

.archive-card:hover .archive-card-image img {
  transform: scale(1.06);
}

.archive-card-content {
  padding: 22px;
}

.archive-card-content h3 {
  color: #005dab;
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.archive-card-content strong {
  color: #72bf44;
}

@keyframes archiveFade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .archive-filter-buttons {
    gap: 12px;
  }

  .archive-filter-btn {
    min-width: 72px;
    padding: 10px 18px;
    font-size: .95rem;
  }

  .archives-year {
    padding-left: 20px;
  }

  .archives-year h2 {
    font-size: 1.7rem;
  }
}

/* ============================================
   26. CALENDRIER
============================================ */

.table-wrapper {
  width: 100%;

  overflow-x: auto;
  overflow-y: visible;

  font-size: 12px;
}

/* Permet aux détails des scores de dépasser du tableau sur PC */
@media (min-width: 901px) {
  main > .wide-table-section .table-wrapper {
    overflow: visible;
  }
}

.season-table,
.ranking-table {
  width: 100%;

  border-collapse: collapse;
}

.season-table th,
.season-table td,
.ranking-table th,
.ranking-table td {
  padding: 6px 7px;

  text-align: center;
  vertical-align: middle;

  border: 1px solid var(--bordure);
}

.season-table th,
.ranking-table th {
  color: white;
  background: var(--bleu);
}

.season-table td:first-child,
.ranking-table td:first-child {
  font-weight: bold;
}

/* Sections tableaux larges */

.section:has(.ranking-table),
.section:has(.calendar-table),
main>.wide-table-section {
  max-width: none;

  width: 100%;

  margin-left: 0;
  margin-right: 0;

  padding-left: 22px;
  padding-right: 22px;
}

main>.wide-table-section .full-card,
main>.wide-table-section .editable {
  max-width: none;

  width: 100%;

  margin-left: 0;
  margin-right: 0;
}

/* Calendrier équipes */

main>.wide-table-section .calendar-table {
  width: 100%;
  min-width: 0;

  table-layout: auto;
  border-collapse: collapse;

  font-size: 16px;
}

main>.wide-table-section .calendar-table th,
main>.wide-table-section .calendar-table td {
  padding: 8px 5px;

  text-align: center;
  vertical-align: middle;

  font-size: .88rem;
  line-height: 1.2;

  white-space: nowrap;
  overflow-wrap: anywhere;
}

main>.wide-table-section .calendar-table th:nth-child(2),
main>.wide-table-section .calendar-table td:nth-child(2),
main>.wide-table-section .calendar-table th:nth-child(3),
main>.wide-table-section .calendar-table td:nth-child(3) {
  width: 6%;
}

main>.wide-table-section .calendar-table th:nth-child(7),
main>.wide-table-section .calendar-table td:nth-child(7) {
  width: 31%;

  white-space: normal;
}

/* Classements */

.ranking-table.full-column-colors {
  width: 100%;
  min-width: 0;

  table-layout: auto;

  font-size: 14px;
}

.ranking-table.full-column-colors th,
.ranking-table.full-column-colors td {
  padding: 5px 3px;

  line-height: 1.15;
  white-space: nowrap;
}

.ranking-table.full-column-colors th:nth-child(1),
.ranking-table.full-column-colors td:nth-child(1) {
  width: 42px;
}

.ranking-table.full-column-colors th:nth-child(2),
.ranking-table.full-column-colors td:nth-child(2) {
  width: 24%;

  text-align: left;
  white-space: normal;
}

.ranking-table.full-column-colors th:nth-child(n+3),
.ranking-table.full-column-colors td:nth-child(n+3) {
  width: 5.2%;
}

/* Couleurs colonnes classement */

.full-column-colors .col-jo,
.full-column-colors th:nth-child(3),
.full-column-colors td:nth-child(3) {
  color: var(--fonce);
  background: #d9eaf7;
}

.full-column-colors .col-ga,
.full-column-colors th:nth-child(4),
.full-column-colors td:nth-child(4) {
  color: var(--fonce);
  background: #A9D08E;
}

.full-column-colors .col-g3,
.full-column-colors th:nth-child(5),
.full-column-colors td:nth-child(5) {
  color: var(--fonce);
  background: #C6E0B4;
}

.full-column-colors .col-g2,
.full-column-colors th:nth-child(6),
.full-column-colors td:nth-child(6) {
  color: var(--fonce);
  background: #E2EFDA;
}

.full-column-colors .col-p1,
.full-column-colors th:nth-child(7),
.full-column-colors td:nth-child(7) {
  color: var(--fonce);
  background: #F6B8C5;
}

.full-column-colors .col-p0,
.full-column-colors th:nth-child(8),
.full-column-colors td:nth-child(8) {
  color: white;
  background: #EC6E89;
}

.full-column-colors .col-pe,
.full-column-colors th:nth-child(9),
.full-column-colors td:nth-child(9) {
  color: white;
  background: #CB1B41;
}

.full-column-colors .col-ff,
.full-column-colors th:nth-child(10),
.full-column-colors td:nth-child(10) {
  color: var(--fonce);
  background: #f2f2f2;
}

.full-column-colors .col-sp,
.full-column-colors th:nth-child(11),
.full-column-colors td:nth-child(11) {
  color: var(--fonce);
  background: #eaf4ff;
}

.full-column-colors .col-sm,
.full-column-colors th:nth-child(12),
.full-column-colors td:nth-child(12) {
  color: var(--fonce);
  background: #eef2f7;
}

.full-column-colors .col-pp,
.full-column-colors th:nth-child(13),
.full-column-colors td:nth-child(13) {
  color: var(--fonce);
  background: #e9f7e4;
}

.full-column-colors .col-pm,
.full-column-colors th:nth-child(14),
.full-column-colors td:nth-child(14) {
  color: var(--fonce);
  background: #fde8ee;
}

.full-column-colors .col-coef,
.full-column-colors th:nth-child(15),
.full-column-colors td:nth-child(15) {
  color: var(--fonce);
  background: #fff2cc;
}

.ranking-table tr.club-highlight td {
  font-weight: 700;

  border-top: 2px solid var(--bleu);
  border-bottom: 2px solid var(--bleu);
}

.ranking-table tr.club-highlight td:first-child,
.ranking-table tr.club-highlight td:nth-child(2) {
  background-color: rgba(0, 93, 171, .08);
}

/* Score hover */

.score-hover {
  position: relative;
  z-index: 9999;

  display: inline-block;

  color: var(--bleu);

  font-weight: 900;

  cursor: pointer;

  border-bottom: 1px dotted var(--bleu);
}

.score-hover:hover::after {
  content: attr(data-sets);

  position: absolute;
  right: 110%;
  top: 50%;

  width: 260px;

  padding: 14px 18px;

  color: #111;
  background: white;

  border: 2px solid var(--bleu);
  border-radius: 12px;

  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);

  transform: translateY(-50%);

  font-size: 15px;
  font-weight: 600;
  line-height: 1.8;
  text-align: left;
  white-space: pre-line;
}

/* Les 2 derniers scores s'ouvrent vers le haut */
.calendar-table tbody tr:nth-last-child(-n+2) .score-hover:hover::after {
  top: auto;
  bottom: 50%;
  transform: none;
}

.score-hover.score-win {
  color: #1f9d45;
}

.score-hover.score-loss {
  color: #d62828;
}

/* Liens Google Maps */

.map-link {
  display: inline-block;

  color: inherit;
  text-decoration: none;
  font-weight: inherit;

  cursor: pointer;

  transition: .25s;
}

.map-link:hover {
  transform: scale(1.15);
  opacity: .75;
}

/* Page calendrier du club */

.club-calendar-page {
  background: #252525 !important;
  color: white;
  border-top: 5px solid var(--vert);
}

.club-calendar-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 30px;
  align-items: start;
}

.club-calendar-panel {
  margin-bottom: 30px;
}

.club-calendar-panel h2,
.club-calendar-right h2 {
  color: white;
  text-align: left !important;
  font-size: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.club-calendar-panel h2::after,
.club-calendar-right h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, .18);
}

.selected-events {
  min-height: 60px;
  color: #ddd;
}

/* Mini calendrier */

.mini-calendar {
  background: #111;
  border: 1px solid #333;
  width: 100%;
}

.mini-calendar-header {
  display: grid;
  grid-template-columns: 45px 1fr 45px;
  align-items: center;
  background: #0d0d0d;
}

.mini-calendar-header button {
  background: transparent;
  border-radius: 0;
  color: white;
  padding: 10px;
  font-size: 18px;
}

.month-title {
  font-size: 16px !important;
  font-weight: normal !important;
}

.mini-calendar-days,
.mini-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.mini-calendar-days div {
  background: #151515;
  color: white;
  text-align: center;
  font-size: 11px;
  padding: 7px 2px;
  border: 1px solid #2a2a2a;
}

.mini-day {
  min-height: 130px;
  background: #202020;
  color: white;
  border: 1px solid #2f2f2f;
  padding: 5px;
  border-radius: 0;
  font-size: 12px;
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;

  overflow-y: auto;
}

.mini-day span {
  display: block;
  width: 100%;
  text-align: left;
  font-weight: bold;
  margin-bottom: 4px;

  position: sticky;
  top: 0;
  background: #202020;
  z-index: 2;
}

.mini-day.empty {
  background: #1a1a1a;
  pointer-events: none;
}

.mini-day.has-event {
  cursor: pointer;
}

.mini-day:hover,
.mini-day.selected-day {
  background: #2f3f55;
}

.mini-day.selected-day {
  outline: 3px solid var(--vert);
  outline-offset: -3px;
}

.mini-day small {
  display: block;
  width: 100%;
  font-size: 9px;
  line-height: 1;
  padding: 2px 4px;
  margin: 1px 0;
  border-radius: 2px;
  color: white;
}

.mini-day::-webkit-scrollbar {
  width: 4px;
}

.mini-day::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 12px;
}

/* Bouton retour */

.today-calendar-btn {
  width: 100%;
  margin-bottom: 12px;
  background: var(--vert);
  color: white;
  border-radius: 12px;
  padding: 10px;
  font-weight: bold;
}

/* Légende */

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 12px;
  color: white;
  font-size: 13px;
}

.legend-dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  margin-right: 5px;
}

.legend-event-dot {
  background: #ff0000;
}

/* Cartes agenda */

.agenda-card {
  background: white;
  color: var(--fonce);
  border-left: 5px solid var(--bleu);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
}

.agenda-card.training {
  border-left-color: var(--vert);
}

.agenda-card summary {
  cursor: pointer;
  font-weight: bold;
  color: var(--bleu);
  display: grid;
  gap: 4px;
}

.agenda-summary-team {
  font-size: 16px;
  font-weight: 800;
}

.agenda-summary-date,
.agenda-summary-time {
  font-size: 13px;
  color: #444;
}

.agenda-details {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #d7e0ea;
}

.calendar-event-link {
  display: inline-block;
  margin-top: 8px;
  color: #005dab;
  font-weight: bold;
  text-decoration: none;
}

.calendar-event-link:hover {
  color: #72bf44;
}

/* Timeline calendrier */

.calendar-timeline-day {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.calendar-timeline-date {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #3a3a3a;
  color: white;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  font-weight: bold;
  border: 3px solid rgba(255, 255, 255, .12);
}

.calendar-timeline-date strong {
  font-size: 28px;
  line-height: 1;
}

.calendar-timeline-date span {
  font-size: 13px;
  opacity: .8;
}

.calendar-timeline-events h3 {
  color: white;
  margin-bottom: 10px;
  font-size: 18px;
  text-transform: capitalize;
}

.calendar-timeline-events .agenda-card {
  margin-bottom: 8px;
}

/* Liens agenda Google / Apple */

.calendar-subscribe-links {
  margin-top: 14px;
  font-size: 12px;
  color: #ddd;
  text-align: center;
}

.calendar-subscribe-links p {
  margin-bottom: 5px;
}

.calendar-subscribe-links a {
  color: var(--vert);
  font-weight: bold;
  text-decoration: none;
}

.calendar-subscribe-links a:hover {
  text-decoration: underline;
}

/* Responsive */

@media (max-width: 900px) {
  .club-calendar-layout {
    grid-template-columns: 1fr;
  }

  .club-calendar-panel h2,
  .club-calendar-right h2 {
    font-size: 24px;
  }
}

@media (max-width: 700px) {
  .calendar-timeline-day {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .calendar-timeline-date {
    width: 58px;
    height: 58px;
  }

  .mini-day {
    min-height: 95px;
  }

  .mini-day small {
    font-size: 8px;
  }
}

/* ============================================
   CLASSEMENT ÉQUIPES - MOBILE
============================================ */

@media (max-width: 700px) {

  .ranking-section {
    width: 100%;
    overflow: hidden;
  }

  .ranking-section .table-wrapper {
    display: block;
    width: 100%;
    max-width: 100%;

    overflow-x: auto;
    overflow-y: hidden;

    -webkit-overflow-scrolling: touch;
  }

  .ranking-section .ranking-table.full-column-colors {
    width: 1100px;
    min-width: 1100px;
    max-width: none;

    table-layout: fixed;
    font-size: 12px;
  }

  .ranking-section .ranking-table.full-column-colors th,
  .ranking-section .ranking-table.full-column-colors td {
    padding: 7px 5px;

    text-align: center;
    vertical-align: middle;

    white-space: nowrap;
    word-break: normal;
    overflow-wrap: normal;
  }

  .ranking-section .ranking-table.full-column-colors th:nth-child(1),
  .ranking-section .ranking-table.full-column-colors td:nth-child(1) {
    width: 60px;
  }

  .ranking-section .ranking-table.full-column-colors th:nth-child(2),
  .ranking-section .ranking-table.full-column-colors td:nth-child(2) {
    width: 230px;

    text-align: left;
    white-space: nowrap;
  }

  .ranking-section .ranking-table.full-column-colors th:nth-child(n+3),
  .ranking-section .ranking-table.full-column-colors td:nth-child(n+3) {
    width: 62px;
  }
}

/* ============================================
   27. SPONSORS
============================================ */

.sponsors-intro {
  max-width: 850px;

  margin: 0 auto 30px;

  text-align: center;

  font-size: 18px;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 22px;
}

.sponsor-card {
  padding: 22px;

  text-align: center;

  background: white;

  border-left: 5px solid var(--vert);
  border-radius: 16px;

  box-shadow: 0 6px 18px rgba(0, 0, 0, .10);

  transition: .25s ease;
}

.sponsor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ombre-hover);
}

.sponsor-logo {
  display: block;

  width: 150px;
  height: 95px;

  margin: 0 auto 14px;

  object-fit: contain;

  background: #f8fbff;

  border-radius: 12px;

  padding: 10px;

  transition: .25s ease;
}

.sponsor-type {
  display: inline-block;

  margin-bottom: 10px;

  padding: 5px 12px;

  color: var(--bleu);
  background: #e8f0f8;

  border-radius: 999px;

  font-size: 13px;
  font-weight: 800;
}

.sponsor-card h3 {
  margin: 8px 0;

  font-size: 22px;
}

.sponsor-card p {
  margin: 8px 0 18px;
}

.sponsor-btn {
  display: inline-block;

  padding: 10px 18px;

  color: white;
  background: var(--bleu);

  text-decoration: none;
  font-weight: 800;

  border-radius: 12px;
}

.sponsor-btn:hover {
  background: var(--vert);
}

.sponsor-call-card {
  max-width: 800px;

  margin: 25px auto 0;

  padding: 40px;

  text-align: center;

  border-top: 5px solid var(--vert);
}

.sponsor-call-card h2 {
  color: var(--bleu);

  font-size: 2rem;

  margin-bottom: 20px;
}

.sponsor-call-card p {
  margin-bottom: 15px;

  line-height: 1.8;
}

.sponsor-call-card .sponsor-btn {
    display: inline-block;
    margin-bottom: 30px;
}

/* ============================================
    28. INFOS
============================================ */

.infos-links {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.infos-links h2 {
  color: var(--bleu);
  font-size: 2.5rem;
  margin-bottom: 40px;
}

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

.info-card {
  background: var(--blanc);
  border-radius: 16px;
  border-top: 5px solid var(--vert);
  padding: 35px 25px;
  text-align: center;
  text-decoration: none;
  color: var(--fonce);
  box-shadow: var(--ombre);
  transition: .25s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ombre-hover);
}

.info-card span {
  display: block;
  font-size: 3rem;
  margin-bottom: 15px;
}

.info-card h3 {
  color: var(--bleu);
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.info-card p {
  color: var(--gris);
  line-height: 1.6;
}

/* Statistiques */

.infos-stats {
  max-width: 1100px;
  margin: 60px auto 70px;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.infos-stat-card {
  background: var(--blanc);
  border-radius: 16px;
  border-top: 5px solid var(--vert);
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--ombre);
  transition: .25s ease;
}

.infos-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ombre-hover);
}

.infos-stat-card span {
  display: block;
  font-size: 2.6rem;
  margin-bottom: 15px;
}

.infos-stat-card h3 {
  color: var(--bleu);
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.infos-stat-card p {
  margin: 0;
  color: var(--gris);
}

/* Responsive */

@media (max-width: 1000px) {

  .infos-grid,
  .infos-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .infos-links {
    margin: 45px auto;
  }

  .infos-links h2 {
    font-size: 2rem;
  }

  .infos-grid,
  .infos-stats {
    grid-template-columns: 1fr;
  }

  .info-card,
  .infos-stat-card {
    padding: 28px 20px;
  }
}

/* ============================================
   29. RESPONSIVE GÉNÉRAL
============================================ */

@media (max-width: 1100px) {
  .team-side-layout {
    grid-template-columns: 1fr;
  }

  .players-grid {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }
}

@media (max-width: 1000px) {

  .menu-toggle {
    display: block;
  }

  .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    background: var(--bleu);

    flex-direction: column;
    align-items: stretch;

    padding: 10px 20px 20px;

    z-index: 9999;
  }

  .menu.active {
    display: flex;
  }

  .dropdown>ul,
  .subdropdown>ul {
    display: none !important;
  }

}

@media (max-width: 900px) {

  .team-layout,
  .training-grid,
  .compact-two,
  .two-trainings,
  .top-row,
  .club-calendar-layout {
    grid-template-columns: 1fr;
  }

  .top-row .coach-section,
  .top-row .training-inline-section {
    width: 100%;
    max-width: 100%;
    min-height: auto;
  }

  .players-list-cards,
  #players-grid-view.players-grid,
  .home-calendar-list {
    grid-template-columns: 1fr;
  }

  #players-grid-view .player-card {
    grid-template-columns: 1fr;
  }

  #players-grid-view .player-photo-wrap {
    margin: auto;
  }

  .player-details-grid {
    grid-template-columns: 1fr;
  }

  .calendar-table,
  main>.wide-table-section .calendar-table {
    min-width: 850px;
  }

  .ranking-table,
  .ranking-table.full-column-colors {
    min-width: 900px;
  }

  .club-calendar-panel h2,
  .club-calendar-right h2 {
    font-size: 24px;
  }

  .score-hover:hover::after {
    position: fixed;

    left: 50%;
    right: auto;
    top: 50%;

    width: 85vw;
    min-width: 0;

    transform: translate(-50%, -50%);
  }
}

@media (max-width: 768px) {
  .home-hero {
    min-height: auto;
    padding: 70px 20px;
  }

  .home-hero-logo {
    width: 190px;
  }

  .team-photo-slide img {
    height: 360px;
  }

  .footer-sponsors-slider {
    gap: 18px;
  }

  .footer-sponsors-slider img {
    height: 55px;
    max-width: 120px;
  }

  .modern-timeline::before {
    left: 14px;
  }

  .modern-timeline .timeline-item,
  .modern-timeline .timeline-item:nth-child(odd),
  .modern-timeline .timeline-item:nth-child(even) {
    width: 100%;
    left: 0;

    padding: 0 0 35px 45px;

    text-align: left;
  }

  .modern-timeline .timeline-item::before,
  .modern-timeline .timeline-item:nth-child(odd)::before,
  .modern-timeline .timeline-item:nth-child(even)::before {
    left: 2px;
    right: auto;
  }
}

@media (max-width: 700px) {
  .section-head h2 {
    width: 100%;

    text-align: center;
  }

  .view-buttons {
    width: 100%;

    justify-content: center;
  }

  .player-card.player-row {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .salles-grid {
    grid-template-columns: 1fr;
  }

  .success-timeline {
    padding-left: 0;
  }

  .success-timeline::before {
    display: none;
  }

  .success-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .success-year {
    padding-right: 0;

    text-align: left;
  }

    main > .wide-table-section .table-wrapper {
    display: block;
    width: 100%;

    overflow-x: auto;
    overflow-y: hidden;

    -webkit-overflow-scrolling: touch;
  }

    main > .wide-table-section .season-table.calendar-table {
    display: table;

    width: 1200px;
    min-width: 1200px;
    max-width: none;

    table-layout: fixed;
    border-collapse: collapse;
  }

  main > .wide-table-section .calendar-table th,
  main > .wide-table-section .calendar-table td {
    height: auto;
    min-height: 48px;

    padding: 8px 5px;

    font-size: 11px;
    line-height: 1.25;

    text-align: center;
    vertical-align: middle;

    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;

    overflow: hidden;
    text-overflow: clip;
  }

  /* Date */

  main > .wide-table-section .calendar-table th:nth-child(1),
  main > .wide-table-section .calendar-table td:nth-child(1) {
    width: 100px;
    white-space: nowrap;
  }

  /* Heures */

  main > .wide-table-section .calendar-table th:nth-child(2),
  main > .wide-table-section .calendar-table td:nth-child(2),
  main > .wide-table-section .calendar-table th:nth-child(3),
  main > .wide-table-section .calendar-table td:nth-child(3) {
    width: 75px;
    white-space: nowrap;
  }

  /* Équipes */

  main > .wide-table-section .calendar-table th:nth-child(4),
  main > .wide-table-section .calendar-table td:nth-child(4),
  main > .wide-table-section .calendar-table th:nth-child(5),
  main > .wide-table-section .calendar-table td:nth-child(5) {
    width: 220px;

    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
  }

  /* Salle */

  main > .wide-table-section .calendar-table th:nth-child(6),
  main > .wide-table-section .calendar-table td:nth-child(6) {
    width: 180px;

    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
  }

  /* Adresse */

  main > .wide-table-section .calendar-table th:nth-child(7),
  main > .wide-table-section .calendar-table td:nth-child(7) {
    width: 250px;
    min-width: 250px;
    max-width: 250px;

    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
  }

  main > .wide-table-section .calendar-table td:nth-child(7) br {
    display: initial;
  }

  main > .wide-table-section .calendar-table td:nth-child(7) .map-link {
    display: block;

    width: 100%;
    max-width: none;

    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;

    overflow: visible;
    text-overflow: clip;
  }

  /* Score */

  main > .wide-table-section .calendar-table th:nth-child(8),
  main > .wide-table-section .calendar-table td:nth-child(8) {
    width: 80px;
    white-space: nowrap;
  }
}

@media (max-width: 650px) {
  .home-sponsors-slider {
    grid-template-columns: repeat(2, 1fr);
  }

  .sponsors-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand {
    gap: 10px;

    font-size: 18px;
  }

  .brand img {
    width: 75px;
  }

  .page-title h1 {
    font-size: 2.4rem;
  }

  .view-buttons {
    flex-direction: column;
  }

  .view-btn {
    width: 100%;
  }

  .players-grid,
  #players-grid-view.players-grid {
    grid-template-columns: 1fr;
  }

  .player-row {
    grid-template-columns: 58px 1fr;
  }

  .section-head h2 {
    font-size: 22px;
  }
}

/* ============================================
   29. ANIMATIONS ET UTILITAIRES
============================================ */

.fade-in {
  animation: fadeIn .4s ease both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hidden {
  display: none;
}

.text-center {
  text-align: center;
}

.no-scroll {
  overflow: hidden;
}

.playoff-disabled {
  background: #999;
  cursor: not-allowed;
  opacity: .7;
}

.table-switch {
  display: flex;
  justify-content: center;

  gap: 10px;

  margin: 15px 0 20px;
}

.switch-btn {
  padding: 10px 18px;

  color: white;
  background: var(--bleu);

  border-radius: 20px;

  font-weight: bold;
}

.switch-btn.active {
  background: var(--vert);
}

.switch-content {
  display: none;
}

.switch-content.active {
  display: block;
}

/* ============================================
   30. CORRECTIONS FINALES TEMPORAIRES
============================================ */

.help-text {
  margin: 8px 0;

  color: #61758a;

  text-align: center;

  font-size: 12px;
  line-height: 1.35;
}

.calendar-info-card {
  margin-top: 25px;

  line-height: 1.6;
}

.calendar-info-card a {
  color: var(--bleu);

  font-weight: bold;
}

.calendar-link {
  padding: 10px;

  background: #f3f6fa;

  border-radius: 6px;

  word-break: break-all;
}

.calendar-warning {
  margin-top: 15px;

  font-weight: bold;
}

.selected-events,
.next-events {
  min-height: 60px;

  color: #ddd;
}

.mini-day::-webkit-scrollbar {
  width: 4px;
}

.mini-day::-webkit-scrollbar-thumb {
  background: #555;

  border-radius: 12px;
}

.calendar-subscribe-links {
  margin-top: 14px;

  color: #ddd;

  text-align: center;

  font-size: 12px;
}

.calendar-subscribe-links p {
  margin-bottom: 5px;
}

.calendar-subscribe-links a {
  color: var(--vert);

  font-weight: bold;
  text-decoration: none;
}

.calendar-subscribe-links a:hover {
  text-decoration: underline;
}

/* CORRECTION FINALE MENU MOBILE */

@media (max-width: 1000px) {
  .navbar {
    position: relative;
  }

  .menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .menu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    width: 100%;
    background: var(--bleu);

    flex-direction: column;
    align-items: stretch;

    padding: 10px 20px 20px;
    z-index: 9999;
  }

  .menu.active {
    display: flex !important;
  }

  .menu ul {
    display: none !important;
  }
}

/* CORRECTION FINALE MENU MOBILE */
@media (max-width: 1000px) {
  .menu {
    display: none !important;
  }

  .menu.active {
    display: flex !important;
  }
}

/* CORRECTION LARGEUR TIMELINE HISTORIQUE */

.modern-timeline .timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
}

.modern-timeline .timeline-item:nth-child(even) .timeline-content {
  margin-right: auto;
}

/* CORRECTIONS MOBILE / TABLETTE - 6 POINTS */

@media (max-width: 1000px) {
  .navbar {
    position: relative;
  }

  .menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .menu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--bleu);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 20px 20px;
    z-index: 9999;
  }

  .menu.active {
    display: flex !important;
  }

  .menu ul {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .team-photo-slide::after {
    display: none;
  }

  .team-photo-caption {
    gap: 12px;
  }

  .footer-sitemap-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .footer-sitemap {
    overflow: visible;
  }

  .sponsors-intro {
    max-width: 360px;
    padding: 0 18px;
    line-height: 1.7;
  }
}

@media (max-width: 600px) {
  .info-card .btn,
  .info-card a {
    width: auto;
    max-width: 100%;
    font-size: 18px;
    padding: 12px 22px;
    line-height: 1.2;
  }
}

@media (max-width: 480px) {
  .footer-sitemap-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   31. FENÊTRE POP-UP
============================================ */

body.popup-open {
  overflow: hidden;
}

.club-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 32px 18px;
  background: rgba(0, 0, 0, .68);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  overflow-y: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}

.club-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.club-popup {
  position: relative;
  width: 100%;
  max-width: 500px;
  max-height: calc(150vh - 64px);
  overflow-y: hidden;
  overflow-x: hidden;
  background: white;
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .38);
  transform: translateY(18px) scale(.94);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}

.club-popup-overlay.active .club-popup {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.club-popup-close {
  position: sticky;
  top: 14px;
  left: calc(100% - 56px);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 14px 14px -56px auto;
  padding: 0;
  color: var(--bleu);
  background: rgba(255, 255, 255, .96);
  border: none;
  border-radius: 50%;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
  cursor: pointer;
  transition: .25s ease;
}

.club-popup-close:hover {
  color: white;
  background: var(--bleu);
  transform: rotate(90deg);
}

.club-popup-image {
  display: none;
  width: 100%;
  height: 275px;
  overflow: hidden;
  background: var(--gris-clair);
}

.club-popup-image.active {
  display: block;
}

.club-popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.club-popup-content {
  padding: 38px 42px 42px;
  text-align: center;
}

.club-popup-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 18px;
  color: white;
  background: var(--vert);
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 800;
}

.club-popup-content h2 {
  margin-bottom: 18px;
  color: var(--bleu);
  font-size: clamp(1.7rem, 4vw, 2.25rem);
  line-height: 1.15;
}

.club-popup-content p {
  max-width: 620px;
  margin: 0 auto 30px;
  color: var(--gris);
  font-size: 1.05rem;
  line-height: 1.75;
}

.club-popup-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  margin-bottom: 26px;
  padding: 14px 30px;
  color: white;
  background: var(--bleu);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: .25s ease;
}

.club-popup-button:hover {
  background: var(--vert);
  transform: translateY(-3px);
}

.club-popup-button.hidden {
  display: none;
}

.club-popup-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gris);
  font-size: .95rem;
  cursor: pointer;
}

.club-popup-checkbox input {
  width: 18px;
  height: 18px;

  cursor: pointer;
}

/* Types de pop-up */

.club-popup-overlay.popup-type-event .club-popup-badge {
  background: var(--vert);
}

.club-popup-overlay.popup-type-event .club-popup-button {
  background: var(--bleu);
}

.club-popup-overlay.popup-type-match .club-popup-badge,
.club-popup-overlay.popup-type-match .club-popup-button {
  background: #ff6600;
}

.club-popup-overlay.popup-type-important .club-popup-badge,
.club-popup-overlay.popup-type-important .club-popup-button {
  background: #d93025;
}

.club-popup-overlay.popup-type-recruitment .club-popup-badge,
.club-popup-overlay.popup-type-recruitment .club-popup-button {
  background: var(--bleu);
}

.club-popup-overlay.popup-type-event .club-popup-button:hover,
.club-popup-overlay.popup-type-match .club-popup-button:hover,
.club-popup-overlay.popup-type-important .club-popup-button:hover,
.club-popup-overlay.popup-type-recruitment .club-popup-button:hover {
  background: var(--vert);
}

/* Responsive pop-up */

@media (max-width: 768px) {

  .club-popup-overlay {
    padding: 22px 14px;
  }

  .club-popup {
    max-height: 94vh;
    border-radius: 20px;
  }

  .club-popup-image {
    height: 220px;
  }

  .club-popup-content {
    padding: 32px 24px 34px;
  }

  .club-popup-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {

  .club-popup-overlay {
    padding: 14px 10px;
  }

  .club-popup {
    border-radius: 16px;
  }

  .club-popup-close {
    top: 10px;
    width: 38px;
    height: 38px;
    margin: 10px 10px -48px auto;
    font-size: 27px;
  }

  .club-popup-image {
    height: 190px;
  }

  .club-popup-content {
    padding: 28px 18px 30px;
  }

  .club-popup-button {
    width: 100%;
  }

  .club-popup-checkbox {
    align-items: flex-start;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* CORRECTIONS MOBILE FINALES */

/* Page Nos équipes */
@media (max-width: 768px) {
  .equipe-categories {
    display: flex !important;
    flex-direction: column !important;
    gap: 25px;
    max-width: 100%;
    padding: 0 20px;
    overflow: visible !important;
  }

  .equipe-category-card {
    width: 100% !important;
    min-height: auto;
    display: block;
  }

  .equipe-category-card span {
    display: inline-block;
    width: auto;
    white-space: normal;
  }
}

/* Page info.html */
@media (max-width: 768px) {
  .info-card {
    display: block;
    overflow: visible !important;
  }

  .info-card a,
  .info-card .btn,
  .info-card span {
    font-size: 10px !important;
    line-height: 1.2 !important;
    white-space: normal !important;
    word-break: normal !important;
  }
}

/* Menu mobile */
@media (max-width: 1000px) {
  .site-header {
    overflow: visible !important;
  }

  .navbar {
    position: relative;
    overflow: visible !important;
  }

  .menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .menu {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: var(--bleu) !important;
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 12px 20px 22px !important;
    z-index: 99999 !important;
  }

  .menu.active {
    display: flex !important;
  }
}

/* Page sponsors.html */
@media (max-width: 768px) {
  .sponsors-intro {
    max-width: 360px !important;
    margin: 25px auto 35px !important;
    padding: 0 22px !important;
    text-align: center !important;
    font-size: 16px !important;
    line-height: 1.75 !important;
  }
}

/* FIX MOBILE PAGE EQUIPES.HTML */

@media (max-width: 768px) {
  .teams-categories,
  .team-categories,
  .equipes-categories,
  .equipe-categories,
  .categories-equipes {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 24px !important;
    padding: 0 20px !important;
    overflow: visible !important;
  }

  .teams-category-card,
  .team-category-card,
  .equipes-category-card,
  .equipe-category-card,
  .category-card {
    width: 100% !important;
    max-width: 360px !important;
    margin: 0 auto !important;
    min-height: auto !important;
  }
}


/* Bouton discret des cartes Infos */

.info-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;

  width: auto;
  margin-top: 20px;
  padding: 8px 16px;

  color: var(--bleu);
  background: rgba(0, 93, 171, .08);

  border: 1px solid rgba(0, 93, 171, .18);
  border-radius: 999px;

  font-size: .9rem !important;
  font-weight: 800;
  line-height: 1.1;

  box-shadow: none;
  transition: .25s ease;
}

.info-card:hover .info-btn {
  color: white;
  background: var(--bleu);
  border-color: var(--bleu);
  transform: translateY(-2px);
}

