/* ============================================
   Etoile Pro Academy ? Th?me "Atlas"
   Couleurs d'?quipe : vert + bleu ? Navigation sombre ? Typo Syne + DM Sans
   ============================================
   SOMMAIRE (ordre des sections) :
   1. Variables (:root), reduced-motion
   2. Animations (keyframes)
   3. Navbar Club + menu mobile
   4. Boutons Club
   5. Hero accueil (split) + composants welcome?
   6. Sections Club (welcome, bento, stats, matchs, news, CTA)
   7. Footer
   8. Page hero (sous-pages)
   9. Page Contact (design V2) + formulaire V3 + inscription
   10. Page L'Acad?mie (split + vision/mission + valeurs)
   11. Formulaires, cartes, tableaux, focus-visible
   12. Responsive (mobile, tablette, desktop)
   ============================================ */

/* Polices (Google Fonts) + ic?nes (Bootstrap Icons) ? tout le CSS du site passe par ce fichier */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Syne:wght@400;500;600;700;800&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css');

/* Base : lisibilit? sur mobile (?vite zoom auto iOS sur champs mal dimensionn?s) */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

:root, .theme-club {
  /* Breakpoints (pour coh?rence responsive) */
  --bp-sm: 480px;
  --bp-md: 640px;
  --bp-lg: 768px;
  --bp-xl: 992px;
  --bp-2xl: 1024px;
  /* Couleurs d'?quipe : vert + bleu (noms --club-vert / --club-bleu conserv?s pour le HTML) */
  --club-vert: #16a34a;
  --club-vert-clair: #22c55e;
  --club-vert-pale: #86efac;
  --club-vert-fond: #dcfce7;
  --club-vert-fond-pale: #f0fdf4;
  --club-bleu: #2563eb;
  --club-bleu-clair: #3b82f6;
  --club-bleu-pale: #93c5fd;
  --club-bleu-fond: #dbeafe;
  --club-bleu-fond-pale: #eff6ff;
  /* Neutres */
  --club-bg: #f8fafc;
  --club-bg-alt: #f0fdf4;
  --club-surface: #ffffff;
  --club-text: #14532d;
  --club-text-muted: #166534;
  --club-border: #bbf7d0;
  --club-border-bleu: #bfdbfe;
  /* Effets */
  --club-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --club-shadow-lg: 0 24px 48px -12px rgba(15, 23, 42, 0.14);
  --club-radius: 1rem;
  --club-radius-badge: 9999px;
  --club-font-display: 'Syne', system-ui, sans-serif;
  --club-font-body: 'DM Sans', system-ui, sans-serif;
  --club-ease: cubic-bezier(0.33, 1, 0.68, 1);
  --club-transition: 0.3s var(--club-ease);
  --club-nav-bg: rgba(15, 23, 42, 0.94);
  --club-nav-solid: #0f172a;
  --club-focus: rgba(34, 197, 94, 0.22);
}

@media (prefers-reduced-motion: reduce) {
  .theme-club *, .theme-club *::before, .theme-club *::after {
    transition-duration: 0.02ms !important;
    animation-duration: 0.02ms !important;
  }
}

/* ========== Animations ========== */
@keyframes club-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes club-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes club-scale-in {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* Animation titre bienvenue : entr?e + l?ger rebond puis lueur douce */
@keyframes welcome-title-in {
  0% {
    opacity: 0;
    transform: translateY(2rem) scale(0.9);
  }
  70% {
    opacity: 1;
    transform: translateY(-4px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes welcome-title-glow {
  0%, 100% { text-shadow: 0 0 0 transparent; }
  50% { text-shadow: 0 0 28px rgba(34, 197, 94, 0.45); }
}

.theme-club {
  font-family: var(--club-font-body);
  color: var(--club-text);
  background: var(--club-bg);
  -webkit-font-smoothing: antialiased;
}

.theme-club .font-display { font-family: var(--club-font-display); }

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--club-vert);
  color: #fff;
  font-weight: 600;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  transition: top 0.3s ease;
}
.skip-link:focus { top: 1rem; outline: 2px solid var(--club-vert-clair); outline-offset: 2px; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========== Navbar ? barre sombre glass ========== */
.nav-club {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0.75rem 0;
  background: var(--club-nav-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--club-nav-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  transition: background var(--club-transition), box-shadow var(--club-transition);
}
.nav-club.is-solid { background: var(--club-nav-solid); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25); }
.nav-club__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-club__brand {
  font-family: var(--club-font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: #f8fafc;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  flex: 1 1 auto;
  max-width: 100%;
}
.nav-club__brand .nav-club__brand-txt {
  background: linear-gradient(105deg, var(--club-vert-clair) 0%, var(--club-bleu-clair) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Logo responsive : conserve les proportions, ne d?passe pas la navbar */
.nav-club__logo {
  height: auto;
  max-height: 2.5rem;
  max-width: 7rem;
  width: auto;
  object-fit: contain;
  border-radius: 0.5rem;
  flex-shrink: 0;
  display: block;
}
.nav-club__desktop { display: none; align-items: center; gap: 0.125rem; }
@media (min-width: 992px) {
  .nav-club__desktop { display: flex; }
  .nav-club__toggle { display: none !important; }
}
.nav-club__cta { margin-left: 0.5rem; }
.nav-club__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--club-radius);
  background: rgba(255, 255, 255, 0.06);
  color: #f8fafc;
  cursor: pointer;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.nav-club__link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(248, 250, 252, 0.78);
  padding: 0.5rem 0.75rem;
  border-radius: var(--club-radius);
  transition: color var(--club-transition), background var(--club-transition);
  text-decoration: none;
}
.nav-club__link:hover { color: #fff; background: rgba(255, 255, 255, 0.08); }
.nav-club__link.active { color: #86efac; background: rgba(34, 197, 94, 0.18); }

/* Lien Administration (visible si session admin) */
.nav-club__link--admin {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #fde68a !important;
}
.nav-club__link--admin:hover {
  color: #fef9c3 !important;
  background: rgba(251, 191, 36, 0.18) !important;
}

.mobile-menu-club {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  background: linear-gradient(180deg, #0f172a 0%, #1e3a8a 100%);
  padding: 5rem 1.5rem 2rem;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 2px solid rgba(59, 130, 246, 0.45);
}
.mobile-menu-club.is-open { display: flex; }
.mobile-menu-club .nav-club__link { font-size: 1.125rem; padding: 0.75rem; }
.mobile-menu-club #menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--club-radius);
  background: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) { .mobile-menu-club { display: none !important; } }

/* ========== Boutons Club (sport, badge) ========== */
.btn-club {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--club-font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: var(--club-radius-badge);
  transition: all var(--club-transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
  color: #fff;
  letter-spacing: 0.02em;
}
.btn-club:active { transform: scale(0.98); }
.btn-club--primary {
  background: linear-gradient(135deg, var(--club-vert) 0%, #15803d 100%);
  box-shadow: 0 4px 18px rgba(34, 197, 94, 0.35);
}
.btn-club--primary:hover {
  background: linear-gradient(135deg, var(--club-vert-clair) 0%, var(--club-vert) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(34, 197, 94, 0.42);
  color: #fff;
}
.btn-club--bleu {
  background: linear-gradient(135deg, var(--club-bleu) 0%, #1d4ed8 100%);
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.35);
}
.btn-club--bleu:hover {
  background: linear-gradient(135deg, var(--club-bleu-clair) 0%, var(--club-bleu) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.42);
  color: #fff;
}
.btn-club--outline {
  background: transparent;
  color: var(--club-vert);
  border: 2px solid var(--club-vert);
}
.btn-club--outline:hover {
  background: var(--club-vert-fond);
  color: var(--club-text);
  transform: translateY(-2px);
}

/* ========== Accueil ? Hero split (image ? gauche, panneau contenu ? droite) ========== */
.hero-split {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}
.hero-split__visual {
  position: relative;
  flex: 0 0 auto;
  min-height: 36vh;
  max-height: 48vh;
  overflow: hidden;
  isolation: isolate;
}
.hero-split__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.12) 100%);
}
.hero-split__img {
  width: 100%;
  height: 100%;
  min-height: 36vh;
  max-height: 48vh;
  object-fit: cover;
  object-position: center 35%;
}

@media (max-width: 991px) {
  /* Navbar fixe : éviter que le hero soit recouvert */
  .hero-split {
    padding-top: 4.25rem; /* ~64-70px (logo + padding vertical) */
    min-height: calc(100vh - 4.25rem);
    min-height: calc(100dvh - 4.25rem);
  }

  /* Sur GSM / tablette, on évite de “tasser” l’image verticalement (ce qui la coupe avec cover).
     On force un ratio proche de l'image hero (1200x900 => 4/3). */
  .hero-split__visual {
    min-height: 0;
    max-height: none;
    aspect-ratio: 4 / 3;
  }
  .hero-split__img {
    min-height: 0;
    max-height: none;
    object-fit: contain; /* affichage intégral (sans recadrage) */
    object-position: center;
  }

  /* Rapproche le texte de l'image (réduction padding sur mobile/tablette) */
  .hero-split__panel {
    padding: 0.5rem 1.25rem 1.25rem;
    justify-content: flex-start; /* évite le centrage vertical (gros espace en haut) */
    border-top: none; /* réduit la séparation visuelle avec l'image */
  }

  .hero-split__panel-inner {
    justify-content: flex-start;
  }
}
.hero-split__panel {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  background: linear-gradient(165deg, #ffffff 0%, #f0fdf4 42%, #f1f5f9 100%);
  border-top: 1px solid var(--club-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  padding: 5.5rem 1.25rem 1.5rem;
  box-sizing: border-box;
}
.hero-split__panel-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 36rem;
}
.hero-split__eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--club-vert);
}
.hero-split__title {
  margin: 0 0 1.1rem;
  font-family: var(--club-font-display);
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--club-text);
}
.hero-split__accent {
  background: linear-gradient(100deg, #15803d 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-split__lead {
  margin: 0 0 1.75rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--club-text-muted);
  font-weight: 500;
  max-width: 38ch;
}
.hero-split__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}
.hero-split__btn-outline {
  background: rgba(255, 255, 255, 0.65);
}
.hero-split__scroll {
  flex-shrink: 0;
  align-self: center;
  margin-top: auto;
  padding-top: 1.25rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--club-text-muted);
  text-decoration: none;
  transition: color var(--club-transition);
}
.hero-split__scroll:hover {
  color: var(--club-vert);
}
.hero-split__scroll-line {
  width: 2px;
  height: 2.25rem;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--club-vert) 0%, var(--club-bleu) 100%);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.75; }
}

@media (min-width: 992px) {
  .hero-split {
    flex-direction: row;
    align-items: stretch;
  }
  .hero-split__visual {
    flex: 0 0 50%;
    width: 50%;
    max-height: none;
    min-height: 100vh;
    min-height: 100dvh;
  }
  .hero-split__visual::after {
    background: linear-gradient(90deg, transparent 55%, rgba(248, 250, 252, 0.35) 100%);
  }
  .hero-split__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    object-fit: cover; /* recadrage contrôlé pour desktop (design) */
    object-position: center;
  }
  .hero-split__panel {
    flex: 0 0 50%;
    width: 50%;
    min-height: 100vh;
    min-height: 100dvh;
    border-top: none;
    border-left: 4px solid var(--club-vert);
    padding: 5.5rem 3rem 2.75rem;
    justify-content: center;
  }
  .hero-split__panel-inner {
    max-width: 28rem;
  }
}

/* Barre de s?paration entre le hero et le contenu principal (accueil) */
.home-divider {
  display: block;
  width: 100%;
  height: 5px;
  margin: 0;
  border: 0;
  flex-shrink: 0;
  background: linear-gradient(
    90deg,
    var(--club-vert) 0%,
    var(--club-bleu) 50%,
    var(--club-vert) 100%
  );
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset, 0 4px 16px rgba(15, 23, 42, 0.08);
}

