/* -----------------------------
   VARIABLES & BASE GLOBALE
------------------------------*/
:root {
  --bg-body: #020617;        /* fond général très sombre */
  --bg-main: #020617;
  --bg-card: #020617;
  --bg-alt: #030712;

  --text-main: #e5e7eb;      /* gris clair */
  --text-muted: #9ca3af;
  --text-strong: #f9fafb;

  --accent: #f97316;         /* orange énergie */
  --accent-soft: rgba(249, 115, 22, 0.15);

  --border-soft: #1f2937;
  --border-strong: #4b5563;

  --radius-card: 1rem;
  --radius-pill: 999px;

  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.7);
  --shadow-accent: 0 0 30px rgba(249, 115, 22, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #0b1120 0, #020617 55%, #000 100%);
  color: var(--text-main);
  line-height: 1.6;
}

/* -----------------------------
   LIENS, TEXTES, TITRES
------------------------------*/
a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

p {
  margin: 0 0 0.75rem 0;
  font-size: 0.98rem;
}

h1, h2, h3 {
  margin: 0 0 0.6rem 0;
  font-weight: 700;
  color: var(--text-strong);
}

h1 {
  font-size: 2.3rem;
  line-height: 1.15;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.1rem;
}

/* -----------------------------
   LAYOUT GLOBAL
------------------------------*/
main {
  background: transparent;
}

section {
  padding: 2.5rem 0;
}

section.alt {
  background: var(--bg-alt);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* -----------------------------
   HEADER & NAV
------------------------------*/
header {
  background: rgba(2, 6, 23, 0.95);
  border-bottom: 1px solid #111827;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 110px;
  width: auto;
  display: block;
}

/* override spécifique header pour un logo plus compact */
header .logo-img {
  height: 72px; /* ajustable 64–80px */
  width: auto;
  display: block;
  transform: none;
  transform-origin: initial;
}

.logo-text {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-strong);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--text-main);
  text-decoration: none;
  position: relative;
  padding-bottom: 0.15rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.nav-active {
  color: var(--accent);
}

.nav-links a.nav-active::after {
  width: 100%;
}

/* -----------------------------
   BOUTONS
------------------------------*/
.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  outline: none;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: #111827;
  font-weight: 600;
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  background: #fb923c;
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-secondary {
  border: 1px solid var(--border-strong);
  color: var(--text-main);
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(148, 163, 184, 0.15);
  text-decoration: none;
}

