/* =========================================================
   FHCL : Design System (tokens + Lexend + base)
   Source de vérité : docs/DESIGN-SYSTEM.md (valeurs extraites du Figma)
   ========================================================= */

/* --- Polices Lexend (self-host, RGPD-safe, latin) --- */
@font-face{font-family:'Lexend';font-style:normal;font-weight:200;font-display:swap;src:url('../fonts/lexend-200.woff2') format('woff2');}
@font-face{font-family:'Lexend';font-style:normal;font-weight:300;font-display:swap;src:url('../fonts/lexend-300.woff2') format('woff2');}
@font-face{font-family:'Lexend';font-style:normal;font-weight:400;font-display:swap;src:url('../fonts/lexend-400.woff2') format('woff2');}
@font-face{font-family:'Lexend';font-style:normal;font-weight:500;font-display:swap;src:url('../fonts/lexend-500.woff2') format('woff2');}
@font-face{font-family:'Lexend';font-style:normal;font-weight:600;font-display:swap;src:url('../fonts/lexend-600.woff2') format('woff2');}
@font-face{font-family:'Lexend';font-style:normal;font-weight:700;font-display:swap;src:url('../fonts/lexend-700.woff2') format('woff2');}

/* --- Tokens (= Elementor Global Kit en miroir) --- */
:root{
  /* Couleurs */
  --c-orange:#C75000;  --c-orange-hover:#A84400;  --c-orange-text:#A84400; /* orange foncé pour TEXTE sur fond crème (contraste AA, #C75000 échoue à 4.29:1) */
  --c-orange-on-dark:#E8763A; /* orange CLAIR pour TEXTE sur fond sombre (navy/photo) : #A84400 échoue (2.86:1), celui-ci ≥4.5:1 */
  --c-navy:#151B27;    --c-blue:#003863;    --c-ink:#180E09;          --c-white:#FFFFFF;
  --c-cream:#F5F1EA;   /* À CONFIRMER */
  --c-ink-60:rgba(24,14,9,.6);
  --c-white-60:rgba(255,255,255,.6);
  --c-orange-30:rgba(199,80,0,.3);

  /* Typographie */
  --font-base:'Lexend',system-ui,-apple-system,sans-serif;
  --fw-extralight:200; --fw-light:300; --fw-regular:400; --fw-medium:500; --fw-semibold:600; --fw-bold:700;
  --fs-display:clamp(2rem,5vw,4rem); /* ~32→64px */
  --fs-h2:clamp(1.6rem,3.5vw,2.75rem);
  --fs-h3:1.5rem;  --fs-bodyL:1.125rem; --fs-body:1rem; --fs-small:.875rem;

  /* Rayons & ombres */
  --r-xs:2px; --r-sm:4px; --r-md:8px;
  --shadow-float:0 4px 20px rgba(0,0,0,.25);

  /* Espacement (base 8) & container */
  --space-1:8px; --space-2:16px; --space-3:24px; --space-4:32px;
  --space-6:48px; --space-8:64px; --space-12:96px;
  --container:1280px;
}

/* --- Base --- */
body{font-family:var(--font-base);color:var(--c-ink);}
h1,h2,h3,h4,h5,h6{font-family:var(--font-base);color:var(--c-ink);line-height:1.1;}
h1{font-size:var(--fs-display);font-weight:var(--fw-semibold);}
h2{font-size:var(--fs-h2);font-weight:var(--fw-semibold);}
h3{font-size:var(--fs-h3);font-weight:var(--fw-semibold);}
a{color:var(--c-orange);}
a:hover{color:var(--c-orange-hover);}

/* --- Utilitaires de marque --- */
.fhcl-label{font-size:var(--fs-small);font-weight:var(--fw-semibold);letter-spacing:.08em;text-transform:uppercase;color:var(--c-orange);}
.fhcl-accent{color:var(--c-orange);}            /* 2e ligne de titre bicolore */
.fhcl-section--dark{background:var(--c-navy);color:var(--c-white);}
.fhcl-section--cream{background:var(--c-cream);}

/* ===================== LAYOUT, header & footer ===================== */

.fhcl-skip-link{position:absolute;left:-9999px;top:0;z-index:1000;background:var(--c-orange);color:#fff;padding:8px 16px;border-radius:0 0 var(--r-sm) 0;}
.fhcl-skip-link:focus{left:0;top:0;}

/* A11y, texte réservé aux lecteurs d'écran (visuellement masqué). */
.fhcl-sr{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);clip-path:inset(50%);white-space:nowrap;border:0;}
/* A11y, indicateur de focus visible et homogène sur tous les éléments interactifs (WCAG 2.4.7). */
a:focus-visible,button:focus-visible,[role="button"]:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible,summary:focus-visible,[tabindex]:focus-visible{
  outline:3px solid var(--c-orange);outline-offset:2px;border-radius:3px;
}
/* Sur fonds orange/navy, halo blanc pour garantir le contraste de l'indicateur (WCAG 1.4.11). */
.fhcl-btn--primary:focus-visible,.fhcl-cta-don:focus-visible,.fhcl-donband__button:focus-visible,.fhcl-don__cta:focus-visible,.fhcl-pcard__don:focus-visible{
  outline-color:#fff;box-shadow:0 0 0 5px rgba(199,80,0,.45);
}

/* --- Header sticky 2 états (barre flottante glass → blanc) --- */
.fhcl-header{position:fixed;inset:0 0 auto 0;z-index:900;padding:16px 24px;transition:padding .25s ease;}
.fhcl-header__inner{max-width:var(--container);margin:0 auto;display:flex;align-items:center;gap:24px;
  padding:10px 18px;border-radius:var(--r-md);
  background:rgba(255,255,255,.12);-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.5);box-shadow:var(--shadow-float);
  transition:background .25s ease,border-color .25s ease,box-shadow .25s ease;}