/* ========== Sections Club ========== */
.section-club { padding: 2.5rem 1rem; position: relative; }
@media (min-width: 768px) { .section-club { padding: 3.5rem 1.5rem; } }
@media (min-width: 992px) { .section-club { padding: 4rem 1.5rem; } }
.section-club--alt { background: var(--club-bg-alt); }
.section-club--white { background: var(--club-surface); }
.section-club--bleu { background: var(--club-bleu-fond-pale); }
.section-club--center .section-club__wrapper { text-align: center; }
.section-club--center .match-scoreboard { margin-left: auto; margin-right: auto; }
.section-club__wrapper { max-width: 72rem; margin: 0 auto; }
.section-club__grid-2 { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .section-club__grid-2 { grid-template-columns: 1fr 1fr; gap: 1.75rem; } }
@media (min-width: 1024px) { .section-club__grid-2 { gap: 2rem; } }
.section-club__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--club-vert);
  margin-bottom: 0.5rem;
}
.section-club__label--bleu { color: var(--club-bleu); }
.section-club__title {
  font-family: var(--club-font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 3rem);
  letter-spacing: 0.02em;
  color: var(--club-text);
  margin-bottom: 1.25rem;
}

/* Bloc bienvenue (photo + titre BIENVENUE A Etoile Pro Academy) */
.welcome-club {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  align-items: center;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .welcome-club { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .welcome-club__media--first { order: -1; }
}
.welcome-club__media {
  border-radius: var(--club-radius);
  overflow: hidden;
  box-shadow: var(--club-shadow-lg);
  border: 2px solid var(--club-border);
}
.welcome-club__img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.welcome-club__content { padding: 0.5rem 0; }
/* Titre bienvenue au-dessus de la section (main > premier bloc) */
.welcome-club__heading {
  padding: 2.5rem 1.5rem 0;
  text-align: center;
  max-width: 72rem;
  margin: 0 auto;
}
.welcome-club__heading-title {
  font-family: var(--club-font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.06em;
  line-height: 1.1;
  color: var(--club-text);
  margin: 0;
  text-transform: uppercase;
  animation: welcome-title-in 1s var(--club-ease) both, welcome-title-glow 3s ease-in-out 1s infinite;
}
.welcome-club .welcome-club__media {
  animation: club-scale-in 0.6s var(--club-ease) 0.3s both;
}
.welcome-club .welcome-club__content {
  animation: club-fade-in-up 0.6s var(--club-ease) 0.25s both;
}
.welcome-club__text {
  font-size: 1.0625rem;
  color: var(--club-text-muted);
  line-height: 1.65;
  font-weight: 500;
  margin-bottom: 1rem;
}
.welcome-club__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--club-vert);
  text-decoration: none;
  transition: color var(--club-transition), gap var(--club-transition);
}
.welcome-club__link:hover { color: var(--club-bleu); gap: 0.75rem; }

/* ========== Accueil ? Section pr?sentation (50/50, align? maquette) ========== */
.presentation-hero__wrap {
  max-width: 72rem;
}
.section-club--presentation {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.presentation-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 768px) {
  .presentation-hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: stretch;
  }
}
.presentation-hero__figure {
  margin: 0;
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 1.125rem;
  background: #e2e8f0;
  /* Cadre fixe en mobile : l?image le remplit enti?rement (comme la maquette) */
  aspect-ratio: 4 / 3;
  box-shadow:
    0 1px 3px rgba(15, 23, 42, 0.06),
    0 16px 40px -18px rgba(15, 23, 42, 0.14);
}
.presentation-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--club-ease);
}
/* Tablette + desktop : hauteur = bloc texte (plus de ratio fixe sur le cadre) */
@media (min-width: 768px) {
  .presentation-hero__figure {
    aspect-ratio: auto;
    align-self: stretch;
    min-height: 12rem;
  }
}
.presentation-hero__figure:hover .presentation-hero__img {
  transform: scale(1.03);
}
.presentation-hero__panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0.25rem 0;
}
@media (min-width: 768px) {
  .presentation-hero__panel {
    padding: 0;
    align-self: stretch;
  }
}
.presentation-hero__kicker {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #94a3b8;
}
.presentation-hero__title {
  font-family: var(--club-font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.4vw, 2.25rem);
  color: #14532d;
  margin: 0 0 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.presentation-hero__prose p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.75;
  margin: 0 0 1rem;
  font-weight: 400;
}
.presentation-hero__prose p:last-child {
  margin-bottom: 0;
}
.presentation-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin-top: 1.5rem;
  padding-top: 0;
}
.presentation-hero__cta {
  padding: 0.8125rem 1.75rem;
  border-radius: 9999px;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.32);
}
.presentation-hero__cta:hover {
  box-shadow: 0 8px 22px rgba(34, 197, 94, 0.4);
}
.presentation-hero__ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--club-bleu);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--club-transition), border-color var(--club-transition), gap var(--club-transition);
}
.presentation-hero__ghost:hover {
  color: var(--club-vert);
  border-bottom-color: var(--club-vert);
  gap: 0.55rem;
}

/* Pr?sentation : image ? droite, texte ? gauche (page Acad?mie) */
@media (min-width: 768px) {
  .presentation-hero--reverse .presentation-hero__figure {
    order: 2;
  }
  .presentation-hero--reverse .presentation-hero__panel {
    order: 1;
  }
}

/* Page Le staff ? bandeau ? affiche ? + cartes (sans photos) */
.staff-showcase {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: max(5.25rem, calc(env(safe-area-inset-top, 0px) + 4.25rem)) 1.25rem 2.75rem;
  text-align: center;
  color: #f8fafc;
  background: linear-gradient(155deg, #052e16 0%, #14532d 42%, #0c4a6e 100%);
}
.staff-showcase__glow {
  position: absolute;
  inset: -40% -20% auto -20%;
  height: 85%;
  background: radial-gradient(ellipse 55% 45% at 50% 20%, rgba(234, 179, 8, 0.22) 0%, transparent 72%);
  pointer-events: none;
}
.staff-showcase__brand {
  position: relative;
  margin: 0 0 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.88;
}
.staff-showcase__title {
  position: relative;
  margin: 0 0 0.65rem;
  font-family: var(--club-font-display);
  font-size: clamp(2.75rem, 12vw, 4.5rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}
.staff-showcase__sub {
  position: relative;
  margin: 0;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  font-weight: 500;
  opacity: 0.92;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.45;
}
.staff-page {
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.staff-lede {
  max-width: 46rem;
  margin: 0 auto 2.25rem;
  text-align: center;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--club-text-muted);
  font-weight: 500;
}
.staff-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin-bottom: 2.5rem;
}
@media (min-width: 560px) {
  .staff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .staff-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
.staff-card {
  position: relative;
  background: var(--club-surface);
  border: 2px solid var(--club-border);
  border-radius: 1rem;
  padding: 1.5rem 1.15rem 1.35rem;
  text-align: center;
  box-shadow: var(--club-shadow);
  transition: transform var(--club-transition), box-shadow var(--club-transition), border-color var(--club-transition);
}
.staff-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--club-shadow-lg);
  border-color: var(--club-vert);
}
.staff-card:nth-child(even):hover {
  border-color: var(--club-bleu);
}
/* Toutes les cartes staff : m?me zone portrait (initiales ou photo) */
.staff-card__avatar {
  width: min(100%, 13rem);
  aspect-ratio: 3 / 4;
  height: auto;
  margin: 0 auto 1rem;
  border-radius: 1rem;
  border: 2px dashed rgba(20, 83, 45, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--club-font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(145deg, #14532d, #15803d);
}
@media (min-width: 480px) {
  .staff-card__avatar {
    width: min(100%, 15rem);
  }
}
.staff-card__avatar--bleu {
  border-color: rgba(37, 99, 235, 0.45);
  background: linear-gradient(145deg, #1d4ed8, #2563eb);
}
/* Variante photo : remplit la m?me grille que les initiales */
.staff-card__avatar--photo {
  display: block;
  position: relative;
  padding: 0;
  overflow: hidden;
  border-style: solid;
  background: var(--club-bg);
}
.staff-card__avatar--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.staff-card__name {
  font-family: var(--club-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--club-text);
  margin: 0 0 0.35rem;
  line-height: 1.25;
  letter-spacing: 0.02em;
}
.staff-card__role {
  margin: 0 0 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--club-vert);
  line-height: 1.35;
}
.staff-card:nth-child(even) .staff-card__role {
  color: var(--club-bleu);
}
.staff-card__tel {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--club-text-muted);
  text-decoration: none;
  padding: 0.35rem 0.65rem;
  border-radius: 9999px;
  background: var(--club-bg);
  border: 1px solid var(--club-border);
  transition: color var(--club-transition), border-color var(--club-transition), background var(--club-transition);
}
.staff-card__tel:hover {
  color: var(--club-vert);
  border-color: var(--club-vert);
  background: var(--club-vert-fond);
}
.staff-contact-bar {
  max-width: 40rem;
  margin: 0 auto;
  padding: 1.75rem 1.5rem;
  text-align: center;
  background: linear-gradient(145deg, #f0fdf4 0%, #eff6ff 100%);
  border: 1px solid var(--club-border);
  border-radius: var(--club-radius);
}
.staff-contact-bar__phone {
  margin: 0 0 0.5rem;
  font-family: var(--club-font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: var(--club-text);
}
.staff-contact-bar__phone a {
  color: var(--club-vert);
  text-decoration: none;
}
.staff-contact-bar__phone a:hover {
  text-decoration: underline;
  color: var(--club-bleu);
}
.staff-contact-bar__addr {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--club-text-muted);
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
}

/* Bento / cartes sport */
.bento-club {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  align-items: stretch;
}
.bento-club__main { grid-column: 1 / -1; }
/* Grille 3 colonnes ?gales (Excellence, ?quipe, Progression align?es) */
.bento-club--3col {
  grid-template-columns: 1fr;
  grid-template-rows: auto;
}
@media (min-width: 768px) {
  .bento-club { grid-template-columns: 1fr 1fr 1fr; grid-template-rows: auto auto; align-items: stretch; }
  .bento-club__main { grid-column: span 2; grid-row: span 2; }
  .bento-club--3col { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }
}
.bento-club__card {
  display: flex;
  flex-direction: column;
  background: var(--club-surface);
  border-radius: var(--club-radius);
  padding: 1.5rem;
  border-left: 4px solid var(--club-vert);
  box-shadow: var(--club-shadow);
  transition: transform var(--club-transition), box-shadow var(--club-transition), border-color var(--club-transition);
  min-height: 0;
}
.bento-club__card .icon-wrap { flex-shrink: 0; }
.bento-club__card h3 { flex-shrink: 0; }
.bento-club__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--club-shadow-lg);
  border-left-color: var(--club-bleu);
}
.bento-club__card.border-bleu { border-left-color: var(--club-bleu); }
.bento-club__card.border-bleu:hover { border-left-color: var(--club-vert); }
.bento-club__card .icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.bento-club__card .icon-wrap--vert { background: var(--club-vert-fond); color: var(--club-vert); }
.bento-club__card .icon-wrap--bleu { background: var(--club-bleu-fond); color: var(--club-bleu); }
.bento-club__card h3 {
  font-family: var(--club-font-display);
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: var(--club-text);
  margin-bottom: 0.25rem;
}
.bento-club__card p { font-size: 0.875rem; color: var(--club-text-muted); line-height: 1.5; font-weight: 500; flex: 1; margin: 0; }
/* Animation d'entr?e des cartes bento (d?calage progressif) */
.bento-club__card {
  animation: club-fade-in-up 0.5s var(--club-ease) both;
}
.bento-club__card:nth-child(1) { animation-delay: 0.1s; }
.bento-club__card:nth-child(2) { animation-delay: 0.2s; }
.bento-club__card:nth-child(3) { animation-delay: 0.25s; }
.bento-club__card:nth-child(4) { animation-delay: 0.3s; }

/* Stats (chiffres club) */
.stats-club {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 2rem 0;
}
@media (min-width: 640px) { .stats-club { grid-template-columns: repeat(4, 1fr); } }
.stat-club {
  text-align: center;
  padding: 1rem;
  background: var(--club-surface);
  border-radius: var(--club-radius);
  border: 2px solid var(--club-border);
  transition: border-color var(--club-transition), transform var(--club-transition);
}
.stat-club:hover { border-color: var(--club-vert); transform: scale(1.02); }
.stat-club:nth-child(2n) { border-color: var(--club-border-bleu); }
.stat-club:nth-child(2n):hover { border-color: var(--club-bleu); }
.stat-club__number {
  font-family: var(--club-font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: 0.02em;
  line-height: 1.1;
  display: block;
}
.stat-club__number.vert { color: var(--club-vert); }
.stat-club__number.bleu { color: var(--club-bleu); }
.stat-club__label { font-size: 0.8125rem; font-weight: 600; color: var(--club-text-muted); margin-top: 0.25rem; }

/* Matchs */
.match-club {
  background: var(--club-surface);
  border-radius: var(--club-radius);
  padding: 1.25rem;
  border-left: 4px solid var(--club-vert);
  box-shadow: var(--club-shadow);
  transition: border-color var(--club-transition), box-shadow var(--club-transition);
}
.match-club:hover { border-left-color: var(--club-bleu); box-shadow: var(--club-shadow-lg); }
.match-club__date { font-size: 0.75rem; font-weight: 600; color: var(--club-text-muted); margin-bottom: 0.5rem; }
.match-club__teams { font-weight: 700; color: var(--club-text); font-size: 1rem; }
.match-club__badge {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--club-radius-badge);
}
.match-club__badge--home { background: var(--club-vert-fond); color: var(--club-vert); }
.match-club__badge--away { background: var(--club-bleu-fond); color: var(--club-bleu); }