/* -----------------------------
   HERO (PAGE D'ACCUEIL)
------------------------------*/
.hero {
  padding: 3rem 0 2.5rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.2);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.hero p {
  font-size: 0.98rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

/* Carte mise en avant dans le hero */
.hero-card {
  background: radial-gradient(circle at top, rgba(249, 115, 22, 0.15) 0, #020617 40%);
  border-radius: var(--radius-card);
  padding: 1.5rem 1.5rem 1.7rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.hero-card h2 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.hero-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-card ul {
  margin: 0.8rem 0 0.8rem 1.1rem;
  padding: 0;
  font-size: 0.9rem;
  color: var(--text-main);
}

.hero-card li {
  margin-bottom: 0.25rem;
}

.hero-price {
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.hero-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* -----------------------------
   SECTIONS & GRILLES GÉNÉRALES
------------------------------*/
.section-title {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.96rem;
  max-width: 700px;
  margin-bottom: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

/* Cartes génériques */
.card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 1.25rem 1.4rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.8);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.card p {
  font-size: 0.95rem;
  color: #d1d5db;
}

/* Tag dans cartes */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.7rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.16);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.card .price {
  margin-top: 0.7rem;
  font-weight: 700;
  font-size: 1.05rem;
}

/* Mise en avant plan recommandé */
.card-highlight {
  border: 1px solid var(--accent);
  box-shadow: var(--shadow-accent);
}

.tag-reco {
  background: var(--accent);
  color: #111827;
  font-weight: 700;
}

/* Bouton en bas de carte */
.card .btn {
  margin-top: auto;
  align-self: center;
  margin-bottom: 1rem;
}

/* -----------------------------
   CARTES PROGRAMMES (ancienne classe .program-card)
------------------------------*/
.program-card {
  position: relative;
  background: #111;
  border: 1px solid #333;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 40px;
}

.program-card h2 {
  color: #ff6b1a;
  margin-bottom: 15px;
}

.program-intro {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #ddd;
}

.program-list li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.program-price {
  margin-top: 20px;
  font-size: 1.1em;
}

.program-btn {
  margin-top: 20px;
  display: inline-block;
  background: #ff6b1a;
  color: #111;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.program-btn:hover {
  background: #ff7f30;
}
.programs-hero {
      padding: 3rem 0 2rem;
    }

    .programs-hero .section-title {
      margin-bottom: 0.75rem;
    }

    .programs-hero .section-subtitle {
      margin-bottom: 1.5rem;
    }

    .programs-intro h2 {
      margin-top: 1.5rem;
      margin-bottom: 0.5rem;
    }

    .programs-intro p {
      margin-bottom: 0.75rem;
    }

    .programs-list {
      padding: 2rem 0;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.5rem;
    }

    .card {
      position: relative;
    }

    .geo-note {
      font-size: 0.85rem;
      opacity: 0.85;
      margin-top: 0.5rem;
    }

    .program-method-line {
      margin: 0.75rem 0;
      font-size: 0.9rem;
    }

    .program-method-line a {
      text-decoration: underline;
      text-underline-offset: 2px;
      opacity: 0.9;
    }

    @media (max-width: 900px) {
      .grid-3 {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      header .container.nav {
        flex-wrap: wrap;
        gap: 0.5rem;
      }

      .logo-img {
        max-width: 140px;
        height: auto;
      }

      .nav-links {
        display: flex;
        flex-wrap: wrap;
        gap: 0.4rem 0.8rem;
        font-size: 0.9rem;
      }

      .card {
        padding: 1.25rem;
      }

      footer .container {
        font-size: 0.8rem;
        text-align: center;
      }
    }

/* -----------------------------
   BADGES NOLIO / ULTRARIDE
------------------------------*/

/* Wrapper en haut à droite des cartes programme (.card ou .program-card) */
.program-badge-wrapper {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 10;
}

.program-badge-wrapper a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

/* Badge : logo à taille quasi native + ombre légère 3D, SANS contour */
.program-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0;

  /* ombre douce autour du logo pour le détacher du fond */
  filter: drop-shadow(0px 6px 12px rgba(0, 0, 0, 0.45));
}

/* Taille standard : hauteur douce, largeur auto */
.program-badge img {
  height: 46px;
  width: auto;
  display: block;
}

/* Signe + entre les deux logos */
.program-badge-plus {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--accent);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Ligne "Méthode" en bas de carte */
.program-method-line {
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.program-method-line {
  margin-top: 1.2rem;
  margin-bottom: 0.9rem;        /* espace avant le bouton */
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  text-align: center;           /* centrage du texte */
}

.program-method-line a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-weight: 500;
}
/* ===============================
   MÉTHODE – BADGES NOLIO + ULTRARIDE
================================ */

/* Conteneur des badges */
.nolio-ur-badges {
  display: flex;
  align-items: center;   /* centre verticalement tout le monde */
  gap: 0.6rem;
  margin: 0.75rem 0 1rem;
}

/* Logos */
.nolio-ur-badges .program-badge img {
  height: 35px;          /* ↓ réduit légèrement */
  width: auto;
  display: block;
}

/* Symbole + */
.nolio-ur-badges .program-badge-plus {
  font-size: 1.3rem;     /* ↑ un peu plus grand */
  line-height: 1;
  position: relative;
  top: -1px;             /* remonte légèrement le + */
  opacity: 0.85;
}

/* -----------------------------
   BLOC CTA
------------------------------*/
.cta {
  text-align: center;
}

.cta p {
  max-width: 650px;
  margin: 0.4rem auto 1.2rem auto;
  color: var(--text-muted);
}

/* -----------------------------
   FOOTER
------------------------------*/
footer {
  border-top: 1px solid #111827;
  background: #020617;
  padding: 1.5rem 0;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

footer a {
  color: var(--text-muted);
}

/* -----------------------------
   FORMULAIRES (PAGE CONTACT)
------------------------------*/
form {
  max-width: 650px;
  margin: 0 auto;
}

label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  color: var(--text-main);
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border-radius: 0.5rem;
  border: 1px solid #374151;
  background: #020617;
  color: var(--text-main);
  font-size: 0.92rem;
  outline: none;
  margin-bottom: 0.9rem;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-soft);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* -----------------------------
   PAGE ARTICLES
------------------------------*/
.articles-section {
  background: #020617;
  border-top: 1px solid #111827;
  border-bottom: 1px solid #111827;
  padding: 2.5rem 0 3rem 0;
}

.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}

.article-card {
  background: #0b1120;
  border-radius: 1.25rem;
  border: 1px solid #1f2937;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.9);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.article-card-muted {
  background: #020617;
  border-style: dashed;
}

.article-thumb img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.article-body {
  padding: 1.25rem 1.3rem 1.3rem;
}

.article-card h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.article-card h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 60%;
  height: 3px;
  background: var(--accent);
  border-radius: 999px;
}

.article-card p {
  color: #d1d5db;
  font-size: 0.94rem;
}

.article-muted-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* Images dans articles génériques */
.article-image {
  margin: 2rem 0;
  text-align: center;
}

.article-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.article-image figcaption {
  margin-top: .5rem;
  font-size: .9rem;
  color: #555;
  font-style: italic;
}

/* -----------------------------
   PAGE À PROPOS (BLOC ABOUT)
------------------------------*/
.geo-note {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  color: #9ca3af;
}

.about {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  background: radial-gradient(circle at top left, rgba(248, 113, 38, 0.15), transparent 55%),
              #020617;
  border-radius: 1.5rem;
  border: 1px solid #1f2937;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
  color: #e5e7eb;
}

.about h1 {
  font-size: 2.1rem;
  margin-bottom: 0.75rem;
  color: #f97316;
  text-align: center;
}

.about h1::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  margin: 0.75rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #f97316, #fb923c);
}

