/* ==========================================================================
   COMPOSANTS — INFOS CLÉS & SPIRIT
   ========================================================================== */

/* ── Grille infos clés ── */
.infos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 44px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  border: 1.5px solid var(--smoke);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--lime-dark), var(--lime));
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(111,207,66,.28);
}

.info-card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--forest), var(--moss));
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.info-card-icon svg { width: 24px; height: 24px; }

.info-question {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lime-dark);
  margin-bottom: 6px;
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--forest);
  margin-bottom: 10px;
}

.info-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.75; }

/* ── Spirit block ── */
.spirit-block {
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.spirit-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 50px);
  letter-spacing: 3px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 18px;
}

.spirit-title em { color: var(--color-accent-lt); font-style: normal; }

.spirit-text { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.82; }

.spirit-values { display: flex; flex-direction: column; gap: 13px; }

.spirit-val {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-md);
}

.spirit-val-icon  { font-size: 20px; flex-shrink: 0; }
.spirit-val strong { font-size: 14px; font-weight: 700; color: var(--white); display: block; }
.spirit-val span   { font-size: 12px; color: rgba(255,255,255,.42); }


/* ==========================================================================
   COMPOSANTS — SECTION GPX / PARCOURS
   ========================================================================== */

/* ── Parcours mis en avant ── */
.gpx-featured {
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 26px;
  align-items: start;
  margin-bottom: 28px;
}

.gpx-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(245,166,35,.18);
  border: 1px solid rgba(245,166,35,.3);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.gpx-featured-badge .bdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 1.6s infinite;
}

.gpx-featured h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
}

.gpx-featured-desc {
  font-size: 14px;
  color: rgba(255,255,255,.52);
  line-height: 1.75;
  margin-bottom: 22px;
}

.gpx-meta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }

.gpx-meta-item { display: flex; align-items: center; gap: 8px; }

.gpx-meta-item .gico {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  background: rgba(111,207,66,.14);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.gpx-meta-item .gico svg { width: 14px; height: 14px; }
.gpx-meta-item .gval { font-size: 15px; font-weight: 700; color: var(--white); line-height: 1; }
.gpx-meta-item .gkey { font-size: 11px; color: rgba(255,255,255,.38); margin-top: 2px; }

.gpx-featured-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── Prévisualisation carte ── */
.gpx-map-preview {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 240px;
  background: var(--moss);
  border: 1px solid rgba(255,255,255,.08);
}

.gpx-map-placeholder-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: rgba(255,255,255,.3);
  font-size: 12px;
}

.gpx-map-placeholder-inner svg { width: 40px; height: 40px; opacity: .3; }

/* ── Grille de cards GPX ── */
.gpx-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.gpx-card {
  border: 1.5px solid var(--smoke);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-slow);
  background: linear-gradient(160deg, rgba(15,40,90,.55) 0%, rgba(10,25,60,.42) 100%);
  border-color: rgba(74,159,212,.2);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
}

.gpx-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(74,159,212,.35);
  box-shadow: 0 4px 20px rgba(42,100,150,.18);
}

.gpx-card .gpx-map-preview { height: 170px; border-radius: 0; border: none; }
.gpx-card .gpx-map-placeholder { height: 100%; }

/* Badges */
.badge-level {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
}