/* Matchs ? design scoreboard (?quipe | VS | ?quipe) */
.match-scoreboard {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  max-width: 56rem;
}
.match-scoreboard__item {
  background: var(--club-surface);
  border-radius: var(--club-radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--club-shadow);
  border: 2px solid var(--club-border-bleu);
  transition: border-color var(--club-transition), box-shadow var(--club-transition), transform var(--club-transition);
}
.match-scoreboard__item:hover {
  border-color: var(--club-bleu);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.15);
  transform: translateY(-2px);
}
.match-scoreboard__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--club-border-bleu);
}
.match-scoreboard__date {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--club-text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.match-scoreboard__date i { color: var(--club-bleu); }
.match-scoreboard__badge {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.625rem;
  border-radius: var(--club-radius-badge);
}
.match-scoreboard__badge--home { background: var(--club-vert-fond); color: var(--club-vert); }
.match-scoreboard__badge--away { background: var(--club-bleu-fond); color: var(--club-bleu); }
.match-scoreboard__teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.match-scoreboard__team {
  font-family: var(--club-font-display);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--club-text);
  text-align: center;
  flex: 1;
  min-width: 0;
}
.match-scoreboard__vs {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--club-bleu);
  background: var(--club-bleu-fond);
  padding: 0.35rem 0.6rem;
  border-radius: var(--club-radius-badge);
}
.match-scoreboard__cta { margin-top: 1.5rem; display: inline-block; }

/* ========== Accueil — horaires d'entraînement ========== */
.section-club--home-training {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
}
.home-training__wrap {
  max-width: 56rem;
}
.home-training__head {
  text-align: center;
  margin-bottom: 1.75rem;
}
.home-training__title {
  font-family: var(--club-font-display);
  font-weight: 700;
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
  color: var(--club-text);
  margin: 0.35rem 0 0.5rem;
  letter-spacing: -0.02em;
}
.home-training__intro {
  margin: 0;
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
  line-height: 1.5;
}
.home-training__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .home-training__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
.home-training__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1.15rem 1rem;
  background: var(--club-surface);
  border: 2px solid var(--club-border);
  border-radius: var(--club-radius);
  box-shadow: var(--club-shadow);
  transition: border-color var(--club-transition), box-shadow var(--club-transition), transform var(--club-transition);
}
.home-training__item:hover {
  border-color: var(--club-vert);
  box-shadow: var(--club-shadow-lg);
  transform: translateY(-2px);
}
.home-training__day {
  font-family: var(--club-font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--club-text);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.home-training__day .bi {
  color: var(--club-vert);
  font-size: 1.1rem;
}
.home-training__time {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--club-vert);
  letter-spacing: 0.02em;
}

.home-training__venue {
  margin: 1.5rem 0 0;
  padding: 1rem 1.15rem;
  background: var(--club-vert-fond);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: var(--club-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.home-training__venue-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--club-vert);
}
.home-training__venue-label .bi {
  font-size: 0.875rem;
}
.home-training__venue-text {
  font-family: var(--club-font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--club-text);
  line-height: 1.35;
}
.home-training__venue-detail {
  display: block;
  font-family: var(--club-font-body, inherit);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--club-text-muted);
  margin-top: 0.2rem;
}

/* ========== Accueil ? Prochains matchs (cartes calendrier) ========== */
.section-club--matches-next {
  background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 55%);
  border-top: 1px solid #e2e8f0;
}
.matches-next__wrap {
  max-width: 72rem;
}
.matches-next__head {
  text-align: center;
  margin-bottom: 2rem;
}
.matches-next__title {
  font-family: var(--club-font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  color: var(--club-text);
  margin: 0.35rem 0 0.5rem;
  letter-spacing: -0.02em;
}
.matches-next__intro {
  margin: 0;
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.matches-next {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .matches-next {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
  }
}
.matches-next__card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: var(--club-surface);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow:
    0 1px 3px rgba(15, 23, 42, 0.06),
    0 12px 32px -16px rgba(15, 23, 42, 0.12);
  transition: transform var(--club-transition), box-shadow var(--club-transition), border-color var(--club-transition);
}
.matches-next__card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 24px rgba(15, 23, 42, 0.08),
    0 20px 50px -24px rgba(37, 99, 235, 0.15);
  border-color: #cbd5e1;
}
.matches-next__datebox {
  flex-shrink: 0;
  width: 5.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  padding: 1rem 0.65rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
.matches-next__datebox--home {
  background: linear-gradient(160deg, #15803d 0%, #16a34a 100%);
}
.matches-next__datebox--away {
  background: linear-gradient(160deg, #1d4ed8 0%, #2563eb 100%);
}
.matches-next__dow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.95;
}
.matches-next__day {
  font-family: var(--club-font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}
.matches-next__month {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: lowercase;
  opacity: 0.95;
}
.matches-next__clock {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.9;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.matches-next__main {
  flex: 1;
  min-width: 0;
  padding: 1rem 1.25rem 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
}
.matches-next__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.matches-next__fixture {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
}
@media (min-width: 420px) {
  .matches-next__fixture {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 0.6rem;
  }
}
.matches-next__team {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #334155;
  line-height: 1.35;
  text-align: center;
  flex: 1;
  min-width: 0;
}
.matches-next__team--emph {
  color: var(--club-text);
  font-weight: 700;
}
.matches-next__vs {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(135deg, var(--club-vert) 0%, var(--club-bleu) 100%);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}
.matches-next__meta {
  margin: 0;
}
.matches-next__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 9999px;
}
.matches-next__pill--home {
  background: var(--club-vert-fond);
  color: var(--club-vert);
}
.matches-next__pill--away {
  background: #dbeafe;
  color: #1d4ed8;
}

/* ========== Accueil ? Actualit?s (? la une + liste) ========== */
.section-club--home-news {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}
.home-news__wrap {
  max-width: 72rem;
}
.home-news__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e2e8f0;
}
.home-news__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.35rem;
}
.home-news__h2 {
  font-family: var(--club-font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  color: var(--club-text);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.home-news__all {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--club-bleu);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--club-transition), border-color var(--club-transition), gap var(--club-transition);
}
.home-news__all:hover {
  color: var(--club-vert);
  border-bottom-color: var(--club-vert);
  gap: 0.35rem;
}
.home-news__all i {
  font-size: 1.4rem;
  line-height: 1;
}
.home-news__layout {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .home-news__layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: stretch;
  }
}
.home-news__hero {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.12);
  border: 1px solid #e2e8f0;
}
.home-news__hero-link {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  color: inherit;
  text-decoration: none;
  height: auto;
  min-height: 0;
}
@media (min-width: 600px) {
  .home-news__hero-link {
    flex-direction: row;
    min-height: 20rem;
  }
}
.home-news__hero-visual {
  position: relative;
  inset: auto;
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 900 / 563;
}
.home-news__hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none;
}

/* Mobile / tablette : ajuster la hauteur pour éviter le recadrage excessif
   (sans introduire de "bandes" noires comme avec `object-fit: contain`). */
@media (max-width: 899px) {
  .home-news__hero-link {
    min-height: 0;
    /* Evite de contraindre la carte entière (design flex) */
    aspect-ratio: auto;
  }

  .home-news__hero-visual img {
    object-fit: cover; /* conserve le design, tout en évitant le recadrage via aspect-ratio */
    object-position: center;
  }
}
/* Sur mobile/tablette, certains navigateurs appliquent aussi `:hover` (tap),
   ce qui peut donner une impression de flou. On n'applique le zoom que sur
   les appareils avec vrai survol (pointeur précis + hover). */
@media (hover: hover) and (pointer: fine) {
  .home-news__hero-link:hover .home-news__hero-visual img {
    transform: scale(1.05);
  }
}

@media (hover: none), (pointer: coarse) {
  .home-news__hero-link:hover .home-news__hero-visual img {
    transform: none;
  }
}
.home-news__hero-shade {
  display: none;
}
.home-news__hero-content {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  padding: 1.5rem 1.35rem 1.5rem;
  z-index: 2;
  background: #ffffff;
}
@media (min-width: 600px) {
  .home-news__hero-content {
    padding: 2rem 1.75rem;
  }
}
.home-news__hero-title {
  font-family: var(--club-font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  color: var(--club-text);
  margin: 0.5rem 0 0.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.home-news__hero-lead {
  font-size: 0.9375rem;
  color: #64748b;
  margin: 0 0 0.75rem;
  line-height: 1.45;
  font-weight: 500;
  max-width: 32ch;
}
.home-news__hero-cta {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--club-bleu);
}
.home-news__hero-link:hover .home-news__hero-cta {
  color: var(--club-bleu-clair);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Bloc image à gauche (desktop) */
@media (min-width: 600px) {
  .home-news__hero-visual {
    width: 45%;
    aspect-ratio: auto;
    height: 100%;
  }
  .home-news__hero-content { flex: 1; }
}

/* Désactive les effets de flou sur hover pour l'image */
.home-news__hero-link:hover .home-news__hero-visual img {
  transform: none !important;
}

/* “Lire la suite →” */
.home-news__hero-cta::after {
  content: " \2192";
  font-weight: 800;
}
.home-news__pill {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 9999px;
}
.home-news__pill--vert {
  background: var(--club-vert) !important;
  color: #ffffff !important;
  border: 1px solid rgba(22, 163, 74, 0.35) !important;
  text-shadow: none !important;
}
.home-news__pill--bleu {
  background: rgba(37, 99, 235, 0.12) !important;
  color: var(--club-bleu) !important;
  border: 1px solid rgba(37, 99, 235, 0.25) !important;
  text-shadow: none !important;
}
.home-news__pill--muted {
  background: #6c757d !important;
  color: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
  text-shadow: none !important;
}
.home-news__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 100%;
}
.home-news__item {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  text-decoration: none;
  color: inherit;
  background: var(--club-surface);
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: border-color var(--club-transition), box-shadow var(--club-transition), transform var(--club-transition);
  flex: 1;
}
.home-news__item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}
.home-news__item-thumb {
  flex-shrink: 0;
  width: 7.5rem;
  min-height: 100%;
  background: #e2e8f0;
}
@media (min-width: 480px) {
  .home-news__item-thumb { width: 8.5rem; }
}
.home-news__item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 6.5rem;
}
.home-news__item-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.9rem 1rem 1rem;
  min-width: 0;
}
.home-news__item-title {
  font-family: var(--club-font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--club-text);
  line-height: 1.25;
}
.home-news__item-desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* News cards */
.news-club {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .news-club { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .news-club { grid-template-columns: repeat(3, 1fr); } }
.news-card-club {
  background: var(--club-surface);
  border-radius: var(--club-radius);
  overflow: hidden;
  border-top: 3px solid var(--club-vert);
  box-shadow: var(--club-shadow);
  transition: transform var(--club-transition), box-shadow var(--club-transition), border-color var(--club-transition);
}
.news-card-club:hover {
  transform: translateY(-4px);
  box-shadow: var(--club-shadow-lg);
  border-top-color: var(--club-bleu);
}
.news-card-club__img { aspect-ratio: 16/10; overflow: hidden; }
.news-card-club__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--club-ease);
}
.news-card-club:hover .news-card-club__img img { transform: scale(1.06); }
.news-card-club__body { padding: 1.25rem; }
.news-card-club__tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--club-vert);
  margin-bottom: 0.5rem;
}
.news-card-club__tag.bleu { color: var(--club-bleu); }
.news-card-club__title {
  font-family: var(--club-font-display);
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  color: var(--club-text);
  margin-bottom: 0.375rem;
  transition: color var(--club-transition);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-club:hover .news-card-club__title { color: var(--club-bleu); }
.news-card-club__excerpt {
  font-size: 0.875rem;
  color: var(--club-text-muted);
  line-height: 1.5;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-club__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--club-vert);
  text-decoration: none;
  transition: gap var(--club-transition), color var(--club-transition);
}
.news-card-club__link:hover { gap: 0.5rem; color: var(--club-bleu); }