.about h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #fbbf24;
}

.about p {
  margin-bottom: 0.9rem;
  line-height: 1.7;
  font-size: 0.98rem;
  color: #e5e7eb;
}

.about strong {
  color: #fde68a;
}

.about p + h2 {
  margin-top: 2.3rem;
}

.about .cta {
  margin-top: 2.5rem;
  text-align: center;
}

.about .btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #f97316, #fb923c);
  color: #0b1120;
  font-weight: 600;
  text-decoration: none;
  border: none;
  box-shadow: 0 12px 30px rgba(248, 113, 38, 0.55);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.about .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(248, 113, 38, 0.7);
  filter: brightness(1.05);
}

@media (min-width: 768px) {
  .about {
    padding: 3.5rem 3rem 4rem;
  }

  .about h1 {
    font-size: 2.4rem;
  }

  .about p {
    font-size: 1rem;
  }
}

/* -----------------------------
   PAGE À PROPOS (PHOTOS & LAYOUT)
------------------------------*/
.apropos-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
}

.apropos-header {
  display: flex;
  justify-content: center;
  margin: 20px 0 30px;
}

.apropos-photo img {
  max-width: 220px;
  width: 100%;
  height: auto;
  border-radius: 999px;
  border: 2px solid #ff6b1a;
  display: block;
}

.apropos-figure {
  margin: 30px auto;
  max-width: 1000px;
}

.apropos-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.apropos-figure figcaption {
  font-size: 0.9rem;
  color: #ccc;
  margin-top: 6px;
  text-align: center;
}

.apropos-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.apropos-portrait {
  flex: 0 0 260px;
}

.apropos-texte {
  flex: 1 1 260px;
}