.badge-level.facile          { background: rgba(111,207,66,.85); color: var(--forest); }
.badge-level.moyen           { background: rgba(245,166,35,.85); color: #3d2000; }
.badge-level.avance,
.badge-level.expert          { background: rgba(239,68,68,.85); color: var(--white); }

.badge-members {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(8px);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
}

/* Corps de la card GPX */
.gpx-card-body {
  padding: 14px 16px 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gpx-card-body h3 {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: .5px;
  color: #fff;
  line-height: 1.2;
}

/* Barre de stats */
.gpx-card-statsbar {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.28);
  padding: 0;
}

.gpx-card-stat {
  display: flex;
  align-items: center;
  gap: 5px;
  flex: 1;
  justify-content: center;
  padding: 10px 6px;
  border-right: 1px solid rgba(255,255,255,.08);
}

.gpx-card-stat:last-child { border-right: none; }
.gpx-card-stat svg         { width: 13px; height: 13px; flex-shrink: 0; color: #4a9fd4; opacity: .85; }
.gpx-card-stat__val        { font-size: 13px; font-weight: 700; color: #fff; }
.gpx-card-stat__lbl        { font-size: 11px; color: rgba(255,255,255,.5); }

/* Couleurs de barre selon niveau */
.gpx-card-statsbar--facile  { background: rgba(42,100,150,.10);  border-top-color: rgba(74,159,212,.22); }
.gpx-card-statsbar--facile  .gpx-card-stat svg { color: #4a9fd4; }
.gpx-card-statsbar--moyen   { background: rgba(245,166,35,.15); border-top-color: rgba(245,166,35,.28); }
.gpx-card-statsbar--moyen   .gpx-card-stat svg { color: var(--amber); }
.gpx-card-statsbar--avance  { background: rgba(239,100,68,.15); border-top-color: rgba(239,100,68,.28); }
.gpx-card-statsbar--avance  .gpx-card-stat svg { color: #ef6444; }
.gpx-card-statsbar--expert  { background: rgba(180,30,30,.2);   border-top-color: rgba(180,30,30,.32); }
.gpx-card-statsbar--expert  .gpx-card-stat svg { color: #e03030; }

a.gpx-card              { text-decoration: none; display: flex; flex-direction: column; color: inherit; }
a.gpx-card:hover        { color: inherit; }

/* Overlay verrouillé */
.gpx-locked-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: rgba(26,58,42,.65);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gpx-lock-icon              { color: rgba(255,255,255,.7); text-align: center; }
.gpx-lock-icon svg          { width: 26px; height: 26px; margin: 0 auto 4px; }
.gpx-lock-icon span         { font-size: 11px; font-weight: 600; display: block; }


/* ==========================================================================
   COMPOSANTS — ACTUALITÉS
   ========================================================================== */

.actu-search {
  background: linear-gradient(135deg, rgba(49,53,46,.73), rgba(132,180,110,.46));
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
  border: 1.5px solid var(--smoke);
  flex-wrap: wrap;
}

.search-input-wrap {
  flex: 2;
  min-width: 160px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border-radius: var(--radius);
  border: 1.5px solid var(--smoke);
  background: var(--chalk);
}

.search-input-wrap svg      { color: var(--ink-soft); flex-shrink: 0; width: 16px; height: 16px; }
.search-input-wrap input    { border: none; background: none; outline: none; width: 100%; font-size: 14px; color: var(--ink); }
.search-input-wrap input::placeholder { color: var(--ink-soft); }

.search-select {
  padding: 9px 13px;
  border-radius: var(--radius);
  border: 1.5px solid var(--smoke);
  background: var(--chalk);
  font-size: 14px;
  color: var(--ink-mid);
  outline: none;
  cursor: pointer;
}

.search-btn {
  padding: 9px 18px;
  border-radius: var(--radius);
  background: var(--forest);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  transition: background var(--transition);
  cursor: pointer;
  border: none;
}

.search-btn:hover { background: var(--moss); }

.actu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.actu-card {
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
}

.actu-card:hover { background: rgba(0,0,0,.48); }

.actu-img-link {
  display: block;
  height: 210px;
  position: relative;
  overflow: hidden;
  background: var(--moss);
  flex-shrink: 0;
  text-decoration: none;
}

.actu-img-link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,58,42,0);
  transition: background var(--transition-slow);
}

.actu-img-link:hover::after         { background: rgba(26,58,42,.18); }
.actu-img                           { height: 100%; position: relative; overflow: hidden; }
.actu-img img                       { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.actu-img-link:hover .actu-img img  { transform: scale(1.06); }
.actu-img-placeholder               { height: 100%; display: flex; align-items: center; justify-content: center; }

.actu-cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--lime);
  color: var(--forest);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.actu-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.actu-date { font-size: 12px; color: rgba(255,255,255,.55); font-weight: 500; margin-bottom: 7px; display: flex; align-items: center; gap: 5px; }
.actu-date-sep    { color: rgba(255,255,255,.25); }
.actu-date-author { color: rgba(255,255,255,.55); }

.actu-body h3 a,
.has-bg-section .gpx-card-body h3 { color: #ffffff; }

.actu-body p { font-size: 13px; color: rgba(255,255,255,.75); line-height: 1.7; flex: 1; }

.actu-footer {
  padding: 14px 22px;
  border-top: 1px solid var(--smoke);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.actu-author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
}

.author-avatar {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime-dark), var(--lime));
  display: grid;
  place-items: center;
  color: var(--forest);
  font-size: 11px;
  font-weight: 700;
}

.actu-more-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--lime-dark);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}

.actu-more-link:hover { gap: 8px; }


/* ==========================================================================
   COMPOSANTS — PLANNING / VERROU
   ========================================================================== */

.planning-locked {
  background: linear-gradient(135deg, var(--forest), var(--moss));
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.planning-locked::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(111,207,66,.06), transparent 60%);
  pointer-events: none;
}

.lock-circle {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-lg);
  background: rgba(111,207,66,.12);
  border: 2px solid rgba(111,207,66,.26);
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
}

.lock-circle svg { width: 30px; height: 30px; color: var(--color-accent-lt); }

.planning-locked h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 42px);
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 10px;
}

.planning-locked > p {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  max-width: 460px;
  margin: 0 auto 26px;
  line-height: 1.75;
}