/* Page Actualit?s ? refonte (hero + ? la une + grille) */
.news-page-hero {
  background: linear-gradient(135deg, #052e16 0%, #14532d 38%, #1e3a8a 100%);
  color: #f8fafc;
  /* D?cale sous la navbar fixe + encoche iPhone */
  padding: max(5.25rem, calc(env(safe-area-inset-top, 0px) + 4.25rem)) 1.25rem 2.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.news-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(250, 204, 21, 0.12) 0%, transparent 55%);
  pointer-events: none;
}
.news-page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  margin: 0 auto;
}
.news-page-hero__kicker {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.88;
  margin-bottom: 0.65rem;
}
.news-page-hero__title {
  font-family: var(--club-font-display);
  font-size: clamp(2.25rem, 6vw, 3.25rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 0.5rem;
  line-height: 1.1;
}
.news-page-hero__sub {
  margin: 0;
  font-size: 1.05rem;
  opacity: 0.92;
  font-weight: 500;
  line-height: 1.5;
}
.news-page-main {
  background: var(--club-bg);
  padding: 0;
}
.news-page {
  padding: 2rem 1rem 3.25rem;
  max-width: 72rem;
  box-sizing: border-box;
}
.news-page__toolbar {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
  padding: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.95rem;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}
.news-page__summary {
  margin: 0;
  font-size: 0.92rem;
  color: #475569;
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.7rem;
}
.news-page__summary-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.85rem;
  height: 1.85rem;
  padding: 0 0.5rem;
  border-radius: 9999px;
  font-size: 0.86rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, var(--club-vert), #15803d);
}
.news-page__summary-filter {
  color: var(--club-bleu);
  font-weight: 700;
}
.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.65rem;
  justify-content: flex-start;
  margin-bottom: 0;
}
.news-filters__pill {
  display: inline-block;
  padding: 0.48rem 1rem;
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #334155;
  background: #f8fafc;
  border: 1px solid #dbe4ee;
  border-radius: 9999px;
  cursor: pointer;
  transition: all var(--club-transition);
}
.news-filters__pill--active {
  color: #fff;
  background: linear-gradient(135deg, var(--club-vert), #16a34a);
  border-color: #16a34a;
}
.news-filters__pill:hover {
  border-color: #cbd5e1;
  background: #eef5ff;
}
.news-page__grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .news-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}
@media (min-width: 1100px) {
  .news-page__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}
.news-page .news-card-club--tile {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-top: 0;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
  transition: transform var(--club-transition), box-shadow var(--club-transition), border-color var(--club-transition);
}
.news-page .news-card-club--tile:hover {
  transform: translateY(-3px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
}
.news-card-club__thumb {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  overflow: hidden;
}

.news-card-club__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.news-card-club__thumb--result {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #0d9488 100%);
}
.news-card-club__thumb--club {
  background: linear-gradient(135deg, #14532d 0%, #059669 100%);
}
.news-card-club__date {
  font-size: 0.8125rem;
  color: #64748b;
  font-weight: 600;
  margin: 0.15rem 0 0.5rem;
}
.news-card-club__date time {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.news-card-club--tile .news-card-club__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem 1rem 1.05rem;
}
.news-card-club--tile .news-card-club__link {
  margin-top: auto;
}
.news-page .boutique-pagination {
  margin-top: 1.55rem;
}
.news-page__note {
  margin: 2.5rem 0 0;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--club-text-muted);
  font-weight: 500;
  line-height: 1.6;
}
.news-page__note a {
  color: var(--club-vert);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.news-page__note a:hover {
  color: var(--club-bleu);
}
@media (max-width: 639px) {
  .news-page {
    padding-top: 1.5rem;
  }
  .news-page__toolbar {
    padding: 0.85rem;
  }
  .news-page__summary {
    font-size: 0.875rem;
  }
}

/* -------------------------------------------------------------------------- */
/* Page détail actualité                                                   */
/* -------------------------------------------------------------------------- */
.news-detail {
  background: var(--club-bg);
  padding: 0;
}

.news-detail__container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.5rem 1rem 2.5rem;
}

.news-detail__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.news-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--club-bleu);
  text-decoration: none;
}

.news-detail__back:hover {
  color: var(--club-vert);
}

.news-detail__image-wrap {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--club-border);
  background: #ffffff;
  margin: 0 0 1.1rem;
}

.news-detail__image {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  display: block;
}

.news-detail__title {
  font-family: var(--club-font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin: 0 0 0.75rem;
  color: var(--club-text);
}

.news-detail__date {
  color: var(--club-text-muted);
  font-weight: 600;
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.news-detail__excerpt {
  color: var(--club-text-muted);
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.news-detail__body {
  color: var(--club-text);
  line-height: 1.75;
  font-size: 1rem;
  overflow-wrap: break-word;
}

.news-detail__body p {
  margin: 0 0 1rem;
}

.news-detail__article {
  background: #ffffff;
  border: 1px solid var(--club-border);
  border-radius: 0.9rem;
  padding: 1.1rem 1.1rem 1.25rem;
}

@media (max-width: 640px) {
  .news-detail__image {
    height: 8rem;
  }

  .news-detail__article {
    padding: 0.95rem 0.95rem 1.15rem;
  }
}

@media (max-width: 900px) {
  .news-detail__image {
    height: 10rem;
  }
}

/* Page Boutique ? hero + grille produits + commande */
.boutique-hero {
  background: linear-gradient(125deg, #0f172a 0%, #14532d 42%, #1d4ed8 100%);
  color: #f8fafc;
  padding: max(5.25rem, calc(env(safe-area-inset-top, 0px) + 4.25rem)) 1.25rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.boutique-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 45% at 80% 20%, rgba(34, 197, 94, 0.2) 0%, transparent 55%);
  pointer-events: none;
}
.boutique-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 38rem;
  margin: 0 auto;
}
.boutique-hero__kicker {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.88;
  margin-bottom: 0.6rem;
}
.boutique-hero__title {
  font-family: var(--club-font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 0.5rem;
  line-height: 1.12;
}
.boutique-hero__sub {
  margin: 0;
  font-size: 1.02rem;
  opacity: 0.92;
  font-weight: 500;
  line-height: 1.5;
}
.boutique-main {
  background: var(--club-bg);
}
.boutique-page {
  padding: 2rem 1rem 3rem;
  max-width: 72rem;
  box-sizing: border-box;
}
.boutique-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.boutique-filters__pill {
  display: inline-block;
  padding: 0.45rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--club-text-muted);
  background: var(--club-surface);
  border: 2px solid var(--club-border);
  border-radius: 9999px;
  cursor: default;
  text-decoration: none;
}
a.boutique-filters__pill {
  cursor: pointer;
  transition: border-color var(--club-transition), color var(--club-transition), background var(--club-transition), box-shadow var(--club-transition);
}
a.boutique-filters__pill:hover:not(.boutique-filters__pill--active) {
  border-color: var(--club-vert);
  color: var(--club-vert);
  background: rgba(34, 197, 94, 0.08);
}
a.boutique-filters__pill:focus-visible {
  outline: 2px solid var(--club-vert);
  outline-offset: 2px;
}
.boutique-filters__pill--active {
  color: #fff;
  background: linear-gradient(135deg, var(--club-bleu), #1d4ed8);
  border-color: transparent;
}
a.boutique-filters__pill--active:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--club-bleu), #1d4ed8);
}
.boutique-page__filter-hint {
  text-align: center;
  font-size: 0.9rem;
  color: var(--club-text-muted);
  margin: -0.5rem 0 1rem;
}
.boutique-page__filter-hint strong {
  color: var(--club-text);
}
.boutique-page__filter-clear {
  color: var(--club-vert);
  font-weight: 600;
  text-decoration: none;
}
.boutique-page__filter-clear:hover {
  text-decoration: underline;
}
.boutique-page__empty-filter {
  text-align: center;
  margin: 0 0 1.5rem;
  padding: 1rem;
  color: var(--club-text-muted);
  font-size: 0.95rem;
}
.boutique-page__catalog-title {
  font-family: var(--club-font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: #14532d;
  text-align: center;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}
.boutique-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) {
  .boutique-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .boutique-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
.boutique-card {
  background: var(--club-surface);
  border-radius: 1.125rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: var(--club-shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--club-transition), box-shadow var(--club-transition);
}
.boutique-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--club-shadow-lg);
}
.boutique-card__visual {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.75rem;
  color: rgba(255, 255, 255, 0.95);
}
.boutique-card__visual--home {
  background: linear-gradient(145deg, #14532d, #166534);
}
.boutique-card__visual--away {
  background: linear-gradient(145deg, #0e7490, #2563eb);
}
.boutique-card__visual--short {
  background: linear-gradient(145deg, #ca8a04, #ea580c);
}
.boutique-card__visual--ball {
  background: linear-gradient(145deg, #14532d, #0d9488);
}
.boutique-card__visual--sweat {
  background: linear-gradient(145deg, #4c1d95, #7c3aed);
}
.boutique-card__visual--cap {
  background: linear-gradient(145deg, #1e40af, #0f766e);
}
.boutique-card__visual--photo {
  padding: 0;
  overflow: hidden;
  background: #f8fafc;
}
.boutique-card__visual--photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.boutique-card__body {
  padding: 1.2rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.boutique-card__cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.35rem;
}
.boutique-card__name {
  font-family: var(--club-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--club-text);
  margin: 0 0 0.35rem;
  line-height: 1.2;
}
.boutique-card__meta {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  color: var(--club-text-muted);
  font-weight: 500;
}
.boutique-card__price {
  margin: 0 0 1rem;
  font-family: var(--club-font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--club-vert);
  letter-spacing: -0.02em;
}
.boutique-card__currency {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--club-text-muted);
  margin-left: 0.15rem;
}
.boutique-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border-radius: var(--club-radius-badge);
  background: linear-gradient(135deg, var(--club-vert), #15803d);
  transition: transform var(--club-transition), box-shadow var(--club-transition);
}
.boutique-card__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.35);
  color: #fff;
}
.boutique-order {
  margin-top: 2.5rem;
  padding: 1.75rem 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: linear-gradient(135deg, #f0fdf4 0%, #eff6ff 100%);
  border: 1px solid var(--club-border);
  border-radius: var(--club-radius);
  box-shadow: var(--club-shadow);
}
@media (max-width: 559px) {
  .boutique-order {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .boutique-order__actions {
    justify-content: center;
  }
}
.boutique-order__icon {
  flex-shrink: 0;
  width: 3.25rem;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--club-vert);
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--club-shadow);
}
.boutique-order__content {
  min-width: 0;
}
.boutique-order__title {
  font-family: var(--club-font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--club-text);
  margin: 0 0 0.5rem;
}
.boutique-order__text {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--club-text-muted);
  font-weight: 500;
}
.boutique-order__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.boutique-page__count {
  margin: -0.25rem 0 1.25rem;
  font-size: 0.9rem;
  color: var(--club-text-muted);
  font-weight: 500;
}
.boutique-pagination {
  margin: 2rem 0 0;
  display: flex;
  justify-content: center;
}
.boutique-pagination__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
}
.boutique-pagination__item {
  margin: 0;
}
.boutique-pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: 0.35rem 0.65rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--club-text);
  background: #fff;
  border: 1px solid var(--club-border);
  transition: background var(--club-transition), border-color var(--club-transition), color var(--club-transition);
}
.boutique-pagination__link:hover:not(.boutique-pagination__link--disabled):not(.boutique-pagination__link--current) {
  border-color: var(--club-vert);
  color: var(--club-vert);
  background: rgba(34, 197, 94, 0.06);
}
.boutique-pagination__link--current {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(37, 99, 235, 0.12));
  border-color: var(--club-vert);
  color: var(--club-vert);
  cursor: default;
}
.boutique-pagination__link--nav {
  min-width: auto;
  padding-left: 0.85rem;
  padding-right: 0.85rem;
  gap: 0.25rem;
}
.boutique-pagination__link--disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* Pagination admin : css/admin.css */