/* Photo générique */
.apropos-photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Photo verticale trek montagne : largeur limitée sur PC */
.apropos-photo-verticale {
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.apropos-section {
  margin-bottom: 2.5rem;
}

.apropos-cta {
  text-align: center;
}

/* -----------------------------
   BLOCS DIVERS
------------------------------*/
.plan-essentiel-mini {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.plan-essentiel-mini strong {
  font-size: 1rem;
  color: #fff;
}

.link-arrow {
  color: #f97316;
  text-decoration: none;
  margin-left: 0.35rem;
  font-weight: 600;
}

.link-arrow:hover {
  text-decoration: underline;
}

/* -----------------------------
   RESPONSIVE – TABLETTE & MOBILE
------------------------------*/
/* Écran <= 900px */
@media (max-width: 900px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .nav-links {
    justify-content: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.3rem;
  }

  .hero-card {
    margin-top: 1rem;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta {
    text-align: center;
  }
}

/* Grille Articles en 2 colonnes sur grand écran */
@media (min-width: 900px) {
  .articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Écran <= 600px (smartphone) */
@media (max-width: 600px) {
  .container {
    padding: 0 1.1rem;
  }

  h1 {
    font-size: 1.9rem;
  }

  .nav {
    align-items: center;
  }

  .logo-text {
    font-size: 0.9rem;
  }

  /* Logo plus lisible sur mobile */
  header .logo-img { height: 56px; }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .card {
    margin-bottom: 0.5rem;
  }

  section {
    padding: 2rem 0;
  }

  .article-thumb img {
    height: 170px;
  }

  .apropos-figure img {
    max-height: 260px;
    border-radius: 10px;
  }
}
/* ==== FIX FINAL BADGES — TAILLE + OMBRE PREMIUM ==== */

.program-badge-wrapper {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  z-index: 10;
}

.program-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0;

  /* Ombre premium propre et visible */
  filter: drop-shadow(0px 6px 10px rgba(0,0,0,0.55));
}

.program-badge img {
  height: 38px; /* taille réduite */
  width: auto;
  display: block;
}

.program-badge-plus {
  font-weight: 700;
  font-size: 1.1rem;
  color: #000000;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}
/* ==== BADGE FOND NOIR 3D PRO ==== */
.program-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  
  /* --- Agrandissement du fond blanc (cercle) --- */
  width: 40px;   /* ANCIEN: 33px */
  height: 40px;  /* ANCIEN: 33px */
  background: #FFFFFF;
  border-radius: 50%;
  
  /* effet 3D propre (garder) */
  box-shadow: 0 4px 10px rgba(0,0,0,0.55);
  transition: all 0.3s ease;
  
  /* --- Ajustement de la marge intérieure (padding) --- */
  padding: 0px; /* ANCIEN: 6px */
}

/* Hover (garder) */
.program-badge:hover {
  box-shadow: 0 6px 15px rgba(0,0,0,0.7);
  transform: translateY(-2px);
}

.program-badge img {
  /* --- Agrandissement de l'image (logo) --- */
  height: 40px; /* ANCIEN: 34px - Rempli 60px - 2x10px de padding */
  width: 40px;
  display: block;
}

/* Signe plus pour double badge (à ajuster aussi pour être proportionnel) */
.program-badge-plus {
  font-weight: 700;
  font-size: 1.8rem; /* ANCIEN: plus petit */
  color: var(--accent); /* Couleur orange (accent) */
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
  margin: 0 5px; /* petite marge entre les badges */
}
}
/* ===== Agrandir uniquement le logo Nolio sur la carte du plan Essentiel (page d'accueil) ===== */

.plan-essentiel-mini .program-badge img {
  height: 44px !important;  /* au lieu de 38px */
}
/* ==== Signe + en blanc sur tout le site ==== */
.program-badge-plus {
  font-weight: 700;
  font-size: 1.3rem;
  color: #ffffff !important;   /* blanc pur */
  text-shadow: none !important; /* plus de halo noir ou orange */
}
.methode-flex {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 1.2rem;
}

.methode-flex .text {
  flex: 1 1 60%;
}

.methode-flex .media {
  flex: 0 0 300px;
}

.methode-flex img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* Mobile */
@media (max-width: 768px) {
  .methode-flex {
    flex-direction: column;
  }
  .methode-flex .media {
    max-width: 100%;
  }
}
.methode-flex .media {
  flex: 0 0 220px !important;
  max-width: 240px !important;
}
/* Espace plus serré entre les sections 1 et 2 de la méthode */
.methode-section--tight-bottom {
  padding-bottom: 0.8rem;  /* au lieu de 2rem */
}

.methode-section--tight-top {
  padding-top: 0.8rem;     /* au lieu de 2rem */
  border-top: none;        /* pas de ligne entre 1 et 2 */
}
.nolio-ur-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.75rem;
}
  .form-wrapper {
    max-width: 900px;
    margin: 2rem auto 0;
    border-radius: 1rem;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.3);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.9);
  }

  .form-wrapper iframe {
    display: block;
    width: 100%;
    border: none;
  }

  @media (max-width: 768px) {
    .form-wrapper {
      margin-top: 1.5rem;
      border-radius: 0.75rem;
    }
  }
/* Hero compact */
.hero-small {
  padding: 40px 0 50px 0;
  text-align: center;
}

.hero-media-small img {
  width: 100%;
  max-width: 780px; /* taille max affichée */
  height: auto;
  border-radius: 12px;
  margin: 25px auto;
  display: block;
}

.hero-small h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.hero-small .hero-subtitle {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 20px auto;
}
.hero-media-small img {
  width: 100%;
  max-width: 550px;  /* tu peux réduire à 550px si tu veux encore plus petit */
  border-radius: 12px;
  display: block;
  margin: 25px auto;
  height: auto;
}
/* Réduction forte des miniatures plan + bilan */
.methode-thumbs img {
  width: 100%;
  max-width: 180px;   /* taille maximale */
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}
/* Réduction de la grande photo nocturne */
.apropos-photo-wide {
  max-width: 750px;       /* change à 750px ou 650px si tu veux encore plus petit */
  margin: 1.5rem auto;    /* centre la photo */
}