.planning-pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.planning-pill {
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.09);
  font-size: 13px;
  color: rgba(255,255,255,.45);
  filter: blur(2.5px);
  pointer-events: none;
}

.perks-row { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }

.perk-item { display: flex; align-items: center; gap: 7px; font-size: 14px; color: rgba(255,255,255,.68); }
.perk-item svg { color: var(--color-accent-lt); width: 15px; height: 15px; }


/* ==========================================================================
   COMPOSANTS — FOOTER
   ========================================================================== */

.site-footer { background: var(--ink); color: rgba(255,255,255,.55); }

.footer-top {
  padding: 56px 0 44px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-brand .fb-name    { font-family: var(--font-display); font-size: 26px; letter-spacing: 2px; color: var(--white); }
.footer-brand .fb-sub     { font-size: 12px; color: rgba(255,255,255,.35); margin-top: 3px; margin-bottom: 16px; }
.footer-brand p           { font-size: 13px; line-height: 1.75; max-width: 260px; margin-bottom: 20px; }

.footer-socials { display: flex; gap: 8px; }

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: grid;
  place-items: center;
  transition: all var(--transition);
}

.social-btn:hover { background: rgba(111,207,66,.14); border-color: rgba(111,207,66,.28); }
.social-btn svg   { width: 15px; height: 15px; color: rgba(255,255,255,.55); }

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 14px;
}

.footer-col ul li         { margin-bottom: 9px; }
.footer-col ul li a       { font-size: 13px; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--color-accent-lt); }

.footer-bottom {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-legal         { display: flex; gap: 18px; }
.footer-legal a       { color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer-legal a:hover { color: var(--color-accent-lt); }


/* ==========================================================================
   COMPOSANTS — ALERTES ZONES
   Badge sur les cards GPX, blocs sur la fiche parcours
   ========================================================================== */

/* ── Badge alerte sur les cards ── */
.badge-alerte {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 6;
  background: rgba(220,38,38,.9);
  backdrop-filter: blur(6px);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  border: 1px solid rgba(255,100,100,.5);
  animation: alerte-pulse 2.5s ease-in-out infinite;
}

@keyframes alerte-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220,38,38,.4); }
  50%       { box-shadow: 0 0 0 6px rgba(220,38,38,0); }
}

.badge-alerte svg { flex-shrink: 0; }

/* ── Bloc alertes sur la fiche ── */
.alerte-block .card-block-header {
  background: rgba(220,38,38,.12) !important;
  border-bottom-color: rgba(220,38,38,.2) !important;
}

.alerte-item {
  border-left: 3px solid #ef4444;
}