/* CTA (bandeau vert-bleu) */
.cta-club {
  padding: 4rem 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, #14532d 0%, var(--club-vert) 40%, var(--club-bleu) 100%);
  color: #fff;
}
.cta-club__title {
  font-family: var(--club-font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.cta-club__text { font-size: 1.0625rem; opacity: 0.95; margin-bottom: 1.5rem; max-width: 32ch; margin-left: auto; margin-right: auto; font-weight: 500; }
.cta-club .btn-club--outline {
  border-color: #fff;
  color: #fff;
  background: transparent;
}
.cta-club .btn-club--outline:hover { background: rgba(255,255,255,0.2); color: #fff; }

/* Footer ? 4 colonnes (marque + r?seaux, Navigation, Informations, Contact) + barre copyright */
.footer-club {
  background: #020617;
  color: rgba(255, 255, 255, 0.82);
  padding: 0;
}
.footer-club__main { padding: 3rem 1.5rem 2.5rem; }
.footer-club__wrapper { max-width: 72rem; margin: 0 auto; }
.footer-club__grid-4 {
  display: grid;
  gap: 2rem 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .footer-club__grid-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .footer-club__grid-4 { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }
.footer-club__col--brand .footer-club__brand { margin-bottom: 1rem; }
.footer-club__brand {
  font-family: var(--club-font-display);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: #fff;
}
.footer-club__social { display: flex; gap: 0.6rem; margin-bottom: 1rem; }
.footer-club__social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: background var(--club-transition), color var(--club-transition);
}
.footer-club__social a:hover { background: var(--club-vert); color: #fff; }
.footer-club__desc { font-size: 0.9375rem; line-height: 1.6; margin: 0; opacity: 0.9; }
.footer-club__title {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-club__list a {
  display: block;
  padding: 0.2rem 0;
  font-size: 0.9375rem;
  color: inherit;
  opacity: 0.9;
  text-decoration: none;
  transition: opacity var(--club-transition), color var(--club-transition);
}
.footer-club__list a:hover { opacity: 1; color: var(--club-vert-pale); }
.footer-club__contact {
  font-size: 0.9375rem;
  line-height: 1.55;
  margin: 0 0 0.75rem;
  opacity: 0.9;
}
.footer-club__contact:last-child { margin-bottom: 0; }
.footer-club__contact a { color: inherit; text-decoration: none; }
.footer-club__contact a:hover { text-decoration: underline; color: var(--club-vert-pale); }
.footer-club__contact strong { color: #fff; font-weight: 600; }
.footer-club__bottom {
  padding: 1.25rem 1.5rem;
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
  font-size: 0.8125rem;
  opacity: 0.85;
}
.footer-club__bottom p { margin: 0.25rem 0; }
.footer-club__bottom a { color: inherit; text-decoration: underline; }
.footer-club__bottom a:hover { color: var(--club-vert-pale); }

/* Footer ? optimisation mobile : ordre, s?parateurs, espacements, touch */
@media (max-width: 639px) {
  .footer-club__main { padding: 2rem 1rem 2rem; }
  .footer-club__grid-4 {
    gap: 0;
    grid-template-columns: 1fr;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-club__col {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
  }
  .footer-club__col:last-child { border-bottom: none; padding-bottom: 0; }
  .footer-club__col--brand {
    padding-top: 0;
    text-align: center;
  }
  .footer-club__col--brand .footer-club__brand { margin-bottom: 0.75rem; }
  .footer-club__brand { font-size: 1.35rem; }
  .footer-club__social {
    justify-content: center;
    margin-bottom: 0.75rem;
  }
  .footer-club__social a {
    width: 2.75rem;
    height: 2.75rem;
  }
  .footer-club__desc {
    font-size: 0.875rem;
    line-height: 1.55;
    max-width: 26ch;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-club__title {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.08em;
  }
  .footer-club__list a {
    padding: 0.5rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9375rem;
  }
  .footer-club__contact {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .footer-club__contact a {
    display: inline-block;
    margin-top: 0.25rem;
    word-break: break-word;
  }
  .footer-club__bottom {
    padding: 1rem 1rem;
    font-size: 0.75rem;
    line-height: 1.5;
  }
  .footer-club__bottom p { margin: 0.4rem 0; }
  .footer-club__bottom a { word-break: break-word; }
}

/* ========== Page hero (sous-pages) ========== */
.page-hero-club {
  padding: max(5.25rem, calc(env(safe-area-inset-top, 0px) + 4.25rem)) 1.5rem 2.5rem;
  background: linear-gradient(135deg, #0f172a 0%, #15803d 45%, #2563eb 100%);
  color: #fff;
  text-align: center;
}
.page-hero-club__title {
  font-family: var(--club-font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.page-hero-club__subtitle {
  font-size: 1rem;
  opacity: 0.95;
  font-weight: 500;
}
.page-hero-club--compact {
  padding: max(4.75rem, calc(env(safe-area-inset-top, 0px) + 3.75rem)) 1.25rem 2rem;
}

/* ========== Page Contact ? Design V2 (split coordonn?es | formulaire) ========== */
.contact-v2 {
  background: var(--club-bg);
  padding: 2rem 0 3rem;
}
.contact-v2__grid {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .contact-v2__grid {
    grid-template-columns: 320px 1fr;
    gap: 2.5rem;
    align-items: start;
  }
}
.contact-v2__aside {
  background: linear-gradient(180deg, var(--club-vert-fond) 0%, var(--club-vert-fond-pale) 100%);
  border-radius: var(--club-radius);
  padding: 1.75rem 1.5rem;
  border: 2px solid var(--club-border);
  box-shadow: var(--club-shadow);
}
.contact-v2__aside-title {
  font-family: var(--club-font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--club-text);
  margin: 0 0 1.25rem;
}
.contact-v2__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-v2__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-v2__item:last-of-type { margin-bottom: 0; }
.contact-v2__item strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--club-text);
  margin-bottom: 0.2rem;
}
.contact-v2__item p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--club-text-muted);
  line-height: 1.4;
}
.contact-v2__item a { color: var(--club-bleu); text-decoration: none; font-weight: 500; }
.contact-v2__item a:hover { text-decoration: underline; }
.contact-v2__icon {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  border-radius: 50%;
  color: #fff;
}
.contact-v2__icon--vert { background: var(--club-vert); }
.contact-v2__icon--bleu { background: var(--club-bleu); }
.contact-v2__social {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--club-border);
}
.contact-v2__social-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--club-text);
  margin-bottom: 0.5rem;
}
.contact-v2__social-links {
  display: flex;
  gap: 0.75rem;
}
.contact-v2__social-links a {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--club-surface);
  color: var(--club-vert);
  border-radius: 50%;
  border: 2px solid var(--club-border);
  transition: background var(--club-transition), color var(--club-transition), border-color var(--club-transition);
}
.contact-v2__social-links a:hover { background: var(--club-vert); color: #fff; border-color: var(--club-vert); }
.contact-v2__form-wrap {
  min-width: 0;
}
.contact-v2__form-inner {
  background: var(--club-surface);
  border-radius: var(--club-radius);
  padding: 2rem 1.75rem;
  border: 2px solid var(--club-border);
  box-shadow: var(--club-shadow);
}
.contact-v2__form-title {
  font-family: var(--club-font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--club-text);
  margin: 0 0 0.5rem;
}
.contact-v2__form-intro {
  font-size: 0.9375rem;
  color: var(--club-text-muted);
  margin: 0 0 1.5rem;
  line-height: 1.5;
}
.contact-v2__form .form-group { margin-bottom: 1.25rem; }

/* Formulaire contact ? Design V3 (ligne Nom+Email, ic?nes dans les champs, bouton avec ic?ne) */
.form-mail-message {
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: var(--club-radius);
  font-size: 0.9375rem;
  line-height: 1.45;
}
.form-mail-message[hidden] { display: none !important; }
.form-mail-message--success {
  background: #f0fdf4;
  border: 1px solid var(--club-vert);
  color: #14532d;
}
.form-mail-message--error {
  background: #fef2f2;
  border: 1px solid #ef4444;
  color: #991b1b;
}
.contact-form-v3__form { margin-top: 1rem; }
.contact-form-v3__row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-bottom: 1.25rem;
}
@media (min-width: 500px) { .contact-form-v3__row { grid-template-columns: 1fr 1fr; } }
.contact-form-v3__field { margin-bottom: 1.25rem; }
.contact-form-v3__field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--club-text);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.contact-form-v3__input-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1rem 0 0;
  background: var(--club-bg);
  border: 2px solid var(--club-border);
  border-radius: var(--club-radius);
  transition: border-color var(--club-transition), box-shadow var(--club-transition);
}
.contact-form-v3__input-wrap:focus-within {
  border-color: var(--club-vert);
  box-shadow: 0 0 0 3px var(--club-focus);
}
.contact-form-v3__input-wrap i {
  flex-shrink: 0;
  width: 2.75rem;
  text-align: center;
  color: var(--club-text-muted);
  font-size: 1.1rem;
}
.contact-form-v3__input-wrap:focus-within i { color: var(--club-vert); }
.contact-form-v3__input-wrap input,
.contact-form-v3__input-wrap select {
  flex: 1;
  min-width: 0;
  padding: 0.875rem 0;
  font-family: var(--club-font-body);
  font-size: 0.9375rem;
  color: var(--club-text);
  background: transparent;
  border: none;
  outline: none;
}
.contact-form-v3__input-wrap select { cursor: pointer; appearance: auto; }
.contact-form-v3__input-wrap--textarea {
  align-items: flex-start;
  padding: 0.75rem 1rem;
}
.contact-form-v3__input-wrap--textarea i { margin-top: 0.5rem; }
.contact-form-v3__input-wrap--textarea textarea {
  flex: 1;
  min-width: 0;
  padding: 0.25rem 0;
  font-family: var(--club-font-body);
  font-size: 0.9375rem;
  color: var(--club-text);
  background: transparent;
  border: none;
  outline: none;
  resize: vertical;
  min-height: 5rem;
}
.contact-form-v3__submit { margin-top: 1.5rem; margin-bottom: 0; }
.contact-form-v3__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
}
.contact-form-v3__btn i { font-size: 1.125rem; }
.form-captcha__question { font-weight: 600; }
.form-captcha__error {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #b91c1c;
}
.contact-form-v3__field--checkbox { margin-bottom: 1.25rem; }
.contact-form-v3__input-wrap--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.125rem 1.25rem;
  background: var(--club-vert-fond-pale);
  border: 2px solid var(--club-vert);
  border-radius: var(--club-radius);
  min-height: 3.5rem;
}
/* Checkbox visible : taille fixe, bordure et fond pour qu'elle ne soit pas ?cras?e par les styles g?n?raux des input */
.contact-form-v3__input-wrap--checkbox input[type="checkbox"] {
  flex: none !important;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  min-width: 1.5rem;
  min-height: 1.5rem;
  margin-top: 0.15rem;
  padding: 0;
  border: 2px solid var(--club-text-muted);
  border-radius: 0.35rem;
  background: #fff;
  accent-color: var(--club-vert);
  cursor: pointer;
  appearance: auto;
  -webkit-appearance: checkbox;
}
.contact-form-v3__input-wrap--checkbox input[type="checkbox"]:checked {
  border-color: var(--club-vert);
  background-color: var(--club-vert-fond);
}
.contact-form-v3__input-wrap--checkbox label {
  margin-bottom: 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--club-text);
  cursor: pointer;
  line-height: 1.45;
}

/* Formulaire inscription ? m?me design V3 (r?utilise contact-form-v3) */
.inscription-form-v3 {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
}
.inscription-form-v3__intro {
  font-size: 0.9375rem;
  color: var(--club-text-muted);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}
.inscription-form-v3__form {
  background: var(--club-surface);
  border-radius: var(--club-radius);
  padding: 2rem 1.75rem;
  border: 2px solid var(--club-border);
  box-shadow: var(--club-shadow);
}
.inscription-form-v3__section-title {
  font-family: var(--club-font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--club-text);
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--club-border);
}
.inscription-form-v3__form .inscription-form-v3__section-title { margin-top: 1.5rem; }
.inscription-form-v3__form .inscription-form-v3__section-title:first-of-type { margin-top: 0; }