.apropos-photo-wide img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 12px 30px rgba(15,23,42,0.9);
  border: 1px solid rgba(15,23,42,0.9);
  object-fit: cover;
}
.methode-thumbs {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 2rem;
}

.thumb-item {
  text-align: center;
  width: 220px; /* taille identique pour chaque vignette */
}

.thumb-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  margin-bottom: 0.6rem;
}
.cta-guide {
  margin: 2.5rem 0 2rem;        /* espace au-dessus et au-dessous */
  display: flex;
  justify-content: center;      /* centre le bouton */
}

.cta-guide .btn-primary {
  font-size: 1rem;
  padding: 0.9rem 2.4rem;       /* bouton un peu plus large et lisible */
  text-align: center;
}

/* =========================================================
   GLOBAL FOOTER (structure)
   ========================================================= */
.footer-content{
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1.2rem;
  text-align: center;
  font-size: 0.95rem;
  color: #cbd5e1;
}
.footer-content p + p{ margin-top: .5rem; }
.footer-content a{ color: inherit; }
.footer-content a:hover{ color: #f97316; }

/* =========================================================
   ARTICLES – LAYOUT GLOBAL (à utiliser sur tous les guides)
   ========================================================= */
.article-layout{
  max-width: 800px;
  margin: 0 auto;
}
.article-layout h1{ margin-bottom: .5rem; }
.article-layout h2{ margin-top: 1.8rem; }
.article-layout h3{ margin-top: 1.2rem; }

.article-subtitle,
.section-subtitle{
  font-size: 1rem;
  color: #d1d5db;
  margin-bottom: 1.5rem;
}

.article-figure{
  margin: 1.7rem 0;
  text-align: center;
}
.article-figure img{
  width: 100%;
  max-width: 92%;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.8);
  border: 1px solid #1f2937;
  margin: 0 auto;
  display: block;
}
.article-figure figcaption{
  font-size: 0.85rem;
  color: #9ca3af;
  margin-top: 0.35rem;
}

.highlight-box,
.coach-tip,
.danger-box{
  padding: 1rem 1.2rem;
  border-radius: 0.8rem;
  margin: 1.7rem 0;
  font-size: 0.95rem;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid #1f2937;
}
.highlight-box{ border-left: 3px solid #f97316; }
.coach-tip{ border-left: 3px solid #3b82f6; }
.danger-box{ border-left: 3px solid #ef4444; }

.cta-center{
  display: flex;
  gap: .8rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 2rem 0 1.2rem;
}

/* FAQ dans les articles */
.faq-block{
  margin-top: 2.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.faq-block details{
  background: rgba(255,255,255,.06);
  padding: 1rem;
  border-radius: .75rem;
  margin: 1rem 0;
  border: 1px solid #1e293b;
}
.faq-block summary{
  cursor: pointer;
  color: #f97316;
  font-weight: 700;
}
.faq-block p{ margin-top: .75rem; }

/* =========================================================
   PAGES LÉGALES (CGU/CGV/Mentions)
   ========================================================= */
.legal-page{
  padding: 3rem 0 4rem;
}
.legal-page h1{
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
}
.legal-page h2{
  margin-top: 2rem;
  margin-bottom: .75rem;
  font-size: 1.4rem;
}
.legal-page p,
.legal-page ul{
  margin-bottom: .75rem;
  line-height: 1.7;
  color: #e2e8f0;
}
.legal-page ul{
  padding-left: 1.3rem;
  list-style: disc;
}
.legal-meta{
  font-size: .9rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px){
  .legal-page h1{ font-size: 1.8rem; }
}

/* =========================================================
   À PROPOS (déplacement du <style> inline de apropos.html)
   ========================================================= */
.apropos-hero{ padding: 3rem 0 2.5rem; }

.apropos-grid{
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
}
.apropos-intro{
  flex: 1 1 55%;
  min-width: 0;
}
.apropos-intro p{ margin-top: .75rem; }

.apropos-photo-main{
  flex: 1 1 35%;
  max-width: 420px;
  margin: 0 auto;
}
.apropos-photo-main img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.9);
  object-fit: cover;
}

.apropos-section{
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.apropos-layout-2col{
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}
.apropos-text{
  flex: 1 1 55%;
  min-width: 0;
}
.apropos-text p + p{ margin-top: .75rem; }

.apropos-photo-secondary{
  flex: 1 1 35%;
  max-width: 420px;
  margin: 0 auto;
}
.apropos-photo-secondary img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(15, 23, 42, 0.9);
  object-fit: cover;
}

.apropos-photo-wide{ margin-top: 1.5rem; }
.apropos-photo-wide img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.9);
  object-fit: cover;
}