.alerte-item-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.alerte-type-badge {
  font-size: 13px;
  font-weight: 700;
  color: #fca5a5;
  background: rgba(220,38,38,.15);
  border: 1px solid rgba(220,38,38,.3);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.alerte-meta {
  font-size: 12px;
  color: rgba(255,255,255,.4);
}

.alerte-detail {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-top: 8px;
  line-height: 1.6;
}

/* Séparateur entre alertes */
.alerte-block .card-block-body > .alerte-item + .alerte-item {
  border-top: 1px solid rgba(255,255,255,.07);
}

.alerte-block .card-block-body > .alerte-item {
  padding: 16px 20px;
}

/* ── Badge "NOUVEAU" sur les cards de listing (actu, sortie) ── */
.jdm-card--new {
  position: relative;
}
.jdm-card--new::before {
  content: 'NOUVEAU';
  position: absolute; top: 10px; right: 10px; z-index: 2;
  font-size: 9px; font-weight: 800; letter-spacing: 1px;
  padding: 3px 8px; border-radius: var(--radius-pill);
  background: rgba(111,207,66,.9);
  color: #fff;
  pointer-events: none;
}
.actu-card.jdm-card--new::before  { top: 12px; right: 12px; }
.sortie-card.jdm-card--new        { outline: 1px solid rgba(111,207,66,.45); }
.sortie-card.jdm-card--new::before { top: 10px; left: 10px; right: auto; }


/* ══════════════════════════════════════════════════════════════════════════
   FILTRES DE SECTION — fond semi-transparent aux couleurs de la section
   Utilisé sur : Actus (.actu-search), Sorties (.filters-wrap),
                 Parcours (#form-gpx-filters), Membres (.jdm-ann-search-bar)
   ══════════════════════════════════════════════════════════════════════════ */

/* Variables par section — définies sur le conteneur racine de chaque archive */
.archive-jdm_sortie,
.page-template-archive-jdm_sortie,
[class*="post-type-archive-jdm_sortie"] {
  --section-rgb:    111, 207, 66;
  --section-color:  var(--lime-accent);
  --section-border: rgba(111,207,66,.55);
}

.archive-gpx_parcours,
.page-template-archive-gpx_parcours,
[class*="post-type-archive-gpx_parcours"] {
  --section-rgb:    74, 159, 212;
  --section-color:  #7dd3fc;
  --section-border: rgba(74,159,212,.55);
}

/* Actus — déjà défini inline, on ajoute juste la variable */
.blog, .category, .tag, .page-template-page-actualites {
  --section-rgb:    234, 88, 12;
  --section-color:  #f97316;
  --section-border: rgba(234,88,12,.55);
}

/* Membres — WordPress génère .page-annuaire-membres sur le body */
.page-annuaire-membres,
.page-template-annuaire,
[class*="page-annuaire"] {
  --section-rgb:    139, 92, 246;
  --section-color:  #c4b5fd;
  --section-border: rgba(167,139,250,.55);
}

/* Style unifié pour tous les wrappers de filtres */
.filters-wrap {
  background: linear-gradient(
    135deg,
    rgba(var(--section-rgb, 100,116,139), .12),
    rgba(var(--section-rgb, 100,116,139), .22)
  );
  border: 1.5px solid var(--section-border, rgba(148,163,184,.3));
  border-radius: var(--radius-lg, 14px);
  padding: 16px 20px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Retirer le margin-bottom du dernier enfant direct */
.filters-wrap > *:last-child {
  margin-bottom: 0;
}

/* Homogénéiser actu-search avec le même système */
.actu-search {
  background: linear-gradient(
    135deg,
    rgba(var(--section-rgb, 234,88,12), .14),
    rgba(var(--section-rgb, 234,88,12), .26)
  );
  border-color: var(--section-border, rgba(234,88,12,.45));
}

/* form-gpx-filters : les champs sont en ligne (flex-row) */
#form-gpx-filters.filters-wrap {
  flex-direction: row;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}

/* ════════════════════════════════════════════════════════════
   MODE CLAIR — body.jdm-light
   Placé en fin de fichier pour garantir la priorité sur toutes
   les règles sombres définies ci-dessus.
   ════════════════════════════════════════════════════════════ */

/* ── Actus ── */
body.jdm-light .actu-card {
  background: #fff !important;
  border-color: rgba(0,0,0,.1) !important;
  backdrop-filter: none !important;
}
body.jdm-light .actu-card:hover {
  background: rgba(255,247,237,.85) !important;
  border-color: rgba(234,88,12,.35) !important;
  box-shadow: 0 4px 16px rgba(234,88,12,.1) !important;
}
body.jdm-light .actu-cat-badge { background: #c2410c !important; color: #fff !important; }
body.jdm-light .actu-body h3 a { color: #1e2a22 !important; }
body.jdm-light .actu-body h3 a:hover { color: #c2410c !important; }
body.jdm-light .actu-body p { color: #5a6b5e !important; }
body.jdm-light .actu-date,
body.jdm-light .actu-date-author { color: #8a9b8e !important; }
body.jdm-light .actu-date-sep { color: rgba(0,0,0,.2) !important; }
body.jdm-light .actu-footer { border-top-color: rgba(0,0,0,.07) !important; }
body.jdm-light .actu-author { color: #5a6b5e !important; }

/* ── Parcours GPX cards ── */
body.jdm-light .gpx-card {
  background: #fff !important;
  border-color: rgba(0,0,0,.1) !important;
}
body.jdm-light .gpx-card-body h3 { color: #1e2a22 !important; }
body.jdm-light .gpx-card-stat__val { color: #1e2a22 !important; }
body.jdm-light .gpx-card-stat__lbl { color: #8a9b8e !important; }
body.jdm-light .gpx-card-statsbar {
  background: rgba(0,0,0,.04) !important;
  border-top-color: rgba(0,0,0,.07) !important;
}
body.jdm-light .gpx-card-statsbar--facile { background: rgba(42,100,150,.07) !important; }
body.jdm-light .gpx-card-statsbar--moyen  { background: rgba(245,166,35,.08) !important; }
body.jdm-light .gpx-card-statsbar--avance { background: rgba(239,100,68,.08) !important; }
body.jdm-light .gpx-card-statsbar--expert { background: rgba(180,30,30,.10)  !important; }

/* ── Filtres parcours ── */
body.jdm-light .filters-wrap {
  background: rgba(0,0,0,.04) !important;
  border-color: rgba(0,0,0,.1) !important;
  backdrop-filter: none !important;
}
body.jdm-light .jdm-filter-label {
  color: #3d4d42 !important;
  text-shadow: none !important;
}
body.jdm-light .jdm-white   { color: #1e2a22 !important; }
body.jdm-light .jdm-subtitle { color: #5a6b5e !important; }

/* ── Section has-bg (fond vert) — textes forcés blancs ── */
body.jdm-light .has-bg-section .actu-body h3 a { color: #fff !important; }
body.jdm-light .has-bg-section .gpx-card-body h3 { color: #fff !important; }