/* ========== Page ? propos (design d?di?) ========== */
.about-visual {
  padding: 0 1.5rem 2rem;
  max-width: 72rem;
  margin: 0 auto;
}
.about-visual__inner {
  border-radius: var(--club-radius);
  overflow: hidden;
  box-shadow: var(--club-shadow-lg);
  border: 2px solid var(--club-border);
}
.about-visual__img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.about-prose { max-width: 52rem; margin: 0 auto; }
.section-club__title--center { text-align: center; }
.about-grid-2 {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .about-grid-2 { grid-template-columns: 1fr 1fr; } }
.about-block {
  background: var(--club-surface);
  border-radius: var(--club-radius);
  padding: 1.75rem 2rem;
  border-left: 4px solid var(--club-vert);
  box-shadow: var(--club-shadow);
}
.about-block--mission { border-left-color: var(--club-bleu); }
.about-block__title {
  font-family: var(--club-font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--club-text);
  margin: 0 0 1rem;
}
.about-block p, .about-block ul { font-size: 0.9375rem; color: var(--club-text-muted); line-height: 1.65; font-weight: 500; margin: 0 0 0.75rem; }
.about-block ul { margin: 0.5rem 0 0; padding-left: 1.25rem; }
.about-block li { margin-bottom: 0.35rem; }
.about-values-intro {
  text-align: center;
  color: var(--club-text-muted);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
.academy-values-intro {
  text-align: center;
  color: var(--club-text-muted);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
  margin: 0 auto 2rem;
  max-width: 42rem;
}
.academy-values-intro--tight {
  margin-bottom: 1.25rem;
}
.about-values-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .about-values-grid { grid-template-columns: repeat(3, 1fr); } }
.about-value-card:last-child:nth-child(5) { grid-column: span 2; }
@media (min-width: 768px) { .about-value-card:last-child:nth-child(5) { grid-column: span 1; } }

/* ========== Page L'Acad?mie (hero split + histoire + vision/mission + valeurs + CTA) ========== */
.academy-story.section-club--presentation {
  border-top: none;
}
/* Photo ? Notre histoire ? : image enti?re visible (pas de recadrage type cover) */
.academy-story .presentation-hero__figure {
  background: #f1f5f9;
}
.academy-story .presentation-hero__img {
  object-fit: contain;
  object-position: center;
}
.academy-story .presentation-hero__figure:hover .presentation-hero__img {
  transform: none;
}
.academy-vm {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .academy-vm {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}
.academy-vm .section-club__title--center {
  margin-bottom: 0.5rem;
}
.academy-vm__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .academy-vm__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
  }
}
.academy-vm__card {
  background: var(--club-surface);
  border-radius: var(--club-radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--club-shadow);
  border: 1px solid var(--club-border);
  border-top: 4px solid var(--club-vert);
  height: 100%;
  transition: transform var(--club-transition), box-shadow var(--club-transition);
}
.academy-vm__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--club-shadow-lg);
}
.academy-vm__card--mission {
  border-top-color: var(--club-bleu);
}
.academy-vm__label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--club-vert);
  margin-bottom: 0.75rem;
}
.academy-vm__card--mission .academy-vm__label {
  color: var(--club-bleu);
}
.academy-vm__card p,
.academy-vm__card ul {
  font-size: 0.9375rem;
  color: var(--club-text-muted);
  line-height: 1.7;
  font-weight: 500;
  margin: 0 0 0.75rem;
}
.academy-vm__card p:last-child,
.academy-vm__card ul:last-child {
  margin-bottom: 0;
}
.academy-vm__list {
  margin: 0.35rem 0 0;
  padding-left: 1.25rem;
}
.academy-vm__list li {
  margin-bottom: 0.4rem;
}
.academy-vm__card strong {
  color: var(--club-text);
}

/* Valeurs page Acad?mie ? liste ?ditoriale (timeline l?g?re) */
.academy-values-editorial {
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 1px solid #e2e8f0;
}
.academy-values-editorial__wrap {
  max-width: 44rem;
  margin: 0 auto;
}
.academy-values-editorial__head {
  margin-bottom: 2.5rem;
  text-align: center;
}
.academy-values-editorial__title {
  font-family: var(--club-font-display);
  font-size: clamp(2rem, 4vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #14532d;
  margin: 0 0 1rem;
  line-height: 1.15;
}
.academy-values-editorial__title::after {
  content: "";
  display: block;
  width: 4rem;
  height: 3px;
  margin: 1rem auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--club-vert), var(--club-bleu));
}
.academy-values-editorial__lead {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--club-text-muted);
  font-weight: 500;
  max-width: 38ch;
  margin-left: auto;
  margin-right: auto;
}
.academy-values-steps {
  list-style: none;
  margin: 0;
  padding: 0 0 0 1rem;
  position: relative;
  border-left: 3px solid var(--club-vert);
}
@media (min-width: 640px) {
  .academy-values-steps {
    padding-left: 1.35rem;
  }
}
.academy-values-steps__item {
  position: relative;
  padding-bottom: 2rem;
  padding-left: 0.25rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  align-items: start;
}
@media (min-width: 640px) {
  .academy-values-steps__item {
    gap: 1rem 1.75rem;
  }
}
.academy-values-steps__item:last-child {
  padding-bottom: 0;
}
.academy-values-steps__num {
  font-family: var(--club-font-display);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(145deg, var(--club-vert), #15803d);
  width: 2.5rem;
  height: 2.5rem;
  padding-top: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-top: 0.15rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
}
.academy-values-steps__item:nth-child(even) .academy-values-steps__num {
  background: linear-gradient(145deg, var(--club-bleu), #1d4ed8);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.22);
}
.academy-values-steps__body {
  min-width: 0;
}
.academy-values-steps__name {
  font-family: var(--club-font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--club-text);
  margin: 0 0 0.5rem;
  line-height: 1.25;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.academy-values-steps__ico {
  font-size: 1.125rem;
  color: var(--club-vert);
  opacity: 0.9;
}
.academy-values-steps__item:nth-child(even) .academy-values-steps__ico {
  color: var(--club-bleu);
}
.academy-values-steps__desc {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--club-text-muted);
  font-weight: 500;
}

.academy-page-cta {
  background: linear-gradient(135deg, var(--club-vert-fond-pale) 0%, var(--club-bleu-fond-pale) 100%);
  border-top: 1px solid var(--club-border);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.academy-page-cta__inner {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
  padding: 0 0.5rem;
}
.academy-page-cta__title {
  font-family: var(--club-font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--club-text);
  margin: 0 0 0.5rem;
}
.academy-page-cta__lead {
  margin: 0 0 1.5rem;
  color: var(--club-text-muted);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6;
}
.academy-page-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
  align-items: center;
}

/* Prose (texte long) */
.prose-club { max-width: 65ch; color: var(--club-text-muted); line-height: 1.7; font-weight: 500; }
.prose-club p { margin-bottom: 1.25rem; }
.prose-club h2 {
  font-family: var(--club-font-display);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--club-text);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.prose-club strong { color: var(--club-text); }
.prose-club ul { margin: 1rem 0 1.25rem; padding-left: 1.5rem; }
.prose-club li { margin-bottom: 0.5rem; }

/* Formulaires Club */
.form-club label,
.theme-club .form-club label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--club-text);
  margin-bottom: 0.375rem;
}
.form-club input,
.form-club select,
.form-club textarea,
.theme-club .form-club input,
.theme-club .form-club select,
.theme-club .form-club textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--club-font-body);
  font-size: 1rem;
  border: 2px solid var(--club-border);
  border-radius: var(--club-radius);
  background: var(--club-surface);
  color: var(--club-text);
  transition: border-color var(--club-transition), box-shadow var(--club-transition);
}
.form-club input:focus,
.form-club select:focus,
.form-club textarea:focus {
  outline: none;
  border-color: var(--club-vert);
  box-shadow: 0 0 0 3px var(--club-focus);
}
.form-club .form-group { margin-bottom: 1.25rem; }

/* Cartes g?n?riques */
.card-club {
  background: var(--club-surface);
  border-radius: var(--club-radius);
  border-left: 4px solid var(--club-vert);
  box-shadow: var(--club-shadow);
  overflow: hidden;
  transition: transform var(--club-transition), box-shadow var(--club-transition);
}
.card-club:hover {
  transform: translateY(-4px);
  box-shadow: var(--club-shadow-lg);
}

/* Tableau Club */
.table-club { width: 100%; border-collapse: collapse; font-size: 0.9375rem; }
.table-club th {
  background: var(--club-text);
  color: var(--club-vert-pale);
  font-weight: 700;
  text-align: left;
  padding: 0.75rem 1rem;
}
.table-club td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--club-border);
  color: var(--club-text-muted);
  font-weight: 500;
}
.table-club tbody tr:hover { background: var(--club-vert-fond); }
.table-wrap-club { overflow-x: auto; border-radius: var(--club-radius); border: 2px solid var(--club-border); }
.table-wrap-club .table-club { min-width: 500px; } /* largeur min pour lisibilit? au scroll horizontal */

.theme-club a:focus-visible,
.theme-club button:focus-visible,
.theme-club .btn-club:focus-visible,
.theme-club .nav-club__link:focus-visible {
  outline: 2px solid var(--club-vert);
  outline-offset: 2px;
}