.apropos-list{ margin: .75rem 0 .75rem 1.2rem; }
.apropos-list li + li{ margin-top: .25rem; }

.apropos-cta{
  text-align: center;
  padding: 2.5rem 0 3rem;
}

@media (max-width: 768px){
  .apropos-grid,
  .apropos-layout-2col{ flex-direction: column; }

  .apropos-photo-main,
  .apropos-photo-secondary{ max-width: 100%; }
}
/* ===============================
   HOME – CONTRÔLE DES IMAGES
   (ex-style inline index.html)
================================ */

/* HERO */
.hero-media {
  flex: 1;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.9);
  object-fit: cover;
}

/* PHOTO À PROPOS (HOME) */
.about-photo {
  flex: 1;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.about-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(15, 23, 42, 0.9);
  object-fit: cover;
}

/* THUMBNAIL NOLIO */
.nolio-ur-thumbnail img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 0.75rem;
}

/* IMAGES GÉNÉRIQUES (sécurité) */
main img {
  max-width: 100%;
  height: auto;
}
/* ===============================
   HOME – RAPPEL À PROPOS (LAYOUT)
================================ */

.about-teaser {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: stretch;
}

/* Desktop : texte à gauche / photo à droite */
@media (min-width: 900px) {
  .about-teaser {
    flex-direction: row;
    align-items: center;
  }

  .about-text {
    flex: 1.2;
  }

  .about-photo {
    flex: 1;
  }
}
/* ===============================
   HOME – GIF NOLIO (TAILLE & ESPACEMENT)
================================ */

/* Conteneur du visuel */
.nolio-ur-thumbnail {
  margin-top: 1.25rem;   /* espace avec le CTA au-dessus */
  padding: 0.75rem;
  display: flex;
  justify-content: center;
}

/* GIF */
.nolio-ur-thumbnail img {
  width: 100%;
  max-width: 400px;      /* ↓ réduit légèrement le GIF */
  height: auto;
}

/* ===============================
   LOGOS NOLIO + ULTRARIDE
   (AUTRES PAGES – RENDU HISTORIQUE)
================================ */

/* Conteneur badges */
.nolio-ur-badges {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.75rem 0 1rem;
}

/* Logos */
.nolio-ur-badges .program-badge img {
  height: 48px;       /* TAILLE D’ORIGINE */
  width: auto;
  display: block;
}

/* Symbole + */
.nolio-ur-badges .program-badge-plus {
  font-size: 1.1rem;  /* TAILLE D’ORIGINE */
  line-height: 1;
  position: relative;
  top: 0;             /* ALIGNEMENT D’ORIGINE */
  font-weight: 600;
}



/* ===============================
   HOME – NOLIO : LAYOUT DESKTOP
================================ */

.nolio-ur-grid {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

/* Desktop : texte à gauche / GIF à droite */
@media (min-width: 900px) {
  .nolio-ur-grid {
    flex-direction: row;
    align-items: center;
  }

  .nolio-ur-text {
    flex: 1.4;
  }

  .nolio-ur-thumbnail {
    flex: 1;
    margin-top: 0; /* annule l'espacement mobile */
  }
}
/* ===============================
   PAGE MÉTHODE
================================ */

.method-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.method-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.9rem;
  padding: 1.5rem;
}

.method-card h3 {
  margin-bottom: 0.5rem;
}

.method-card p {
  font-size: 0.95rem;
  line-height: 1.55;
}

.method-highlight {
  background: rgba(249,115,22,0.12);
  border-left: 4px solid #f97316;
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}

.method-steps {
  margin: 1.5rem 0;
  padding-left: 1.2rem;
}

.method-steps li {
  margin-bottom: 0.4rem;
}

/* Desktop */
@media (min-width: 900px) {
  .method-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}
/* =====================================================
   OVERRIDE – BADGES DANS program-badge-wrapper
   (cartes Programmes + mini Plan Essentiel index)
===================================================== */

.program-badge-wrapper{
  top: 0.85rem;
  right: 0.85rem;
  gap: 0.35rem;
}

/* Logos plus petits UNIQUEMENT dans les wrappers */
.program-badge-wrapper .program-badge img{
  height: 40px;      /* ajuste 28–32px */
  width: auto;
}

/* + plus petit et mieux centré */
.program-badge-wrapper .program-badge-plus{
  font-size: 1.05rem;
  line-height: 1;
  position: relative;
  top: -1px;
}
/* =========================
   PAGES LÉGALES (CGU/CGV/Mentions)
   ========================= */