.fhcl-header.is-scrolled{padding:8px 24px;}
.fhcl-header.is-scrolled .fhcl-header__inner{background:#fff;border-color:transparent;box-shadow:0 2px 14px rgba(16,27,58,.10);}

.fhcl-logo{display:inline-flex;align-items:center;text-decoration:none;}
.fhcl-header__nav{flex:1;display:flex;justify-content:center;}
/* Recherche + déco cœur : seulement dans le panneau mobile. */
.fhcl-nav__search,.fhcl-nav__deco{display:none;}
.fhcl-logo__img{display:block;height:56px;width:56px;}
.fhcl-logo__text{font-size:18px;font-weight:var(--fw-regular);color:#fff;letter-spacing:.01em;}
.fhcl-logo__text strong{font-weight:var(--fw-bold);}
.fhcl-header.is-scrolled .fhcl-logo__text{color:var(--c-navy);}

.fhcl-menu{display:flex;gap:44px;list-style:none;margin:0;padding:0;}
.fhcl-menu a{font-size:14px;font-weight:var(--fw-medium);color:#fff;text-decoration:none;transition:color .2s;}
.fhcl-menu a:hover,.fhcl-menu .current-menu-item>a,.fhcl-menu .current_page_item>a,.fhcl-menu .current-menu-ancestor>a{color:var(--c-orange);}
.fhcl-header.is-scrolled .fhcl-menu a{color:var(--c-navy);}
.fhcl-header.is-scrolled .fhcl-menu a:hover{color:var(--c-orange);}
/* L'item de la page courante reste ORANGE quel que soit l'état du header (scrollé/solide). */
.fhcl-header.is-scrolled .fhcl-menu .current-menu-item>a,
.fhcl-header.is-scrolled .fhcl-menu .current_page_item>a,
.fhcl-header.is-scrolled .fhcl-menu .current-menu-ancestor>a,
body.fhcl-header-solid .fhcl-menu .current-menu-item>a,
body.fhcl-header-solid .fhcl-menu .current_page_item>a,
body.fhcl-header-solid .fhcl-menu .current-menu-ancestor>a{color:var(--c-orange);}

/* ---- Méga-menu « Nous soutenir » (déroulant au survol + focus clavier) ---- */
.fhcl-menu__has-mega{position:relative;}
.fhcl-menu__has-mega>a{display:inline-flex;align-items:center;gap:5px;}
.fhcl-menu__has-mega>a .fhcl-mega__arrow{color:var(--c-orange);transition:transform .2s ease;}
.fhcl-menu__has-mega:hover>a .fhcl-mega__arrow,
.fhcl-menu__has-mega:focus-within>a .fhcl-mega__arrow{transform:rotate(180deg);}
/* Le conteneur affleure le bas de l'item (padding-top transparent = pont anti-perte de survol). */
.fhcl-mega{position:absolute;top:100%;left:50%;transform:translateX(-50%);padding-top:14px;min-width:302px;z-index:200;opacity:0;visibility:hidden;transition:opacity .2s ease,visibility 0s linear .2s;}
.fhcl-menu__has-mega:hover .fhcl-mega,
.fhcl-menu__has-mega:focus-within .fhcl-mega{opacity:1;visibility:visible;transition:opacity .2s ease;}
.fhcl-mega__inner{background:#fff;border-radius:16px;box-shadow:0 24px 60px rgba(16,27,58,.18);padding:24px 28px;transform:translateY(6px);transition:transform .2s ease;}
.fhcl-menu__has-mega:hover .fhcl-mega__inner,
.fhcl-menu__has-mega:focus-within .fhcl-mega__inner{transform:translateY(0);}
.fhcl-mega__group+.fhcl-mega__group{margin-top:22px;}
.fhcl-mega__label{margin:0 0 12px;color:var(--c-ink-60);font-size:14px;font-weight:var(--fw-medium);}
.fhcl-mega__list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:16px;}
/* Spécificité suffisante pour battre la couleur blanche/navy du menu selon l'état header. */
.fhcl-header .fhcl-menu .fhcl-mega__list a{display:flex;align-items:center;gap:12px;color:var(--c-ink);font-size:16px;font-weight:var(--fw-semibold);text-decoration:none;white-space:nowrap;}
.fhcl-header .fhcl-menu .fhcl-mega__list a:hover{color:var(--c-orange);}
.fhcl-mega__bullet{flex:none;width:8px;height:8px;background:var(--c-orange);}

.fhcl-header__actions{display:flex;align-items:center;gap:12px;}
.fhcl-iconbtn{display:inline-flex;align-items:center;color:#fff;padding:6px;background:none;border:0;cursor:pointer;}
.fhcl-header.is-scrolled .fhcl-iconbtn{color:var(--c-navy);}

.fhcl-btn{display:inline-flex;align-items:center;gap:6px;font-family:var(--font-base);font-weight:var(--fw-medium);font-size:15px;
  border-radius:var(--r-sm);padding:9px 16px;text-decoration:none;cursor:pointer;border:1px solid transparent;transition:background .2s,color .2s;}
.fhcl-btn--primary{background:var(--c-orange);color:#fff;}
.fhcl-btn--primary:hover{background:var(--c-orange-hover);color:#fff;}
.fhcl-btn--ghost{background:transparent;color:#fff;border-color:rgba(255,255,255,.5);}
.fhcl-btn--ghost:hover{background:#fff;color:var(--c-navy);}

.fhcl-burger{display:none;flex-direction:column;gap:5px;padding:6px;background:none;border:0;cursor:pointer;}
.fhcl-burger span{width:22px;height:2px;background:#fff;border-radius:2px;transition:.2s;}
.fhcl-header.is-scrolled .fhcl-burger span{background:var(--c-navy);}

/* Décale le contenu sous la barre fixe (sauf pages à héro plein écran). */
body:not(.home):not(.fhcl-has-hero) .fhcl-main{padding-top:104px;}

/* Mobile */
@media(max-width:1024px){
  /* Panneau mobile = overlay BLANC plein écran (Figma 273:1918). */
  .fhcl-header__nav{
    position:fixed;inset:0;width:100%;background:#fff;z-index:90;
    transform:translateX(100%);visibility:hidden;transition:transform .3s ease,visibility 0s linear .3s;
    padding:96px 24px 28px;overflow-y:auto;
    display:flex;flex-direction:column;align-items:stretch;
  }
  /* visibility:hidden hors ouverture = panneau retiré de l'ordre de tabulation (anti-piège clavier). */
  .fhcl-header__nav.is-open{transform:translateX(0);visibility:visible;transition:transform .3s ease;}
  /* Logo + actions (don + burger) restent visibles au-dessus du panneau. */
  .fhcl-logo,.fhcl-header__actions{position:relative;z-index:95;}
  /* Barre de recherche du panneau. */
  .fhcl-nav__search{
    display:flex;align-items:center;gap:10px;width:100%;margin:0 0 28px;
    padding:13px 16px;border:1px solid rgba(24,14,9,.5);border-radius:var(--r-sm,4px);color:rgba(24,14,9,.7);
  }
  .fhcl-nav__search:focus-within{outline:2px solid var(--c-orange);outline-offset:2px;}
  .fhcl-nav__search input{flex:1;min-width:0;border:0;background:none;font:inherit;font-size:16px;color:var(--c-ink);outline:none;}
  /* Items du menu : foncés, grands. */
  .fhcl-menu{flex-direction:column;gap:4px;align-items:flex-start;}
  .fhcl-menu a,.fhcl-header.is-scrolled .fhcl-menu a,body.fhcl-header-solid .fhcl-menu a{
    color:var(--c-ink);font-size:22px;font-weight:var(--fw-semibold);padding:10px 0;
  }
  .fhcl-menu .current-menu-item>a,.fhcl-menu .current_page_item>a,
  .fhcl-header.is-scrolled .fhcl-menu .current-menu-item>a,
  body.fhcl-header-solid .fhcl-menu .current-menu-item>a{color:var(--c-orange);}
  /* Méga-menu : déplié en inline dans l'overlay mobile (ni carte, ni survol). */
  .fhcl-menu__has-mega{width:100%;}
  .fhcl-menu__has-mega>a .fhcl-mega__arrow{display:none;}
  .fhcl-mega{position:static;transform:none;opacity:1;visibility:visible;padding-top:0;min-width:0;width:100%;}
  .fhcl-mega__inner{background:transparent;box-shadow:none;transform:none;padding:0 0 8px 4px;}
  .fhcl-mega__group+.fhcl-mega__group{margin-top:14px;}
  .fhcl-mega__label{font-size:15px;margin-bottom:8px;}
  .fhcl-mega__list{gap:12px;}
  .fhcl-header .fhcl-menu .fhcl-mega__list a{font-size:18px;}
  /* Déco cœur + tagline en bas du panneau. */
  .fhcl-nav__deco{display:flex;flex-direction:column;gap:6px;align-items:flex-start;margin-top:auto;padding-top:28px;}
  .fhcl-nav__deco img{display:block;width:120px;height:auto;opacity:.9;}
  .fhcl-nav__deco em{font-style:normal;font-weight:var(--fw-semibold);font-size:18px;color:var(--c-orange);}
  .fhcl-burger{display:flex;}
  /* Header mobile : pas de loupe (recherche dans le panneau) ; bouton don compact 1 ligne. */
  .fhcl-iconbtn{display:none;}
  .fhcl-header__actions{gap:12px;}
  .fhcl-cta-don{padding:9px 14px;font-size:14px;}
  .fhcl-cta-don span{white-space:nowrap;}
  .fhcl-cta-don svg{width:16px;height:16px;}
  body.fhcl-nav-open{overflow:hidden;}
  /* Quand le menu est ouvert : on retire le backdrop-filter du header (sinon il « contient »
     le position:fixed du panneau → inset:0 relatif au header au lieu du viewport). */
  body.fhcl-nav-open .fhcl-header__inner{-webkit-backdrop-filter:none;backdrop-filter:none;background:transparent;border-color:transparent;box-shadow:none;}
  /* Header visible par-dessus le panneau : logo orange + don orange + burger foncé. */
  body.fhcl-nav-open .fhcl-burger span{background:var(--c-navy);}
  /* Burger → croix quand le menu est ouvert. */
  .fhcl-burger.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
  .fhcl-burger.is-open span:nth-child(2){opacity:0;}
  .fhcl-burger.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
}

/* --- Footer (reproduit Figma 278:51) --- */
.fhcl-footer{position:relative;display:flow-root;background:var(--c-navy);color:var(--c-white);padding:0 24px 24px;}

/* Carte newsletter en débord sur le haut */
.fhcl-newsletter{position:relative;z-index:2;max-width:1180px;margin:-90px auto 0;
  background:#FDF6F2;border-radius:16px;padding:32px 48px;display:flex;flex-wrap:wrap;gap:32px 64px;align-items:center;justify-content:space-between;box-shadow:0 24px 60px rgba(16,27,58,.18);}
.fhcl-newsletter__intro{display:flex;gap:24px;align-items:center;}
.fhcl-newsletter__icon{flex:none;display:inline-flex;align-items:center;justify-content:center;width:53px;height:53px;border-radius:var(--r-sm);background:var(--c-orange);color:#fff;}
.fhcl-newsletter__title{margin:0 0 8px;font-size:32px;line-height:1;font-weight:var(--fw-semibold);color:var(--c-ink);}
.fhcl-newsletter__sub{margin:0;max-width:385px;font-size:14px;font-weight:var(--fw-medium);color:var(--c-ink-60);}
.fhcl-newsletter__form{flex:none;width:424px;max-width:100%;}
.fhcl-newsletter__row{display:flex;gap:8px;}
.fhcl-newsletter__input{flex:1;min-width:0;height:53px;border:none!important;outline:none;box-shadow:none;-webkit-appearance:none;appearance:none;border-radius:var(--r-sm);padding:0 16px;font-family:var(--font-base);font-size:14px;color:var(--c-ink);background:#fff;}
.fhcl-newsletter__input:focus{outline:2px solid var(--c-orange-30);outline-offset:1px;}
.fhcl-newsletter__submit{height:53px;}
.fhcl-newsletter__legal{margin:8px 0 0;font-size:12px;color:rgba(24,14,9,.7);}
.fhcl-newsletter__legal a{color:rgba(24,14,9,.7);text-decoration:underline;}

/* Corps navy */
.fhcl-footer__body{position:relative;max-width:var(--container);margin:0 auto;padding-top:56px;}
.fhcl-footer__deco{position:absolute;left:50%;bottom:36px;width:min(88%,1120px);transform:translateX(-50%) scaleX(-1);opacity:.32;pointer-events:none;filter:brightness(0) invert(1);}
.fhcl-footer__inner{position:relative;z-index:1;display:grid;grid-template-columns:1.4fr 3.6fr;gap:48px;align-items:start;}
.fhcl-footer__cols{display:grid;grid-template-columns:repeat(4,1fr);gap:40px;}
.fhcl-footer__logo{display:block;height:64px;width:64px;margin-bottom:20px;}
.fhcl-footer__addr{margin:0;font-size:14px;line-height:1.7;color:var(--c-white-60);}
.fhcl-footer__addr a{color:var(--c-white-60);text-decoration:underline;}
.fhcl-footer__addr a:hover{color:var(--c-orange);}
.fhcl-social{display:flex;gap:10px;margin-top:18px;}
.fhcl-social a{display:inline-flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:6px;background:rgba(255,255,255,.08);color:#fff;transition:.2s;}
.fhcl-social a:hover{background:var(--c-orange);}
.fhcl-fcol h3{margin:0 0 18px;font-size:14px;font-weight:var(--fw-semibold);color:#fff;text-transform:uppercase;letter-spacing:.02em;}
.fhcl-fcol ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:4px;}
.fhcl-fcol a{font-size:12px;line-height:24px;color:var(--c-white-60);text-decoration:none;transition:.2s;}
.fhcl-fcol a:hover{color:var(--c-orange);}
.fhcl-footer__cta-row{position:relative;z-index:1;max-width:var(--container);margin:48px auto 0;display:flex;align-items:flex-end;justify-content:space-between;gap:24px;}
.fhcl-btn--hotline{background:transparent;color:#fff;border:2px solid var(--c-orange-30);}
.fhcl-btn--hotline:hover{background:var(--c-orange);border-color:var(--c-orange);color:#fff;}
.fhcl-btn--hotline:hover svg{stroke:#fff;}
.fhcl-footer__hcl{width:80px;height:80px;object-fit:contain;}

/* Barre légale */
.fhcl-footer__bottom{max-width:var(--container);margin:28px auto 0;padding-top:24px;border-top:1px solid rgba(255,255,255,.12);
  display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:12px 24px;}
.fhcl-footer__bottom p{margin:0;font-size:14px;color:var(--c-white-60);}
.fhcl-footer__legal-links{display:flex;flex-wrap:wrap;gap:24px;list-style:none;margin:0;padding:0;}
.fhcl-footer__legal-links a{font-size:14px;color:var(--c-white-60);text-decoration:none;}
.fhcl-footer__legal-links a:hover{color:var(--c-orange);}
.fhcl-footer__love{display:inline-flex;align-items:center;gap:5px;}
.fhcl-footer__love .fhcl-heart{vertical-align:middle;}
@media(max-width:1024px){
  .fhcl-footer__inner{grid-template-columns:1fr;gap:32px;}
  .fhcl-newsletter{flex-direction:column;align-items:flex-start;}
  .fhcl-newsletter__form{width:100%;}
}
@media(max-width:680px){.fhcl-footer__cols{grid-template-columns:1fr 1fr;}.fhcl-footer__cta-row{flex-direction:column;align-items:flex-start;}.fhcl-footer__deco{display:none;}}

/* ===================== TEMPLATE PROJET (single-projet) ===================== */
.fhcl-projet__container{max-width:1100px;margin:0 auto;padding:0 24px;}

/* Header solide sur pages sans héro sombre */
body.fhcl-header-solid .fhcl-header__inner{background:#fff;border-color:transparent;box-shadow:0 2px 14px rgba(16,27,58,.08);}
body.fhcl-header-solid .fhcl-menu a{color:var(--c-navy);}
/* Sans cette règle le logo textuel resterait blanc sur le bandeau blanc. */
body.fhcl-header-solid .fhcl-logo__text{color:var(--c-navy);}
body.fhcl-header-solid .fhcl-menu a:hover{color:var(--c-orange);}
body.fhcl-header-solid .fhcl-iconbtn{color:var(--c-navy);}
body.fhcl-header-solid .fhcl-burger span{background:var(--c-navy);}

.fhcl-breadcrumb{padding:14px 0 6px;font-size:13px;color:var(--c-ink-60);}
.fhcl-breadcrumb a{color:var(--c-ink-60);text-decoration:none;}
.fhcl-breadcrumb a:hover{color:var(--c-orange);}
.fhcl-breadcrumb span{color:var(--c-ink);}

/* Hero */
.fhcl-projet__hero{padding:8px 0 24px;}
.fhcl-projet__tags{display:flex;flex-wrap:wrap;gap:8px;justify-content:center;margin-bottom:16px;}
.fhcl-badge{display:inline-flex;align-items:center;white-space:nowrap;font-size:14px;font-weight:var(--fw-medium);padding:4px 12px;border-radius:var(--r-xs);}
.fhcl-badge--solid{background:var(--c-blue);color:#fff;}
.fhcl-badge--outline{border:1px solid rgba(0,56,99,.3);color:var(--c-blue);}
.fhcl-projet__title{max-width:920px;margin:0 auto;text-align:center;font-size:var(--fs-display);font-weight:var(--fw-semibold);line-height:1.05;color:var(--c-ink);}
.fhcl-projet__meta{display:flex;align-items:center;justify-content:center;gap:10px;margin-top:16px;font-size:14px;color:var(--c-ink-60);}
.fhcl-projet__meta .fhcl-dot{width:4px;height:4px;border-radius:50%;background:var(--c-ink-60);}
.fhcl-readtime{display:inline-flex;align-items:center;gap:5px;}

/* Encart collecte */
.fhcl-collecte{display:flex;align-items:center;gap:14px;max-width:680px;margin:24px auto 0;padding:8px 14px;border:2px solid var(--c-orange-30);border-radius:var(--r-sm);color:var(--c-ink);}
.fhcl-collecte__heart{color:var(--c-orange);flex:none;}
.fhcl-collecte__txt{font-weight:var(--fw-medium);font-size:15px;}
.fhcl-collecte__cta{margin-left:auto;flex:none;}
/* Statut « en cours de financement » → thème orange dans le hero */
.fhcl-projet__hero.is-encours .fhcl-badge--outline{border-color:rgba(199,80,0,.3);color:var(--c-orange);}
.fhcl-collecte--encours{background:#FDF6F2;border-color:transparent;}
.fhcl-collecte--encours .fhcl-collecte__txt{color:var(--c-orange-text);}

/* Cover */
.fhcl-projet__cover{margin:40px 0 0;}
.fhcl-projet__cover-wrap{position:relative;border-radius:var(--r-md);overflow:hidden;}
.fhcl-projet__cover-wrap::after{content:"";position:absolute;left:0;right:0;bottom:0;height:150px;background:linear-gradient(to top,rgba(24,14,9,.5),rgba(24,14,9,0));pointer-events:none;}
.fhcl-projet__cover-img{display:block;width:100%;height:auto;object-fit:cover;aspect-ratio:1044/569;}
.fhcl-projet__soutien{position:absolute;left:16px;right:16px;bottom:16px;z-index:2;display:flex;align-items:center;gap:24px;background:rgba(255,255,255,.15);-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px);border-radius:var(--r-sm);padding:14px 22px;}
.fhcl-projet__soutien-txt{flex:1;margin:0;color:#fff;font-weight:var(--fw-medium);font-size:16px;line-height:1.4;}
.fhcl-projet__soutien-logo{flex:none;height:44px;width:auto;}
/* Mobile : le bandeau soutien (texte mécènes + logo) passe SOUS l'image, empilé
   (en surimpression sur une cover courte il débordait). Fond sombre car plus sur l'image. */
@media(max-width:768px){
	.fhcl-projet__soutien{position:static;left:auto;right:auto;bottom:auto;flex-direction:column;align-items:flex-start;gap:10px;margin-top:8px;padding:12px 14px;background:var(--c-navy);-webkit-backdrop-filter:none;backdrop-filter:none;}
	.fhcl-projet__soutien-txt{font-size:14px;line-height:1.35;}
	.fhcl-projet__soutien-logo{height:32px;}
	.fhcl-projet__cover-wrap::after{display:none;}
}

/* Corps éditorial (prose) */
.fhcl-projet__body{padding:36px 0 16px;}
.fhcl-prose{margin-top:72px;}
/* Lecteur podcast (single-podcast.php) */
.fhcl-podcast-listen{margin:32px 0 0;}
/* Appel à l'écoute d'un épisode : c'est l'action principale de la page, il doit
   se voir. Bouton large et centré (demande Salomé, recettage du 19/08). */
.fhcl-podcast-listen--xl{margin:40px 0 8px;text-align:center;}
.fhcl-podcast-listen--xl .fhcl-btn{
	display:inline-flex;align-items:center;justify-content:center;gap:12px;
	padding:20px 40px;font-size:20px;font-weight:var(--fw-semibold);
	border-radius:var(--r-md);box-shadow:0 10px 28px rgba(199,80,0,.28);
}
.fhcl-podcast-listen--xl .fhcl-btn svg{width:24px;height:24px;}
@media(max-width:700px){
	.fhcl-podcast-listen--xl .fhcl-btn{width:100%;padding:18px 24px;font-size:17px;}
}
.fhcl-podcast-listen__audio{width:100%;height:48px;}
.fhcl-podcast-listen__embed{width:100%;min-height:152px;border:0;border-radius:var(--r-md);}
.fhcl-podcast-single__chapeau{margin:0 0 24px;font-size:20px;line-height:1.5;font-weight:var(--fw-light);color:var(--c-ink);}
.fhcl-prose>*{margin:0 0 20px;}
.fhcl-prose h2{font-size:26px;font-weight:var(--fw-semibold);color:var(--c-ink);margin:32px 0 12px;}
.fhcl-prose h3{font-size:20px;font-weight:var(--fw-semibold);color:var(--c-ink);margin:24px 0 10px;}
.fhcl-prose p,.fhcl-prose li{font-size:16px;line-height:1.7;color:var(--c-ink-60);}
.fhcl-prose img{border-radius:var(--r-md);height:auto;}
.fhcl-prose blockquote{border-left:3px solid var(--c-orange);margin:24px 0;padding:6px 0 6px 22px;font-size:20px;font-weight:var(--fw-medium);color:var(--c-ink);}
.fhcl-prose blockquote cite{display:block;margin-top:10px;font-size:14px;font-weight:var(--fw-regular);font-style:normal;color:var(--c-ink-60);}
/* Lien du corps éditorial : soulignement OBLIGATOIRE et orange foncé.
   Sans soulignement, un lien au fil d'un paragraphe ne se distingue que par la
   couleur, échec RGAA 10.6 / axe `link-in-text-block`. Et l'orange clair
   (#C75000) passe sous le rapport 4.5:1 dès que le fond n'est plus blanc pur,
   ce qui arrive dans les tableaux du contenu migré. Concerne tout le contenu
   importé : 44 projets, 81 articles, 155 replays. */
.fhcl-prose a{color:var(--c-orange-text);text-decoration:underline;}
/* Les liens de don présents dans le corps éditorial (contenu migré ou saisi par le
   client) prennent l'aspect du bouton primaire, sans avoir à baliser le HTML. */
.fhcl-prose a[href*="iraiser"],
.fhcl-prose a[href*="mon-don"],
.fhcl-prose a[href*="/faire-un-don"]{
	display:inline-flex;align-items:center;gap:6px;margin:4px 0;
	padding:11px 20px;border-radius:var(--r-sm);
	background:var(--c-orange);color:#fff;
	font-weight:var(--fw-medium);font-size:15px;line-height:1.2;
	text-decoration:none;transition:background .2s;
}
.fhcl-prose a[href*="iraiser"]:hover,
.fhcl-prose a[href*="mon-don"]:hover,
.fhcl-prose a[href*="/faire-un-don"]:hover{background:var(--c-orange-hover);color:#fff;}

/* Lecteur d'un replay migré : vidéo YouTube, vidéo rapatriée ou chronique audio.
   Ratio 16/9 tenu par aspect-ratio, l'audio garde sa hauteur native. */
.fhcl-embed{margin:0 0 28px;}
.fhcl-embed iframe,
.fhcl-embed video{display:block;width:100%;aspect-ratio:16/9;height:auto;border:0;border-radius:var(--r-md);background:var(--c-navy);}
.fhcl-embed--audio{margin-bottom:16px;}
.fhcl-embed--audio audio{display:block;width:100%;height:48px;}
/* Lecteur audio embarqué (RCF) : compact, pas de 16/9. */
.fhcl-embed--audio iframe{aspect-ratio:auto;height:200px;background:transparent;}

/* Porteur */
.fhcl-porteur{display:flex;align-items:center;gap:18px;margin:0 auto 8px;padding:20px;background:var(--c-cream);border-radius:var(--r-md);}
.fhcl-porteur__photo{width:80px;height:80px;border-radius:50%;object-fit:cover;flex:none;}
.fhcl-porteur__label{margin:0;font-size:13px;font-weight:var(--fw-semibold);text-transform:uppercase;letter-spacing:.06em;color:var(--c-orange);}
.fhcl-porteur__name{margin:2px 0;font-size:18px;font-weight:var(--fw-semibold);color:var(--c-ink);}
.fhcl-porteur__fonction{margin:0;font-size:14px;color:var(--c-ink-60);}

/* Vidéo (embed YouTube responsive) */
.fhcl-video{position:relative;max-width:1044px;margin:72px auto 0;aspect-ratio:16/9;border-radius:var(--r-md);overflow:hidden;background:#000;}
.fhcl-video iframe{position:absolute;inset:0;width:100%;height:100%;border:0;}

/* Verbatim (node 207:127) */
.fhcl-verbatim{max-width:790px;margin:64px auto;display:flex;flex-direction:column;align-items:center;gap:32px;text-align:center;}
.fhcl-verbatim__quote{margin:0;font-weight:var(--fw-medium);font-size:32px;line-height:1.3;color:var(--c-ink);}
.fhcl-verbatim__line{display:block;width:107px;height:2px;background:var(--c-orange);border-radius:2px;}
.fhcl-verbatim__author{display:flex;flex-direction:column;align-items:center;gap:18px;}
.fhcl-verbatim__avatar{width:62px;height:62px;border-radius:50%;object-fit:cover;}
.fhcl-verbatim__id{display:flex;flex-direction:column;align-items:center;gap:4px;}
.fhcl-verbatim__name{margin:0;font-weight:var(--fw-semibold);font-size:16px;color:var(--c-orange);}
.fhcl-verbatim__role{margin:0;font-weight:var(--fw-regular);font-size:14px;color:var(--c-ink-60);}
@media(max-width:768px){.fhcl-verbatim__quote{font-size:24px;}}

/* ---- Palette de corps de projet : widgets Elementor FHCL (DA codée en dur) ---- */
.fhcl-h{margin:0;line-height:1.2;font-weight:var(--fw-semibold);color:var(--c-ink);}
.fhcl-h--2{font-size:26px;}
.fhcl-h--3{font-size:20px;}
.fhcl-h.fhcl-h--accent,.fhcl-prose .fhcl-h--accent{color:var(--c-orange);}
.fhcl-rt{margin:0;font-size:18px;line-height:1.75;color:var(--c-ink);font-weight:var(--fw-regular);}
.fhcl-rt>:first-child{margin-top:0;}
.fhcl-rt>:last-child{margin-bottom:0;}
.fhcl-rt p{margin:0 0 1.1em;}
.fhcl-rt a{color:var(--c-orange);text-decoration:underline;}
.fhcl-rt strong,.fhcl-rt b{font-weight:var(--fw-semibold);}
.fhcl-rt h3{margin:1.6em 0 .5em;font-size:26px;font-weight:var(--fw-semibold);line-height:1.2;color:var(--c-navy);}
.fhcl-rt h4{margin:1.4em 0 .4em;font-size:20px;font-weight:var(--fw-semibold);color:var(--c-navy);}
.fhcl-rt ul,.fhcl-rt ol{margin:0 0 1.1em;padding-left:1.4em;}
.fhcl-rt li{margin:.35em 0;}
.fhcl-rt blockquote{margin:1.4em 0;padding-left:20px;border-left:3px solid var(--c-orange);color:var(--c-ink-60);font-style:italic;}

.fhcl-figure{max-width:1044px;margin:48px auto;}
.fhcl-figure__img{display:block;width:100%;height:auto;border-radius:var(--r-md);}
.fhcl-figure__cap{margin:14px 2px 0;font-size:14px;font-weight:var(--fw-light);color:var(--c-ink-60);text-align:center;}

.fhcl-kpi{max-width:790px;margin:48px auto;display:flex;flex-direction:column;align-items:center;gap:10px;text-align:center;}
.fhcl-kpi__num{font-weight:var(--fw-bold);font-size:64px;line-height:1;color:var(--c-orange);}
.fhcl-kpi__label{max-width:520px;font-size:18px;font-weight:var(--fw-light);color:var(--c-ink);}

.fhcl-gallery{max-width:1044px;margin:48px auto;display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
.fhcl-gallery__item{display:block;width:100%;aspect-ratio:1/1;object-fit:cover;border-radius:var(--r-sm);}
@media(max-width:768px){.fhcl-gallery{grid-template-columns:repeat(2,1fr);}.fhcl-kpi__num{font-size:52px;}}

.fhcl-benefits{max-width:1290px;margin:48px auto;}
.fhcl-benefits__title{margin:0 0 28px;font-size:30px;line-height:1.2;font-weight:var(--fw-bold);color:var(--c-orange);}
.fhcl-benefits__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;align-items:stretch;}
.fhcl-benefits__card{display:flex;flex-direction:column;background:#F8F4EF;border-radius:16px;padding:32px 28px;min-height:300px;}
.fhcl-benefits__heart{flex:none;width:30px;height:30px;margin-bottom:28px;color:var(--c-orange);}
.fhcl-benefits__heart svg{display:block;width:100%;height:100%;fill:currentColor;}
.fhcl-benefits__text{margin:auto 0;font-size:18px;line-height:1.45;font-weight:var(--fw-regular);color:var(--c-ink);}
@media(max-width:1000px){.fhcl-benefits__grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:560px){.fhcl-benefits__grid{grid-template-columns:1fr;}.fhcl-benefits__card{min-height:0;}.fhcl-benefice{min-height:0;}}

/* Appel au don, bandeau (node 184:2812) */
.fhcl-donband{display:flex;align-items:center;gap:24px;max-width:1180px;margin:48px auto;background:var(--c-orange);border-radius:16px;padding:34px 50px;min-height:161px;box-sizing:border-box;}
.fhcl-donband__badge{flex:none;display:flex;align-items:center;justify-content:center;width:53px;height:53px;border-radius:4px;background:#fff;color:var(--c-orange);}
.fhcl-donband__badge svg{width:24px;height:24px;display:block;}
.fhcl-donband__body{flex:1 1 auto;min-width:0;}
.fhcl-donband__title{margin:0;font-weight:var(--fw-semibold);font-size:32px;line-height:1.1;color:#fff;}
.fhcl-donband__subtitle{margin:8px 0 0;font-weight:var(--fw-medium);font-size:14px;color:#fff;}
.fhcl-donband__button{flex:none;margin-left:auto;display:inline-flex;align-items:center;gap:6px;height:53px;padding:0 18px;border-radius:4px;background:#fff;color:var(--c-orange);text-decoration:none;font-weight:var(--fw-medium);font-size:17px;white-space:nowrap;transition:.2s;}
.fhcl-donband__button:hover{background:#FDF6F2;color:var(--c-orange-hover);}
.fhcl-donband__button-icon{display:inline-flex;}.fhcl-donband__button-icon svg{width:22px;height:22px;}
@media(max-width:680px){.fhcl-donband{flex-direction:column;align-items:flex-start;padding:28px;}.fhcl-donband__button{margin-left:0;width:100%;justify-content:center;}.fhcl-donband__title{font-size:24px;}}
/* Variante claire (fond crème, badge+bouton orange, titre orange), ex. milieu de page « La Fondation ». */
.fhcl-donband--light{background:#FDF6F2;}
.fhcl-donband--light .fhcl-donband__badge{background:var(--c-orange);color:#fff;}
.fhcl-donband--light .fhcl-donband__title{color:var(--c-orange-text);}
.fhcl-donband--light .fhcl-donband__subtitle{color:var(--c-orange-text);}
.fhcl-donband--light .fhcl-donband__button{background:var(--c-orange);color:#fff;}
.fhcl-donband--light .fhcl-donband__button:hover{background:var(--c-orange-hover);color:#fff;}

/* Citation expliquée (node 2378:1095) */
.fhcl-explication{position:relative;overflow:hidden;max-width:1044px;margin:48px auto;background:#FDF6F2;border-radius:16px;padding:24px 28px 28px;}
.fhcl-explication__tag{display:inline-flex;align-items:center;margin:0 0 18px;padding:4px 8px;border-radius:var(--r-xs);background:rgba(199,80,0,.15);font-weight:var(--fw-regular);font-size:14px;color:var(--c-ink);}
.fhcl-explication__quote{position:relative;z-index:1;margin:0;max-width:773px;font-weight:var(--fw-light);font-style:italic;font-size:16px;line-height:1.65;color:var(--c-ink);}
.fhcl-explication__deco{position:absolute;right:-20px;top:50%;transform:translateY(-50%);z-index:0;width:340px;pointer-events:none;opacity:.85;}
.fhcl-explication__deco img{display:block;width:100%;height:auto;}
@media(max-width:768px){.fhcl-explication__deco{display:none;}.fhcl-explication__quote{max-width:100%;}}

/* Témoignage à filet (node 184:4235) */
.fhcl-pullquote{display:flex;align-items:stretch;gap:24px;max-width:790px;margin:48px auto;}
.fhcl-pullquote__rule{flex:none;width:2px;align-self:stretch;min-height:90px;border-radius:var(--r-xs);background:var(--c-orange);}
.fhcl-pullquote__body{display:flex;flex-direction:column;justify-content:center;gap:16px;min-width:0;}
.fhcl-pullquote__label{align-self:flex-start;display:inline-flex;align-items:center;padding:4px 8px;border-radius:var(--r-xs);background:var(--c-orange);color:#fff;font-weight:var(--fw-regular);font-size:14px;line-height:1;}
.fhcl-pullquote__quote{margin:0;}
.fhcl-pullquote__quote p{margin:0;max-width:502px;font-weight:var(--fw-regular);font-size:16px;line-height:1.5;color:var(--c-ink-60);}

/* Porteur du projet (node 2378:1096) */
.fhcl-porteur{display:flex;align-items:center;gap:24px;max-width:1044px;margin:48px auto;background:#FDF6F2;border-radius:16px;padding:28px 32px;}
.fhcl-porteur__media{flex:none;}
.fhcl-porteur__photo{display:block;width:136px;height:177px;object-fit:cover;border-radius:4px;}
.fhcl-porteur__body{display:flex;flex-direction:column;align-items:flex-start;gap:8px;}
.fhcl-porteur__surtitre{display:inline-flex;align-items:center;padding:4px 8px;border:1px solid rgba(199,80,0,.3);border-radius:4px;color:var(--c-orange);font-weight:var(--fw-regular);font-size:14px;}
.fhcl-porteur__name{margin:0;font-weight:var(--fw-medium);font-size:24px;line-height:1.1;color:var(--c-ink);}
.fhcl-porteur__role{margin:0;font-weight:var(--fw-light);font-size:14px;color:var(--c-ink-60);}
@media(max-width:600px){.fhcl-porteur{flex-direction:column;align-items:flex-start;}}

/* Bannière don projet (node 2378:1097) */
.fhcl-appel-don{position:relative;width:100%;max-width:1044px;margin:48px auto;min-height:320px;border-radius:16px;overflow:hidden;isolation:isolate;background:var(--c-navy);}
.fhcl-appel-don__media{position:absolute;inset:0;z-index:0;}
.fhcl-appel-don__bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}
.fhcl-appel-don__overlay{position:absolute;inset:0;background:linear-gradient(164deg,rgba(21,27,39,0) 21%,var(--c-navy) 85%);}
.fhcl-appel-don__content{position:relative;z-index:1;display:grid;grid-template-columns:1fr auto;align-items:end;gap:20px 24px;padding:32px;min-height:320px;}
.fhcl-appel-don__text{grid-column:1;align-self:end;max-width:368px;margin:0;font-weight:var(--fw-light);font-size:16px;line-height:1.35;color:rgba(255,255,255,.8);}
.fhcl-appel-don__stats{grid-column:2;display:flex;gap:8px;justify-content:flex-end;}
.fhcl-appel-don__chip{display:flex;flex-direction:column;justify-content:center;gap:4px;min-height:64px;padding:8px 14px;border-radius:4px;backdrop-filter:blur(2px);-webkit-backdrop-filter:blur(2px);}
.fhcl-appel-don__chip--accent{background:rgba(199,80,0,.32);}
.fhcl-appel-don__chip--neutral{background:rgba(255,255,255,.15);}
.fhcl-appel-don__chip-label{color:rgba(255,255,255,.65);font-weight:var(--fw-regular);font-size:14px;}
.fhcl-appel-don__chip--accent .fhcl-appel-don__chip-label{font-weight:var(--fw-medium);font-size:18px;}
.fhcl-appel-don__chip-value{color:#fff;}
.fhcl-appel-don__chip--accent .fhcl-appel-don__chip-value{font-weight:var(--fw-bold);font-size:24px;line-height:1;}
.fhcl-appel-don__chip--neutral .fhcl-appel-don__chip-value{font-weight:var(--fw-medium);font-size:18px;line-height:1;}
.fhcl-appel-don__cta{grid-column:2;justify-self:end;display:inline-flex;align-items:center;gap:6px;height:53px;padding:0 18px;border-radius:4px;background:var(--c-orange);color:#fff;text-decoration:none;font-weight:var(--fw-medium);font-size:17px;white-space:nowrap;transition:.2s;}
.fhcl-appel-don__cta:hover{background:var(--c-orange-hover);color:#fff;}
.fhcl-appel-don__cta-icon{display:inline-flex;}.fhcl-appel-don__cta-icon svg{width:22px;height:22px;}
@media(max-width:782px){.fhcl-appel-don__content{grid-template-columns:1fr;align-items:start;}.fhcl-appel-don__text,.fhcl-appel-don__stats,.fhcl-appel-don__cta{grid-column:1;justify-self:start;}.fhcl-appel-don__stats{flex-wrap:wrap;}.fhcl-appel-don__cta{width:100%;justify-content:center;}}

/* Carte « Faire un don pour un autre projet » (node 2337:1015) */
/* Ligne basse : Témoignages (gauche, nodes 88:2753→93:2792) + carte don (droite) */
.fhcl-lowerrow{display:flex;gap:32px;align-items:flex-start;margin:72px 0 0;}
.fhcl-temoins{flex:1 1 auto;min-width:0;}
.fhcl-temoins__head{display:flex;align-items:center;gap:8px;margin-bottom:18px;}
.fhcl-tag--video{display:inline-flex;align-items:center;gap:4px;line-height:1;border:1px solid rgba(199,80,0,.3);color:var(--c-orange);font-size:12px;padding:4px 8px;border-radius:var(--r-xs);}
.fhcl-tag--video svg{display:block;}
.fhcl-temoins__grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.fhcl-temoin{display:flex;flex-direction:column;align-items:flex-start;}
.fhcl-temoin__media{position:relative;display:block;width:100%;aspect-ratio:287/167;border-radius:var(--r-sm);overflow:hidden;background:var(--c-navy);}
.fhcl-temoin__media img{width:100%;height:100%;object-fit:cover;display:block;}
.fhcl-temoin__media::after{content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(21,27,39,.5),rgba(21,27,39,0) 53%);}
.fhcl-temoin__text{margin:14px 0 0;font-size:15px;line-height:1.45;color:var(--c-ink);}
.fhcl-temoin__cta{margin-top:12px;font-size:14px;}
.fhcl-doncard{position:relative;width:100%;max-width:440px;aspect-ratio:410/324;border-radius:var(--r-md);overflow:hidden;background:var(--c-navy);}
.fhcl-lowerrow>.fhcl-doncard{flex:none;width:410px;}
.fhcl-doncard:only-child{margin-inline:auto;}
@media(max-width:900px){.fhcl-lowerrow{flex-direction:column;}.fhcl-lowerrow>.fhcl-doncard{width:100%;max-width:440px;margin-inline:auto;}}
@media(max-width:560px){.fhcl-temoins__grid{grid-template-columns:1fr;}}
.fhcl-doncard__img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}
.fhcl-doncard__grad{position:absolute;inset:0;z-index:1;background:linear-gradient(to bottom,rgba(24,14,9,0) 30%,rgba(24,14,9,.7));}
.fhcl-doncard__foot{position:absolute;left:0;right:0;bottom:0;z-index:2;padding:16px;display:flex;flex-direction:column;gap:8px;}
.fhcl-doncard__status{display:flex;align-items:center;justify-content:space-between;gap:12px;background:rgba(208,85,3,.3);-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px);border-radius:var(--r-sm);padding:12px 18px;}
.fhcl-doncard__status span{color:#fff;font-weight:var(--fw-medium);font-size:18px;}
.fhcl-doncard__status strong{color:#fff;font-weight:var(--fw-bold);font-size:24px;white-space:nowrap;}
.fhcl-doncard__cta{display:flex;align-items:center;justify-content:center;gap:8px;background:var(--c-orange);color:#fff;font-weight:var(--fw-medium);font-size:17px;border-radius:var(--r-sm);padding:14px;text-decoration:none;}
.fhcl-doncard__cta:hover{background:var(--c-orange-hover);color:#fff;}

/* Lecteur Podcast (node 141:137), audio hébergé en externe (cf. CDC) */
.fhcl-podcast{max-width:1044px;margin:56px auto 0;background:rgba(0,56,99,.05);border-radius:var(--r-sm);padding:20px 18px;}
.fhcl-podcast__head{display:flex;align-items:center;gap:16px;margin-bottom:18px;}
.fhcl-podcast__meta{display:inline-flex;align-items:center;gap:8px;font-size:14px;color:var(--c-ink-60);}
.fhcl-podcast__meta svg{display:block;}
.fhcl-podcast__sq{display:inline-block;width:4px;height:4px;background:var(--c-ink);}
.fhcl-podcast__main{display:flex;align-items:center;gap:24px;}
.fhcl-podcast__thumb{flex:none;display:block;width:72px;height:72px;border-radius:var(--r-sm);overflow:hidden;background:var(--c-cream);}
.fhcl-podcast__thumb img{width:100%;height:100%;object-fit:cover;display:block;}
.fhcl-podcast__info{flex:1;min-width:0;display:flex;flex-direction:column;gap:4px;}
.fhcl-podcast__titleline{display:flex;align-items:center;gap:9px;}
.fhcl-podcast__audio{display:inline-flex;align-items:center;gap:4px;flex:none;border:1px solid rgba(0,56,99,.3);color:var(--c-blue);font-size:12px;padding:4px 8px;border-radius:var(--r-xs);}
.fhcl-podcast__audio svg{display:block;}
.fhcl-podcast__dot{flex:none;width:4px;height:4px;background:var(--c-blue);}
.fhcl-podcast__title{font-weight:var(--fw-medium);font-size:16px;line-height:1.25;color:var(--c-blue);text-decoration:none;}
.fhcl-podcast__title:hover{color:var(--c-blue);text-decoration:underline;}
.fhcl-podcast__desc{margin:0;font-size:16px;line-height:1.4;color:var(--c-ink-60);overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;}
.fhcl-podcast__controls{display:flex;align-items:center;gap:15px;flex:none;color:var(--c-ink);text-decoration:none;}
.fhcl-podcast__controls svg{display:block;}
.fhcl-podcast__controls:hover{color:var(--c-ink);}
.fhcl-podcast__play{display:inline-flex;align-items:center;justify-content:center;width:56px;height:56px;border-radius:50%;background:#fff;color:var(--c-ink);box-shadow:0 4px 14px rgba(0,0,0,.12);transition:transform .15s ease;}
.fhcl-podcast__controls:hover .fhcl-podcast__play{transform:scale(1.05);}
.fhcl-podcast__progress{margin-top:18px;}
.fhcl-podcast__bar{height:3px;border-radius:2px;background:rgba(0,56,99,.15);overflow:hidden;}
.fhcl-podcast__fill{display:block;width:32%;height:100%;background:var(--c-blue);border-radius:2px;}
.fhcl-podcast__times{display:flex;justify-content:space-between;margin-top:6px;font-size:12px;font-weight:var(--fw-medium);color:var(--c-ink-60);}
@media(max-width:768px){.fhcl-podcast__main{flex-wrap:wrap;}.fhcl-podcast__info{flex-basis:calc(100% - 96px);}.fhcl-podcast__controls{order:3;width:100%;justify-content:center;margin-top:6px;}}

/* Voir d'autres projets */
.fhcl-related{margin-top:72px;padding:0 0 120px;}
.fhcl-related__wave{display:block;width:100%;height:23px;margin-bottom:44px;}
.fhcl-related__inner{display:grid;grid-template-columns:1fr 1.25fr;gap:56px;align-items:start;}
.fhcl-related__head h2{font-size:var(--fs-display);font-weight:var(--fw-semibold);color:var(--c-ink);line-height:1.05;margin:0 0 28px;}
.fhcl-link-arrow{display:inline-flex;align-items:center;gap:8px;color:var(--c-orange);font-weight:var(--fw-medium);text-decoration:none;border-bottom:1px solid var(--c-orange);padding-bottom:4px;}
.fhcl-related__list{display:flex;flex-direction:column;}
.fhcl-rcard{display:flex;gap:24px;align-items:center;text-decoration:none;padding:22px 0;border-bottom:1px solid #E7E3DC;}
.fhcl-related__list .fhcl-rcard:first-child{padding-top:0;}
.fhcl-rcard__media{flex:none;width:300px;aspect-ratio:302/169;border-radius:var(--r-md);overflow:hidden;background:var(--c-cream);}
.fhcl-rcard__media img{width:100%;height:100%;object-fit:cover;transition:transform .3s;}
.fhcl-rcard:hover .fhcl-rcard__media img{transform:scale(1.04);}
.fhcl-rcard__body{display:flex;flex-direction:column;gap:10px;}
.fhcl-rcard__top{display:flex;align-items:center;gap:12px;}
.fhcl-badge--orange{background:var(--c-orange);color:#fff;}
.fhcl-badge--blue{background:var(--c-blue);color:#fff;}
.fhcl-rcard__meta{font-size:13px;color:var(--c-ink-60);}
.fhcl-rcard__title{font-size:20px;font-weight:var(--fw-semibold);color:var(--c-ink);line-height:1.3;}

/* Bénéfices (block pattern) */
.fhcl-prose .fhcl-benefices__title{color:var(--c-orange);font-size:24px;margin-bottom:18px;}
.fhcl-benefices{gap:24px!important;margin:0 0 24px;}
.fhcl-benefice{display:flex;flex-direction:column;background:var(--c-cream);border-radius:var(--r-md);padding:24px;min-height:230px;}
.fhcl-benefice::before{content:"";display:block;width:26px;height:26px;margin-bottom:16px;background-color:var(--c-orange);-webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21s-7.5-4.9-7.5-10.3A4.2 4.2 0 0 1 12 7a4.2 4.2 0 0 1 7.5 3.7C19.5 16.1 12 21 12 21z'/%3E%3C/svg%3E") center/contain no-repeat;mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21s-7.5-4.9-7.5-10.3A4.2 4.2 0 0 1 12 7a4.2 4.2 0 0 1 7.5 3.7C19.5 16.1 12 21 12 21z'/%3E%3C/svg%3E") center/contain no-repeat;}
.fhcl-benefice p{margin:0;color:var(--c-ink-60);font-size:15px;line-height:1.6;}
.fhcl-benefice--media{background:transparent;padding:0;overflow:hidden;}
.fhcl-benefice--media::before{content:none;}
.fhcl-benefice--media img,.fhcl-benefice__img{flex:1 1 auto;width:100%;height:100%;min-height:230px;margin:0;object-fit:cover;border-radius:var(--r-md);display:block;}
@media(max-width:900px){.fhcl-related__inner{grid-template-columns:1fr;gap:24px;}.fhcl-rcard{flex-direction:column;align-items:flex-start;}.fhcl-rcard__media{width:100%;}.fhcl-collecte{flex-wrap:wrap;}.fhcl-collecte__cta{margin-left:0;}}

/* Crédits de conception, en sous-footer (document « Lien footer »). */
.fhcl-footer__credits{margin:6px 0 0;font-size:13px;color:rgba(255,255,255,.62);}
.fhcl-footer__credits a{color:rgba(255,255,255,.82);text-decoration:underline;}

/* ===== Archive générique (taxonomies hopital/statut/type, podcasts) =====
   Réutilise les cartes projet et actualité : la grille se contente de les poser. */
.fhcl-archive-gen{padding:40px 0 96px;}
.fhcl-archive-gen__head{margin:8px 0 36px;}
.fhcl-archive-gen__title{font-size:clamp(1.8rem,4vw,3rem);font-weight:var(--fw-semibold);margin:0;}
.fhcl-archive-gen__desc{margin:12px 0 0;color:var(--c-ink-60);font-size:17px;line-height:1.6;}
.fhcl-archive-gen__count{margin:10px 0 0;color:var(--c-ink-60);font-size:15px;}
.fhcl-archive-gen__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:28px;align-items:start;}
.fhcl-archive-gen__empty{margin:0 0 20px;color:var(--c-ink-60);font-size:17px;}
/* Pagination du cœur WordPress : on aligne seulement la typo et les cibles. */
.fhcl-archive-gen .nav-links{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;margin-top:48px;}
.fhcl-archive-gen .nav-links .page-numbers{
  display:inline-flex;align-items:center;justify-content:center;min-width:44px;min-height:44px;
  padding:0 12px;border:1px solid #E2D9CB;border-radius:var(--r-sm);
  color:var(--c-ink);text-decoration:none;font-size:15px;
}
.fhcl-archive-gen .nav-links .page-numbers.current{background:var(--c-orange);border-color:var(--c-orange);color:#fff;}
.fhcl-archive-gen .nav-links a.page-numbers:hover{border-color:var(--c-orange);color:var(--c-orange-text);}
@media (max-width:1080px){.fhcl-archive-gen__grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media (max-width:700px){.fhcl-archive-gen__grid{grid-template-columns:minmax(0,1fr);}}

/* Formulaire de don iRaiser embarqué (shortcode [fhcl_don_form]). Le cadre
   s'auto-redimensionne si iRaiser émet sa hauteur ; sinon --fhcl-don-h. */
.fhcl-don-embed{position:relative;width:100%;max-width:760px;margin:0 auto;}
.fhcl-don-embed__frame{display:block;width:100%;height:var(--fhcl-don-h,1100px);border:0;border-radius:var(--r-md);background:var(--c-cream);}
.fhcl-don-embed__fallback{max-width:760px;margin:16px auto 0;text-align:center;font-size:14px;color:var(--c-ink-60);}
.fhcl-don-embed__fallback a{color:var(--c-orange-text);text-decoration:underline;}

/* Lecteur vidéo modal (cartes témoignages : lecture dans le site). */
.fhcl-vmodal{position:fixed;inset:0;z-index:9999;display:flex;align-items:center;justify-content:center;padding:24px;background:rgba(10,14,22,.88);}
.fhcl-vmodal__box{position:relative;width:min(1000px,100%);max-height:calc(100vh - 48px);display:flex;flex-direction:column;gap:12px;}
.fhcl-vmodal__frame{position:relative;width:100%;aspect-ratio:16/9;background:#000;border-radius:var(--r-md);overflow:hidden;}
.fhcl-vmodal__frame iframe{position:absolute;inset:0;width:100%;height:100%;border:0;}
.fhcl-vmodal__close{position:absolute;top:-44px;right:0;width:36px;height:36px;display:flex;align-items:center;justify-content:center;border:0;border-radius:50%;background:rgba(255,255,255,.14);color:#fff;cursor:pointer;}
.fhcl-vmodal__close:hover{background:rgba(255,255,255,.26);}
.fhcl-vmodal__close svg{width:18px;height:18px;}
.fhcl-vmodal__yt{align-self:center;color:rgba(255,255,255,.8);font-size:14px;text-decoration:underline;}
.fhcl-vmodal__yt:hover{color:#fff;}
/* Shorts : cadre vertical sur les écrans larges. Les vidéos classiques gardent
   le 16/9 défini plus haut. */
@media(min-width:700px){
	.fhcl-vmodal--portrait .fhcl-vmodal__box{width:min(420px,100%);}
	.fhcl-vmodal--portrait .fhcl-vmodal__frame{aspect-ratio:9/16;}
}

/* La carte « Restez connectés » remonte de 90px pour déborder sur le footer.
   Sur les pages construites, la dernière section a son propre espacement et
   absorbe ce débord. Sur les pages au gabarit par défaut (mentions légales,
   cookies, données personnelles, accessibilité), le texte s'arrête net : la
   carte recouvrait donc les dernières lignes (signalé au recettage 17/08).
   On réserve la hauteur du débord sur ces pages uniquement. */
body.fhcl-page-simple #fhcl-content{padding-bottom:130px;}
@media(max-width:900px){
	body.fhcl-page-simple #fhcl-content{padding-bottom:96px;}
}

/* Formulaire de don répété en fin de page de la rubrique don (demande 19/08 :
   le donateur ne doit pas changer de page pour donner). */
.fhcl-don-bas{margin:72px 0 0;padding:56px 24px 8px;background:var(--c-cream);}
.fhcl-don-bas__inner{max-width:860px;margin:0 auto;}
.fhcl-don-bas__title{
	margin:0 0 28px;text-align:center;color:var(--c-ink);
	font-size:clamp(26px,3.4vw,36px);line-height:1.15;font-weight:var(--fw-semibold);
}
/* Le cadre est posé sur la bande crème : fond blanc pour qu'il se lise comme un
   formulaire et non comme un trou dans la page. */
.fhcl-don-bas .fhcl-don-embed__frame{background:#fff;box-shadow:0 2px 24px rgba(0,56,99,.08);}
.fhcl-don-bas .fhcl-don-embed__fallback{margin-bottom:24px;}
@media(max-width:700px){.fhcl-don-bas{margin-top:48px;padding:40px 16px 8px;}}

/* Retour d'inscription à la newsletter (rendu dans la zone d'état du pied de page). */
.fhcl-newsletter__msg{display:inline-block;font-size:14px;line-height:1.4;}
.fhcl-newsletter__msg--ok{color:var(--c-ink);}
.fhcl-newsletter__msg--err{color:var(--c-orange-text);}