/* ========== Responsive design ? Mobile, tablette, ordinateur (bonnes pratiques) ========== */
/* ?viter le scroll horizontal sur tout le site */
html { box-sizing: border-box; overflow-x: hidden; }
body { overflow-x: hidden; }
*, *::before, *::after { box-sizing: inherit; }
.theme-club img, .theme-club video { max-width: 100%; height: auto; display: block; }
.theme-club iframe,
.theme-club svg:not([width]):not([height]) {
  max-width: 100%;
}
body.theme-club {
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

/* ----- Mobile (< 640px) ----- */
@media (max-width: 639px) {
  .nav-club__inner { padding: 0 1rem; }
  .nav-club__brand { gap: 0.375rem; min-width: 0; }
  .nav-club__logo { max-height: 2rem; max-width: 4.5rem; }
  .nav-club__brand-txt { font-size: 0.9rem; letter-spacing: 0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 11rem; min-width: 0; }
  .nav-club__toggle {
    min-width: 44px;
    min-height: 44px;
    padding: 0.5rem;
  }
  .mobile-menu-club .nav-club__link {
    min-height: 44px;
    padding: 0.875rem 1rem;
    display: flex;
    align-items: center;
  }
  .mobile-menu-club #menu-close { min-width: 44px; min-height: 44px; }
  .hero-split__panel {
    padding-top: 5rem;
    padding-bottom: 1.25rem;
    text-align: center;
    align-items: center;
  }
  .hero-split__panel-inner {
    max-width: none;
    margin: 0 auto;
    text-align: center;
    align-items: center;
  }
  .hero-split__lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-split__actions {
    justify-content: center;
  }
  .hero-split__title {
    font-size: clamp(1.85rem, 7vw, 2.6rem);
  }
  .welcome-club__heading { padding: 1.5rem 1rem 0; }
  .welcome-club__heading-title { font-size: clamp(1.6rem, 6vw, 2.5rem); }
  .match-scoreboard__teams { flex-direction: column; gap: 0.5rem; }
  .match-scoreboard__vs { order: 0; }
  .page-hero-club {
    padding: max(4.5rem, calc(env(safe-area-inset-top, 0px) + 3.25rem)) 1rem 1.5rem;
  }
  .page-hero-club__title { font-size: 1.75rem; }
  .contact-v2__grid { padding: 0 1rem; }
  .contact-v2__aside { padding: 1.25rem 1rem; }
  .contact-v2__form-inner { padding: 1.5rem 1.25rem; }
  .inscription-form-v3 { padding: 0 1rem 1.5rem; }
  .inscription-form-v3__form { padding: 1.5rem 1.25rem; }
  .cta-club { padding: 2.5rem 1rem; }
  .cta-club__title { font-size: 1.5rem; }
}

/* Tr?s petit ?cran : logo et marque encore plus compacts */
@media (max-width: 380px) {
  .nav-club__logo { max-height: 1.75rem; max-width: 3.5rem; }
  .nav-club__brand-txt { font-size: 0.8rem; max-width: 8rem; }
}

/* Bento : 1 colonne sur tr?s petit ?cran */
@media (max-width: 479px) {
  .bento-club { grid-template-columns: 1fr; }
  .bento-club--3col { grid-template-columns: 1fr; }
}

/* ----- Tablette (640px - 991px) ----- */
@media (min-width: 640px) and (max-width: 991px) {
  .section-club__wrapper { padding: 0 1rem; }
  .contact-v2__grid { grid-template-columns: 1fr; max-width: 36rem; margin-left: auto; margin-right: auto; }
  .contact-v2__aside { max-width: 100%; }
  .footer-club__col--brand .footer-club__desc { max-width: 28ch; }
  .stats-club { gap: 1.25rem; padding: 1.5rem 0; }
  .stat-club__number { font-size: 2.25rem; }
}

/* ----- Ordinateur (992px+) ----- */
@media (min-width: 992px) {
  .welcome-club__heading { padding: 3rem 1.5rem 0; }
  .match-scoreboard { grid-template-columns: 1fr; max-width: 32rem; }
  .footer-club__main { padding: 3rem 1.5rem 2.5rem; }
}

/* Tableaux : scroll horizontal sur mobile/tablette */
.table-wrap-club {
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  margin: 0 -1rem;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .table-wrap-club { margin: 0; padding: 0; }
}

/* Zone de touch suffisante pour les boutons sur mobile */
@media (max-width: 639px) {
  .btn-club { min-height: 44px; padding: 0.875rem 1.5rem; }
  .form-captcha__input-wrap input[type="number"] { font-size: 16px; } /* ?vite zoom iOS */
  .contact-form-v3__input-wrap input,
  .contact-form-v3__input-wrap select { font-size: 16px; }
}

/* Casses de mots longues (?viter d?bordement sur petit ?cran) */
.footer-club__desc, .footer-club__contact, .prose-club { overflow-wrap: break-word; word-wrap: break-word; }

/* Accueil : aucun match ? venir */
.matches-next__empty {
  margin: 0;
  padding: 1.25rem 1rem;
  text-align: center;
  display: block;
  grid-column: 1 / -1; /* sur PC (grille 3 colonnes), occupe toute la ligne */
  justify-self: center;
  width: min(40rem, 100%);
  color: #64748b;
  font-size: 0.95rem;
  border: 1px dashed rgba(148, 163, 184, 0.25);
  border-radius: var(--club-radius);
  background: rgba(255, 255, 255, 0.02);
}

/* Accueil : aucune actualité */
.home-news__empty,
.news-page__empty {
  margin: 0;
  padding: 1.25rem 1rem;
  text-align: center;
  color: #64748b;
  font-size: 0.95rem;
  border: 1px dashed rgba(148, 163, 184, 0.25);
  border-radius: var(--club-radius);
  background: rgba(255, 255, 255, 0.02);
}

/* Message apr?s d?connexion / timeout admin (index.php) */
.site-flash {
  margin: 0;
  padding: max(0.75rem, env(safe-area-inset-top, 0px)) max(1rem, env(safe-area-inset-right, 0px)) 0.75rem max(1rem, env(safe-area-inset-left, 0px));
  text-align: center;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}
.site-flash--info {
  background: rgba(59, 130, 246, 0.12);
  color: #1e3a8a;
}

/* ================================
   Design alternatif : carte 2 zones
   (image à gauche, contenu blanc à droite)
   ================================ */
.home-news__hero-link {
  /* Carte en 2 zones robuste : grille au lieu de flex */
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: 1fr !important;
  position: relative !important;
  height: auto !important;
  min-height: 17rem !important;
}

.home-news__hero-shade {
  display: none !important;
}

.home-news__hero {
  background: #ffffff !important;
  overflow: hidden !important;
}

.home-news__hero-visual {
  position: relative !important;
  width: 100% !important;
  grid-column: 1 !important;
  grid-row: 1 !important;
  height: 100% !important;
}

.home-news__hero-visual img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  transition: none !important;
  transform: none !important;
}

.home-news__hero-content {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  padding: 1.35rem 1.25rem !important;
  background: #ffffff !important;
  grid-column: 1 !important;
  grid-row: 2 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 0.6rem !important;
}

.home-news__hero-title {
  color: var(--club-text) !important;
  text-shadow: none !important;
  margin: 0 !important;
}

.home-news__hero-lead {
  color: #64748b !important;
  text-shadow: none !important;
  margin: 0 !important;
}

.home-news__hero-cta {
  color: var(--club-bleu) !important;
  text-shadow: none !important;
}

.home-news__hero-link:hover .home-news__hero-visual img {
  transform: none !important;
}

/* Sur PC : image à gauche + contenu à droite */
@media (min-width: 600px) {
  .home-news__hero-link {
    grid-template-columns: 1.05fr 0.95fr !important;
  }
  .home-news__hero-visual {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }
  .home-news__hero-content {
    grid-column: 2 !important;
    grid-row: 1 !important;
    padding: 1.9rem 1.75rem !important;
    justify-content: center !important;
  }
}

/* Sur mobile (<600px) : revenir au layout "overlay" pour éviter les décalages */
@media (max-width: 599px) {
  .home-news__hero-link {
    display: block !important;
    position: relative !important;
    min-height: 17rem !important;
    grid-template-columns: unset !important;
    grid-template-rows: unset !important;
  }

  .home-news__hero-shade {
    display: block !important;
  }

  .home-news__hero-visual {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .home-news__hero-content {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    padding: 1.5rem 1.35rem 1.5rem !important;
    background: transparent !important;
    display: block !important;
  }

  /* Remet les couleurs overlay (titre blanc) sur mobile */
  .home-news__hero-title {
    color: #fff !important;
    text-shadow: none !important;
  }

  .home-news__hero-lead {
    color: rgba(255, 255, 255, 0.88) !important;
    text-shadow: none !important;
  }

  .home-news__hero-cta {
    color: var(--club-bleu) !important;
    text-shadow: none !important;
  }
}

/* ========================================================================== */
/* Correctif robuste : affichage image actualité accueil                       */
/* (priorité à la visibilité des images, PC + mobile + tablette)              */
/* ========================================================================== */
.home-news__hero-link {
  display: block !important;
  position: relative !important;
  min-height: 17rem !important;
  height: auto !important;
}

.home-news__hero-visual {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.home-news__hero-visual img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

.home-news__hero-content {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 2 !important;
}

@media (max-width: 899px) {
  .home-news__hero-link {
    min-height: 0 !important;
    aspect-ratio: 900 / 563 !important;
  }
}

/* ========================================================================== */
/* Refonte visuelle : bloc Actualités accueil                                 */
/* ========================================================================== */
.home-news__layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.95fr) !important;
  gap: 1rem !important;
  align-items: stretch !important;
}

.home-news__hero {
  border-radius: 0.95rem !important;
  overflow: hidden !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06) !important;
}

.home-news__hero-link {
  display: grid !important;
  grid-template-rows: 11.5rem minmax(0, 1fr) !important;
  min-height: 0 !important;
  height: 100% !important;
  text-decoration: none !important;
}

.home-news__hero-visual {
  position: relative !important;
  inset: auto !important;
  height: 11.5rem !important;
  width: 100% !important;
}

.home-news__hero-visual img {
  position: static !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  transform: none !important;
}

.home-news__hero-shade {
  display: none !important;
}

.home-news__hero-content {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  padding: 1rem 1.15rem 1.15rem !important;
  background: #ffffff !important;
}

.home-news__hero-title {
  color: #14532d !important;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem) !important;
  line-height: 1.18 !important;
  margin-bottom: 0.45rem !important;
}

.home-news__hero-lead {
  color: #475569 !important;
  margin-bottom: 0.5rem !important;
}

.home-news__hero-cta {
  color: #2563eb !important;
  font-weight: 700 !important;
}

.home-news__list {
  gap: 0.75rem !important;
  height: 100% !important;
}

.home-news__item {
  min-height: 7.75rem !important;
  border-radius: 0.85rem !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04) !important;
}

.home-news__item-thumb {
  width: 7.25rem !important;
  height: 100% !important;
}

.home-news__item-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.home-news__item-body {
  padding: 0.8rem 0.9rem !important;
}

.home-news__item-title {
  color: #14532d !important;
  margin-bottom: 0.25rem !important;
}

.home-news__item-desc {
  color: #64748b !important;
}

@media (max-width: 899px) {
  .home-news__layout {
    grid-template-columns: 1fr !important;
  }

  .home-news__hero-link {
    grid-template-rows: 10rem minmax(0, 1fr) !important;
  }

  .home-news__hero-visual {
    height: 10rem !important;
  }

  .home-news__item {
    min-height: 6.8rem !important;
  }
}

/* -------------------------------------------------------------------------- */
/* Fix occupation photos + CTA "Lire la suite" sur les cartes listées       */
/* -------------------------------------------------------------------------- */
.home-news__hero-visual {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.home-news__hero-visual img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

.home-news__list {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
}

.home-news__item {
  align-items: stretch !important;
}

.home-news__item-thumb {
  min-height: 100% !important;
  align-self: stretch !important;
}

.home-news__item-thumb img {
  min-height: 100% !important;
}

.home-news__item-body {
  justify-content: flex-start !important;
  gap: 0.35rem !important;
}

.home-news__item-cta {
  margin-top: auto !important;
  padding-top: 0.15rem !important;
}

/* ========================================================================== */
/* 3 actualités : rendu homogène (image gauche pleine hauteur)             */
/* ========================================================================== */
.home-news__hero-link {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  height: auto !important;
  min-height: 100% !important;
}

.home-news__hero-visual {
  position: relative !important;
  inset: auto !important;
  flex: 0 0 210px !important;
  width: 210px !important;
  height: auto !important;
}

.home-news__hero-visual img {
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

.home-news__hero-content {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  flex: 1 !important;
  background: #ffffff !important;
  padding: 1.05rem 1.15rem 1.1rem !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 0.6rem !important;
}

.home-news__hero-cta {
  margin-top: auto !important;
  color: var(--club-bleu) !important;
  text-decoration: none !important;
}

@media (max-width: 640px) {
  .home-news__hero-link {
    flex-direction: column !important;
  }

  .home-news__hero-visual {
    flex: 0 0 auto !important;
    width: 100% !important;
  }

  .home-news__hero-visual img {
    height: 10.25rem !important;
  }

  .home-news__hero-content {
    padding: 0.95rem 1rem 1.05rem !important;
  }
}

/* -------------------------------------------------------------------------- */
/* Cartes secondaires (les 2 autres actualités) : split card homogène    */
/* -------------------------------------------------------------------------- */
.home-news__item {
  display: grid !important;
  grid-template-columns: 9.25rem 1fr !important;
  align-items: stretch !important;
  min-height: 10.5rem !important;
}

.home-news__item-thumb {
  width: 100% !important;
  min-height: 100% !important;
  height: auto !important;
}

.home-news__item-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

.home-news__item-body {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  gap: 0.5rem !important;
  padding: 1.1rem 1.1rem 1.05rem !important;
  background: #ffffff !important;
}

.home-news__item-title {
  margin: 0 !important;
  line-height: 1.25 !important;
}

.home-news__item-cta {
  margin-top: auto !important;
}

@media (max-width: 640px) {
  .home-news__item {
    grid-template-columns: 1fr !important;
    grid-template-rows: 10.25rem auto !important;
    min-height: 0 !important;
  }

  .home-news__item-thumb img {
    height: 10.25rem !important;
  }

  .home-news__item-body {
    padding: 0.95rem 1rem 1.05rem !important;
  }
}

/* -------------------------------------------------------------------------- */
/* Page détail actualité (design hero + texte structuré)                */
/* -------------------------------------------------------------------------- */
.news-article {
  background: var(--club-bg);
  padding: 0 0 2.5rem;
}

.news-article__container {
  max-width: 68rem;
  margin: 0 auto;
  padding: 1.35rem 1rem 0;
}

.news-article__header {
  margin-bottom: 0.95rem;
}

.news-article__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  color: var(--club-bleu) !important;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid #dbe4ee;
  padding: 0.48rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
  transition: all var(--club-transition);
}

.news-article__back:hover {
  border-color: #bfdbfe;
  background: #eff6ff;
}

.news-article__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem 0.7rem;
  margin-bottom: 0.75rem;
}

.news-article__title {
  font-family: var(--club-font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  font-size: clamp(1.35rem, 3.2vw, 2.1rem);
  margin: 0;
  color: var(--club-text);
}

.news-article__badge {
  margin: 0;
}

.news-article__date {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--club-text-muted);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 0.34rem 0.65rem;
}