.page-legal .legal-page { padding: 3rem 0 4rem; }
.page-legal .legal-page h1 { margin-bottom: 1.5rem; font-size: 2.2rem; }
.page-legal .legal-page h2 { margin-top: 2rem; margin-bottom: 0.75rem; font-size: 1.4rem; }
.page-legal .legal-page p,
.page-legal .legal-page ul { margin-bottom: 0.75rem; line-height: 1.7; color: #e2e8f0; }
.page-legal .legal-page ul { padding-left: 1.3rem; list-style: disc; }
.page-legal .legal-meta { font-size: 0.9rem; color: #94a3b8; margin-bottom: 1.5rem; }

@media (max-width: 768px) {
  .page-legal .legal-page h1 { font-size: 1.8rem; }
}
/* =========================
   PAGE PAIEMENT (lien-stripe)
   ========================= */
.page-payment .payment-section { padding: 4rem 0 5rem; }

.page-payment .payment-card {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(15, 23, 42, 0.95);
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
  text-align: center;
}

.page-payment .payment-card h1 { font-size: 1.9rem; margin-bottom: 0.75rem; }

.page-payment .payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.15);
  color: #a5f3fc;
  margin-bottom: 1rem;
}

.page-payment .payment-badge span { font-size: 1.1rem; }

.page-payment .payment-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #e2e8f0;
  margin-bottom: 1.5rem;
}

.page-payment .payment-highlight { color: #f97316; font-weight: 600; }

.page-payment .countdown { font-size: 0.9rem; margin-bottom: 1.5rem; color: #cbd5f5; opacity: 0.9; }
.page-payment .trust-text { margin-top: 1rem; font-size: 0.85rem; color: #94a3b8; }
.page-payment .btn-inline { display: inline-block; max-width: 320px; }

@media (max-width: 768px) {
  .page-payment .payment-card { padding: 2rem 1.5rem; }
  .page-payment .payment-card h1 { font-size: 1.6rem; }
}
/* =========================
   ARTICLES / GUIDES (layout commun)
   ========================= */
.page-article .article-layout { max-width: 800px; margin: 0 auto; }
.page-article .article-layout h1 { margin-bottom: 0.5rem; }
.page-article .article-layout h2 { margin-top: 1.7rem; }
.page-article .article-layout h3 { margin-top: 1.2rem; }

.page-article .section-subtitle {
  font-size: 1rem;
  color: #d1d5db; /* si sur certains guides c'est #e5e7eb, ok aussi */
  margin-bottom: 1.5rem;
}

.page-article .article-figure { margin: 1.5rem 0; }
.page-article .article-figure img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(15,23,42,0.8);
  border: 1px solid #1f2937;
}
.page-article .article-figure figcaption {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-top: 0.35rem;
}

.page-article .highlight-box {
  border-left: 3px solid #f97316;
  padding: 0.75rem 1rem;
  margin: 1.5rem 0;
  background: rgba(15,23,42,0.7);
  border-radius: 0.75rem;
  font-size: 0.95rem;
}

.page-article .coach-tip {
  background: rgba(37, 99, 235, 0.12);
  border-left: 3px solid #3b82f6;
  padding: 1rem 1.2rem;
  border-radius: 0.8rem;
  margin: 1.7rem 0;
  font-size: 0.95rem;
}

.page-article .danger-box {
  background: rgba(220, 38, 38, 0.08);
  border-left: 3px solid #ef4444;
  padding: 1rem 1.2rem;
  border-radius: 0.8rem;
  margin: 1.7rem 0;
  font-size: 0.95rem;
}

.page-article .week-table,
.page-article .plan-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.95rem;
}
.page-article .week-table th, .page-article .week-table td,
.page-article .plan-table th, .page-article .plan-table td {
  border: 1px solid #1f2937;
  padding: 0.5rem 0.6rem;
  vertical-align: top;
}
.page-article .week-table th, .page-article .plan-table th { font-weight: 600; text-align: left; }

.page-article .faq-block h3 { margin-top: 1rem; font-size: 1.05rem; }
/* =========================
   PAGE A PROPOS
   ========================= */
.page-apropos .apropos-hero { padding: 3rem 0 2.5rem; }

.page-apropos .apropos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
}

.page-apropos .apropos-intro { flex: 1 1 55%; min-width: 0; }
.page-apropos .apropos-intro p { margin-top: 0.75rem; }

.page-apropos .apropos-photo-main { flex: 1 1 35%; max-width: 420px; margin: 0 auto; }
.page-apropos .apropos-photo-main img,
.page-apropos .apropos-photo-secondary img,
.page-apropos .apropos-photo-wide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.9);
  object-fit: cover;
}

.page-apropos .apropos-section { padding: 2rem 0; border-top: 1px solid rgba(255, 255, 255, 0.06); }

.page-apropos .apropos-layout-2col {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.page-apropos .apropos-text { flex: 1 1 55%; min-width: 0; }
.page-apropos .apropos-text p + p { margin-top: 0.75rem; }

.page-apropos .apropos-photo-secondary { flex: 1 1 35%; max-width: 420px; margin: 0 auto; }

.page-apropos .apropos-photo-wide { margin-top: 1.5rem; }

.page-apropos .apropos-list { margin: 0.75rem 0 0.75rem 1.2rem; }
.page-apropos .apropos-list li + li { margin-top: 0.25rem; }

.page-apropos .apropos-cta { text-align: center; padding: 2.5rem 0 3rem; }

@media (max-width: 768px) {
  .page-apropos .apropos-grid,
  .page-apropos .apropos-layout-2col { flex-direction: column; }

  .page-apropos .apropos-photo-main,
  .page-apropos .apropos-photo-secondary { max-width: 100%; }
}
/* =========================
   ARTICLE BIKEPACKING (spécifique)
   ========================= */
.page-bikepacking img { max-width: 92%; display: block; margin: 1.5rem auto; }

.page-bikepacking details {
  background: rgba(255,255,255,.06);
  padding: 1rem;
  border-radius: .6rem;
  margin: 1.2rem 0;
  border: 1px solid #1e293b;
}
.page-bikepacking summary { cursor: pointer; color: #f97316; font-weight: 600; }

.page-bikepacking .timeline { border-left: 3px solid #f97316; padding-left: 1rem; margin: 2rem 0; }
.page-bikepacking .timeline div { margin: 1rem 0; }

.page-bikepacking .cta { text-align: center; margin: 2.5rem 0; }
.page-bikepacking .cta a {
  background: #f97316;
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: .6rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
}
/* =========================
   A PROPOS – BANDEAUX FULL WIDTH
   ========================= */

/* Bandeau haut */
.page-apropos .apropos-hero {
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.95),
    rgba(15, 23, 42, 0.85)
  );
}

/* Bandeau bas (CTA mission) */
.page-apropos .apropos-cta {
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.85),
    rgba(15, 23, 42, 0.95)
  );
}

/* On s'assure que le fond touche bien les bords */
.page-apropos .apropos-hero,
.page-apropos .apropos-cta {
  width: 100%;
}
/* =========================
   FIX BANDEAUX FULL WIDTH – PAGE A PROPOS
   ========================= */

/* Bandeau haut */
.page-apropos .apropos-hero {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.95),
    rgba(15, 23, 42, 0.85)
  );
}

/* Bandeau bas */
.page-apropos .apropos-cta {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.85),
    rgba(15, 23, 42, 0.95)
  );
}

/* IMPORTANT : on neutralise tout fond parasite du container */
.page-apropos .apropos-hero > .container,
.page-apropos .apropos-cta > .container {
  background: transparent !important;
}
/* =====================================
   BADGE UR – PLAN ESSENTIEL (INDEX)
===================================== */

.plan-essentiel-mini {
  position: relative; /* ANCRAGE du badge */
}

.plan-essentiel-mini .program-badge-wrapper {
  position: absolute;
  top: 0rem;
  right: 0.9rem;
  z-index: 5;
}
.article-card .article-figure img {
  max-width: 100%;
  margin: 0;
}
.article-thumb {
  width: 100%;
  line-height: 0; /* supprime l’espace fantôme */
}
.article-card > .article-thumb {
  flex-shrink: 0;
}
/* Thumbnail des cartes : pas de marge au-dessus */
.article-thumb .article-figure {
  margin: 0;
}
/* --- TÉMOIGNAGES (Ajout pour apropos.html) --- */
.testimonial-card {
  font-style: italic;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-icon {
  font-size: 2rem;
  color: var(--primary-color); /* Utilise votre couleur orange existante */
  line-height: 1;
  margin-bottom: 0.5rem;
  font-style: normal;
}

.testimonial-author {
  margin-top: 1.5rem;
  font-style: normal;
  border-top: 1px solid #eee;
  padding-top: 1rem;
  font-size: 0.9rem;
}

.testimonial-event {
  color: #666;
  font-size: 0.85rem;
  display: block; /* Force le retour à la ligne */
}