.news-article__hero {
  position: relative;
  width: 100%;
  height: 24rem;
  overflow: hidden;
  background: radial-gradient(circle at 10% 10%, #f8fafc 0%, #eef2ff 40%, #e2e8f0 100%);
  border: 1px solid #cfd8e3;
  border-radius: 1.1rem;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.14);
  max-width: 58rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.news-article__hero-img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #f8fafc;
  border-radius: 0;
  box-shadow: none;
}

.news-article__hero-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(2rem, 7vw, 3.8rem);
  background: linear-gradient(145deg, #14532d 0%, #166534 45%, #1e3a8a 100%);
  border-radius: 0.8rem;
}

.news-article__content {
  max-width: 58rem;
  margin: 1.1rem auto 0;
}

.news-article__excerpt {
  color: #334155;
  font-weight: 600;
  line-height: 1.7;
  margin: 0 0 0.95rem;
  font-size: 1.01rem;
  padding: 1rem 1.1rem;
  border-left: 4px solid #86efac;
  background: #ffffff;
  border-radius: 0.8rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.news-article__excerpt p {
  margin: 0 0 0.75rem;
}

.news-article__excerpt p:last-child {
  margin-bottom: 0;
}

.news-article__body {
  margin: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.2rem 1.2rem 1.4rem;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.news-article__actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.news-article__all-link,
.news-article__home-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #dbe4ee;
  background: #ffffff;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.86rem;
}

.news-article__all-link {
  color: #1e3a8a;
  border-color: #bfdbfe;
  background: #eff6ff;
}

.news-article__home-link {
  color: #334155;
}

.news-article__all-link:hover {
  background: #dbeafe;
}

.news-article__home-link:hover {
  background: #f8fafc;
}

.news-article__body p {
  margin: 0 0 1rem;
  color: var(--club-text);
  line-height: 1.8;
  font-size: 1rem;
}

.news-article__body a {
  color: var(--club-vert);
  font-weight: 900;
}

@media (max-width: 640px) {
  .news-article {
    padding-bottom: 2rem;
  }
  .news-article__container {
    padding: 1rem 0.9rem 0;
  }
  .news-article__title {
    font-size: clamp(1.22rem, 6vw, 1.55rem);
  }
  .news-article__hero {
    height: 18rem;
    padding: 0;
  }
  .news-article__excerpt {
    font-size: 0.96rem;
    padding: 0.9rem 0.95rem;
  }
  .news-article__body {
    padding: 0.95rem 0.95rem 1.15rem;
  }
}

/* -------------------------------------------------------------------------- */
/* Accueil - bloc Actualités (refonte homogène)                               */
/* -------------------------------------------------------------------------- */
.section-club--home-news {
  background: #f8fafc;
}

.home-news__wrap {
  max-width: 72rem;
}

.home-news__header {
  margin-bottom: 1rem !important;
}

.home-news__layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr) !important;
  gap: 0.85rem !important;
  align-items: stretch !important;
}

.home-news__hero,
.home-news__item {
  border: 1px solid #e2e8f0 !important;
  border-radius: 0.8rem !important;
  overflow: hidden !important;
  background: #ffffff !important;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05) !important;
}

.home-news__hero-link {
  display: grid !important;
  grid-template-columns: 0.95fr 1.25fr !important;
  min-height: 23rem !important;
  text-decoration: none !important;
}

.home-news__hero-visual {
  position: relative !important;
  min-height: 100% !important;
}

.home-news__hero-visual img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.home-news__hero-shade {
  display: none !important;
}

.home-news__hero-content {
  position: relative !important;
  inset: auto !important;
  padding: 0.95rem 1rem !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  gap: 0.55rem !important;
  background: #ffffff !important;
}

.home-news__pill {
  display: inline-flex !important;
  align-items: center !important;
  height: 1.35rem !important;
  padding: 0 0.65rem !important;
  border-radius: 999px !important;
  font-size: 0.62rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  width: min(100%, 12rem) !important;
}

.home-news__hero-title {
  margin: 0 !important;
  font-size: clamp(1.25rem, 2.25vw, 1.85rem) !important;
  line-height: 1.15 !important;
  color: #0f172a !important;
}

.home-news__hero-lead {
  margin: 0 !important;
  color: #334155 !important;
  line-height: 1.5 !important;
}

.home-news__hero-cta,
.home-news__item-cta {
  margin-top: auto !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  color: #1e3a8a !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.home-news__list {
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  gap: 0.85rem !important;
  list-style: none !important;
}

.home-news__item {
  display: grid !important;
  grid-template-columns: 0.9fr 1.25fr !important;
  min-height: 11rem !important;
  text-decoration: none !important;
}

.home-news__item-thumb {
  width: 100% !important;
  min-height: 100% !important;
}

.home-news__item-thumb img {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
}

.home-news__item-body {
  padding: 0.85rem 0.9rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.4rem !important;
}

.home-news__item-title {
  font-size: 1.15rem !important;
  line-height: 1.2 !important;
  margin: 0 !important;
  color: #0f172a !important;
}

.home-news__item-desc {
  color: #475569 !important;
  margin: 0 !important;
}

@media (max-width: 991px) {
  .home-news__layout {
    grid-template-columns: 1fr !important;
  }
  .home-news__hero-link {
    min-height: 19rem !important;
  }
}

@media (max-width: 640px) {
  .home-news__hero-link,
  .home-news__item {
    grid-template-columns: 1fr !important;
  }
  .home-news__hero-visual {
    min-height: 12rem !important;
  }
  .home-news__item-thumb {
    min-height: 10.5rem !important;
  }
}

/* -------------------------------------------------------------------------- */
/* Accueil - Actualités sans grand bloc gauche                                */
/* -------------------------------------------------------------------------- */
.home-news__layout {
  display: block !important;
}

.home-news__hero {
  display: none !important;
}

.home-news__list {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 1rem !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.home-news__list > li {
  min-width: 0;
}

.home-news__item {
  display: flex !important;
  flex-direction: column !important;
  min-height: 100% !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 0.9rem !important;
  overflow: hidden !important;
  background: #ffffff !important;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06) !important;
  text-decoration: none !important;
}

.home-news__item-thumb {
  width: 100% !important;
  min-height: 12rem !important;
}

.home-news__item-thumb img {
  width: 100% !important;
  height: 100% !important;
  min-height: 12rem !important;
  object-fit: cover !important;
  display: block !important;
}

.home-news__item-body {
  padding: 0.95rem 1rem 1rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.45rem !important;
  flex: 1 !important;
}

.home-news__item-title {
  margin: 0 !important;
  font-size: 1.08rem !important;
  line-height: 1.25 !important;
  color: #0f172a !important;
}

.home-news__item-desc {
  margin: 0 !important;
  color: #475569 !important;
}

.home-news__item-cta {
  margin-top: auto !important;
}

@media (max-width: 991px) {
  .home-news__list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .home-news__list {
    grid-template-columns: 1fr !important;
  }
}

/* -------------------------------------------------------------------------- */
/* Actualité détail - image toujours visible sans déformation                 */
/* -------------------------------------------------------------------------- */
.news-article__hero {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  height: 27rem !important;
  min-height: 27rem !important;
  max-height: 27rem !important;
  padding: 0.15rem !important;
  background: #eef2f7 !important;
}

.news-article__hero-img {
  width: auto !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  image-rendering: auto;
  display: block !important;
  background: #eef2f7 !important;
}

@media (max-width: 640px) {
  .news-article__hero {
    height: 14rem !important;
    min-height: 14rem !important;
    max-height: 14rem !important;
    padding: 0.1rem !important;
  }
}

/* -------------------------------------------------------------------------- */
/* Boutique - image produit toujours entière (portrait/paysage)               */
/* -------------------------------------------------------------------------- */
.boutique-card__visual--photo {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  background: #eef2f7 !important;
  aspect-ratio: 4 / 3 !important;
  height: 15rem !important;
  min-height: 15rem !important;
  padding: 0.15rem !important;
}

.boutique-card__visual--photo img {
  width: auto !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block !important;
}

@media (max-width: 640px) {
  .boutique-card__visual--photo {
    height: 12rem !important;
    min-height: 12rem !important;
    padding: 0 !important;
  }
}

/* -------------------------------------------------------------------------- */
/* Accueil - Actualités (premium)                                             */
/* -------------------------------------------------------------------------- */
.section-club--home-news .home-news__header {
  align-items: end !important;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #e2e8f0;
}

.section-club--home-news .home-news__all {
  font-weight: 800 !important;
  color: #1e3a8a !important;
}

.home-news__list {
  margin-top: 0.25rem !important;
}

.home-news__item {
  transition: transform var(--club-transition), box-shadow var(--club-transition), border-color var(--club-transition) !important;
}

.home-news__item:hover {
  transform: translateY(-4px) !important;
  border-color: #cbd5e1 !important;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.1) !important;
}

.home-news__item-thumb {
  aspect-ratio: 16 / 10;
  min-height: 0 !important;
  background: #f8fafc !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.home-news__item-thumb img {
  min-height: 0 !important;
  object-fit: contain !important;
  object-position: center !important;
  background: #f8fafc !important;
}

.home-news__pill {
  border: 1px solid #dbe4ee !important;
}

.home-news__item-title {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.home-news__item-desc {
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  min-height: 3.9em;
}

.home-news__item-cta {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.35rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
}

.home-news__item-cta::after {
  content: "\2192";
  font-size: 0.95em;
  line-height: 1;
}

/* -------------------------------------------------------------------------- */
/* Page Actualités - image entièrement visible dans les cartes                */
/* -------------------------------------------------------------------------- */
.news-page .news-card-club__thumb {
  height: 12.75rem !important;
  min-height: 12.75rem !important;
  aspect-ratio: auto !important;
  background: #eef2f7 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  padding: 0.15rem !important;
}

.news-page .news-card-club__thumb img {
  position: static !important;
  width: auto !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block !important;
}

@media (max-width: 640px) {
  .news-page .news-card-club__thumb {
    height: 11.5rem !important;
    min-height: 11.5rem !important;
  }
}

/* -------------------------------------------------------------------------- */
/* Page Équipe — organigramme hiérarchique du staff                            */
/* -------------------------------------------------------------------------- */
.staff-org {
  max-width: 72rem;
  margin: 0 auto;
}

.staff-org__level {
  position: relative;
}

.staff-org__tier-label {
  margin: 0 0 0.85rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #64748b;
  text-align: center;
}

.staff-org__tier {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.staff-org__tier--grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .staff-org__tier--grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.staff-org__tier--grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 52rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .staff-org__tier--grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.staff-org__level--president .staff-org__tier {
  width: 100%;
  max-width: 22rem;
  margin: 0 auto;
}

/* Cartes staff : rendu identique (président, direction, coaches) */
.staff-org .staff-card {
  width: 100%;
  max-width: 22rem;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.35rem 1.1rem 1.25rem;
  border: 2px solid var(--club-border);
  border-radius: 1rem;
  background: var(--club-surface);
  box-shadow: var(--club-shadow);
}

.staff-org .staff-card--featured {
  border-color: var(--club-border);
  box-shadow: var(--club-shadow);
}

.staff-org .staff-card--featured .staff-card__role {
  font-size: 0.875rem;
  color: var(--club-vert);
}

.staff-org .staff-card:nth-child(even) .staff-card__role {
  color: var(--club-vert);
}

.staff-org .staff-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--club-shadow-lg);
  border-color: var(--club-vert);
}

.staff-org .staff-card:nth-child(even):hover {
  border-color: var(--club-vert);
}

.staff-org .staff-card__avatar {
  width: 100%;
  max-width: 13rem;
  margin-bottom: 0.9rem;
}

@media (min-width: 480px) {
  .staff-org .staff-card__avatar {
    max-width: 14rem;
  }
}

.staff-org .staff-card__name {
  font-size: 1.05rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}

.staff-org .staff-card__role {
  flex-grow: 0;
  min-height: 2.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--club-vert);
}

.staff-org .staff-card__tel {
  margin-top: auto;
}

.staff-org__connector {
  width: 2px;
  height: 1.75rem;
  margin: 0.35rem auto 0.85rem;
  background: linear-gradient(180deg, #cbd5e1, #94a3b8);
  border-radius: 2px;
}

.staff-org__level--direction .staff-org__tier-label {
  margin-top: 0.25rem;
}

.staff-org__level--coaches .staff-org__tier-label {
  margin-top: 0.25rem;
}

@media (max-width: 639px) {
  .staff-org__connector {
    height: 1.35rem;
  }
}
