/* ============================================================
   LAKOU DAMIEN COMMUNITY — Feuille de style principale
   Palette (étape 14) : reformulée à partir des couleurs du logo —
   bleu marine, vert feuillage, ocre/terracotta du toit de chaume.
   Polices : Poppins / Merriweather
   ============================================================ */

:root {
  --ldc-blue: #0E4A78;
  --ldc-blue-dark: #041B33;
  --ldc-green: #3F7A16;
  --ldc-green-dark: #274C0D;
  --ldc-yellow: #C17E3A;
  --ldc-yellow-dark: #9C6329;
  --ldc-white: #FFFFFF;
  --ldc-dark: #241608;
  --ldc-gray: #7A6F63;
  --ldc-bg-light: #F8F4EC;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Merriweather', Georgia, serif;

  --radius: 14px;
  --shadow-soft: 0 10px 30px rgba(14, 74, 120, 0.12);
}

* { box-sizing: border-box; }

body {
  font-family: var(--font-body);
  color: var(--ldc-dark);
  background-color: var(--ldc-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .ldc-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ldc-blue-dark);
}

a { text-decoration: none; }

/* ---------------- Navbar ---------------- */
.ldc-navbar {
  background: linear-gradient(90deg, var(--ldc-blue-dark), var(--ldc-blue));
  padding-top: .7rem;
  padding-bottom: .7rem;
}
.ldc-brand { line-height: 1; display: flex; align-items: center; gap: .6rem; }
.ldc-brand-text { display: flex; flex-direction: column; }
.ldc-brand-logo { width: 42px; height: 42px; object-fit: cover; border-radius: 8px; background: #fff; padding: 2px; }
.ldc-brand-main { font-family: var(--font-heading); font-weight: 800; color: #fff; font-size: 1.25rem; }
.ldc-brand-sub { font-family: var(--font-heading); font-weight: 500; color: var(--ldc-yellow); font-size: .75rem; letter-spacing: 2px; text-transform: uppercase; }
/* x0.95 : évite le débordement du menu quand une langue (ht/es) produit des
   libellés plus longs que le français d'origine ("Contenus", etc.). */
.ldc-navbar .nav-link { color: rgba(255,255,255,.9); font-weight: 500; font-family: var(--font-heading); font-size: .95rem; }
.ldc-navbar .nav-link:hover { color: var(--ldc-yellow); }

.ldc-btn-donate {
  background: var(--ldc-yellow);
  color: var(--ldc-blue-dark) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  border-radius: 50px;
  padding: .5rem 1.3rem;
  transition: transform .2s ease, background .2s ease;
}
.ldc-btn-donate:hover { background: var(--ldc-yellow-dark); transform: translateY(-2px); color: var(--ldc-blue-dark) !important; }

.ldc-btn-accent {
  background: var(--ldc-yellow);
  border: none;
  color: var(--ldc-blue-dark);
  font-weight: 700;
  font-family: var(--font-heading);
}
.ldc-btn-accent:hover { background: var(--ldc-yellow-dark); color: var(--ldc-blue-dark); }

.btn-ldc-primary {
  background: var(--ldc-blue);
  border: none;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 50px;
  padding: .7rem 1.8rem;
  transition: all .25s ease;
}
.btn-ldc-primary:hover { background: var(--ldc-blue-dark); color: #fff; transform: translateY(-2px); }

/* --ldc-white sert aussi de fond de page basculé par le thème sombre (cf.
   body plus haut) : ce bouton s'affiche toujours sur un fond coloré fixe
   (hero, cartes d'entrevue), donc blanc littéral ici, jamais la variable —
   sinon le bouton deviendrait illisible en thème sombre (étape 14, bug corrigé). */
.btn-ldc-outline {
  border: 2px solid #fff;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 50px;
  padding: .65rem 1.8rem;
  background: transparent;
  transition: all .25s ease;
}
.btn-ldc-outline:hover { background: #fff; color: var(--ldc-blue-dark); }

/* ---------------- Hero / Landing ---------------- */
.ldc-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(4,27,51,.88), rgba(39,76,13,.82)),
              url('../img/hero-bg.jpg') center/cover no-repeat; /* <-- placer votre image de fond ici */
  color: #fff;
}
.ldc-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(193,126,58,.25), transparent 55%);
}
.ldc-hero .container { position: relative; z-index: 2; }
.ldc-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
.ldc-hero .accent { color: var(--ldc-yellow); }
.ldc-hero p.lead { color: rgba(255,255,255,.9); font-size: 1.15rem; max-width: 620px; }

.ldc-badge-live {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  padding: .45rem 1rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: .85rem;
}
.ldc-badge-live .dot { width: 8px; height: 8px; background: var(--ldc-yellow); border-radius: 50%; animation: pulse 1.6s infinite; }
@keyframes pulse { 0%{opacity:1} 50%{opacity:.3} 100%{opacity:1} }

/* Bouton "En direct" du compte à rebours (page d'accueil, Étape 9) */
#ldc-live-btn .ldc-live-btn-dot {
  display: inline-block; width: 8px; height: 8px;
  background: #fff; border-radius: 50%;
  animation: pulse 1.2s infinite;
}
#ldc-countdown-see-link { color: var(--ldc-yellow); text-decoration: underline; }
#ldc-countdown-see-link:hover { color: #fff; }

/* Éditeur de texte riche du blog (admin, Étape 10) */
.ldc-quill-editor { background: #fff; min-height: 260px; border-radius: 0 0 .375rem .375rem; }
.ldc-quill-editor .ql-editor { min-height: 240px; }

/* ---------------- Sections génériques ---------------- */
.section-pad { padding: 5.5rem 0; }
.bg-ldc-light { background: var(--ldc-bg-light); }
.bg-ldc-blue { background: var(--ldc-blue); color: #fff; }
/* var(--ldc-blue-dark), pas var(--ldc-dark) : ce dernier bascule en clair en
   thème sombre (texte du corps de page), ce qui viderait de sens un fond
   "toujours sombre" comme celui-ci ou celui du footer plus bas (étape 14, bug corrigé). */
.bg-ldc-dark { background: var(--ldc-blue-dark); color: #fff; }

.ldc-eyebrow {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .8rem;
  color: var(--ldc-green);
  font-weight: 700;
}

.ldc-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(14,74,120,.08);
  overflow: hidden;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}
.ldc-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(14,74,120,.18); }
.ldc-card img { width: 100%; height: 210px; object-fit: cover; }
.ldc-card .ldc-card-body { padding: 1.5rem; }

.ldc-icon-box {
  width: 62px; height: 62px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 16px;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 1rem;
}
.ldc-icon-box.blue { background: var(--ldc-blue); }
.ldc-icon-box.green { background: var(--ldc-green); }
.ldc-icon-box.yellow { background: var(--ldc-yellow); color: var(--ldc-blue-dark); }

/* ---------------- Interviews ---------------- */
.ldc-interview-card .ratio { border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; }
.ldc-interview-date {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ldc-green);
  font-size: .85rem;
  text-transform: uppercase;
}
.ldc-people-chip {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--ldc-bg-light);
  border-radius: 50px;
  padding: .3rem .8rem .3rem .3rem;
  font-size: .85rem;
  margin-right: .4rem;
}
.ldc-people-chip img { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; }

/* ---------------- Forms ---------------- */
.ldc-form-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 2.5rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--ldc-blue);
  box-shadow: 0 0 0 .2rem rgba(14,74,120,.15);
}
.ldc-form-feedback.text-success { color: var(--ldc-green) !important; }
.ldc-form-feedback.text-danger { color: #C0392B !important; }

/* ---------------- Footer ---------------- */
/* var(--ldc-blue-dark) : le footer doit rester sombre dans les deux thèmes,
   comme la navbar ; var(--ldc-dark) devient clair en thème sombre et
   rendrait ce footer illisible (étape 14, bug corrigé). */
.ldc-footer {
  background: var(--ldc-blue-dark);
  color: rgba(255,255,255,.85);
}
.ldc-footer-brand { color: #fff; font-family: var(--font-heading); }
.ldc-footer-brand span { color: var(--ldc-yellow); }
.ldc-footer-title { color: var(--ldc-yellow); font-family: var(--font-heading); font-size: .95rem; text-transform: uppercase; letter-spacing: 1px; }
.ldc-footer-links li { margin-bottom: .5rem; }
.ldc-footer-links a { color: rgba(255,255,255,.75); }
.ldc-footer-links a:hover { color: var(--ldc-yellow); }
.ldc-social a { color: #fff; font-size: 1.2rem; }
.ldc-social a:hover { color: var(--ldc-yellow); }
.ldc-newsletter-form .form-control { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); color: #fff; }
.ldc-newsletter-form .form-control::placeholder { color: rgba(255,255,255,.6); }

/* ---------------- Flyer generator (admin) ---------------- */
.flyer-canvas-wrap {
  background: repeating-conic-gradient(#eee 0% 25%, #fff 0% 50%) 50% / 20px 20px;
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  justify-content: center;
}
#flyerCanvas { max-width: 100%; border-radius: 8px; box-shadow: var(--shadow-soft); }

/* ---------------- Utilities ---------------- */
.ldc-donate-strip {
  background: linear-gradient(90deg, var(--ldc-green-dark), var(--ldc-green));
  color: #fff;
}

/* ---------------- Connexion sociale (Google / Facebook) ---------------- */
.ldc-btn-oauth {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: .65rem 1rem;
  font-weight: 600;
  border: 1px solid rgba(16,36,43,.15);
  transition: transform .15s ease, box-shadow .15s ease;
}
.ldc-btn-oauth:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(16,36,43,.12); }
.ldc-btn-google { background: #fff; color: #10242B; }
.ldc-btn-google:hover { color: #10242B; }
.ldc-btn-facebook { background: #1877F2; color: #fff; }
.ldc-btn-facebook:hover { background: #145FC4; color: #fff; }
/* Facebook en attente (API pas encore créée) : bouton grisé/assombri, non
   cliquable — repasse automatiquement en bleu actif dès que
   FACEBOOK_APP_ID/SECRET seront renseignés dans config/oauth.php
   (voir oauth_facebook_configured() dans login.php / register.php). */
.ldc-btn-facebook:disabled {
  background: #4a5257;
  color: rgba(255,255,255,.75);
  border-color: rgba(255,255,255,.1);
  cursor: not-allowed;
  opacity: 1;
}
.ldc-btn-facebook:disabled:hover { transform: none; box-shadow: none; }
.ldc-oauth-pending { margin-left: .4rem; font-size: .78em; font-weight: 500; font-style: italic; opacity: .85; }

.ldc-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--ldc-gray);
  font-size: .85rem;
}
.ldc-divider::before, .ldc-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid rgba(16,36,43,.12);
}
.ldc-divider span { padding: 0 .75rem; }

/* Champ piège anti-robots (honeypot) : invisible pour un humain, visible pour un bot naïf. */
.ldc-hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------------- Avatar / menu profil ---------------- */
.ldc-avatar-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.6);
}
.ldc-avatar-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-size: 1.05rem;
  border: 2px solid rgba(255,255,255,.6);
}
.ldc-avatar-placeholder-lg {
  width: 100px;
  height: 100px;
  font-size: 2.6rem;
  background: var(--ldc-bg-light);
  color: var(--ldc-blue);
  border: none;
  display: flex;
}
.ldc-account-dropdown { min-width: 230px; }
.ldc-account-dropdown .dropdown-item { padding: .55rem 1rem; }

/* ---------------- Modales (compte / personnalisation) ---------------- */
.ldc-modal .modal-header { border-bottom-color: rgba(16,36,43,.08); }
.ldc-modal .nav-tabs .nav-link.active { color: var(--ldc-blue); border-bottom: 2px solid var(--ldc-blue); font-weight: 600; }

/* Boutons radio "Clair / Sombre" (personnalisation) */
.ldc-theme-btn {
  border: 1px solid rgba(16,36,43,.15);
  background: #fff;
  color: var(--ldc-dark);
}
.btn-check:checked + .ldc-theme-btn {
  background: var(--ldc-blue);
  color: #fff;
  border-color: var(--ldc-blue);
}

/* ---------------- Thème sombre ---------------- */
:root[data-theme="dark"] {
  --ldc-white: #1C140D;
  --ldc-bg-light: #140D08;
  --ldc-dark: #F3ECE3;
  --ldc-gray: #C9BBA8;
}
:root[data-theme="dark"] body { background-color: #140D08; color: #F3ECE3; }
:root[data-theme="dark"] .ldc-form-card {
  background: #241A12;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
:root[data-theme="dark"] .form-control,
:root[data-theme="dark"] .form-select {
  background: #140D08;
  color: #F3ECE3;
  border-color: rgba(255,255,255,.15);
}
:root[data-theme="dark"] .form-control::placeholder { color: rgba(243,236,227,.45); }
:root[data-theme="dark"] .ldc-divider { color: rgba(243,236,227,.55); }
:root[data-theme="dark"] .ldc-divider::before,
:root[data-theme="dark"] .ldc-divider::after { border-bottom-color: rgba(255,255,255,.15); }
:root[data-theme="dark"] .dropdown-menu,
:root[data-theme="dark"] .modal-content {
  background: #241A12;
  color: #F3ECE3;
}
:root[data-theme="dark"] .dropdown-item { color: #F3ECE3; }
:root[data-theme="dark"] .dropdown-item:hover,
:root[data-theme="dark"] .dropdown-item:focus { background: rgba(255,255,255,.08); color: #fff; }
:root[data-theme="dark"] .ldc-modal .modal-header { border-bottom-color: rgba(255,255,255,.1); }
:root[data-theme="dark"] .nav-tabs { border-bottom-color: rgba(255,255,255,.1); }
:root[data-theme="dark"] .nav-tabs .nav-link { color: rgba(243,236,227,.7); }
:root[data-theme="dark"] .ldc-theme-btn { background: #241A12; color: #F3ECE3; border-color: rgba(255,255,255,.15); }
:root[data-theme="dark"] h1, :root[data-theme="dark"] h2, :root[data-theme="dark"] h3,
:root[data-theme="dark"] h4, :root[data-theme="dark"] h5, :root[data-theme="dark"] h6 {
  color: #F3ECE3;
}

/* ---------------- Cartes Entrevues (page publique) ---------------- */
.ldc-iv-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  height: 100%;
  /* La navbar est en sticky-top : sans cette marge, un lien-ancre vers une
     fiche précise (#interview-N, utilisé par le compte à rebours — Étape 9)
     la ferait apparaître partiellement cachée dessous. */
  scroll-margin-top: 100px;
}
.ldc-iv-cover {
  position: relative;
  /* Format portrait A4 / Lettre (0,71 environ) : les affiches d'entrevues
     sont conçues en portrait (flyers), pas en paysage — 2026-09-03. */
  aspect-ratio: 210 / 297;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ldc-blue), var(--ldc-green));
}
.ldc-iv-cover-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ldc-iv-cover-generated {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--ldc-blue) 0%, var(--ldc-blue-dark) 60%, var(--ldc-green-dark) 100%);
  color: #fff;
}
.ldc-iv-cover-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.ldc-iv-avatars { display: flex; }
.ldc-iv-avatars img, .ldc-iv-avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.85);
  margin-left: -12px;
  background: var(--ldc-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ldc-blue-dark);
  font-size: 1.1rem;
}
.ldc-iv-avatars img:first-child, .ldc-iv-avatar-placeholder:first-child { margin-left: 0; }
.ldc-iv-date-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fff;
  border-radius: 10px;
  padding: .35rem .6rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
  line-height: 1;
}
.ldc-iv-date-badge span { display: block; font-family: var(--font-heading); font-weight: 800; font-size: 1.15rem; color: var(--ldc-blue-dark); }
.ldc-iv-date-badge small { display: block; font-size: .65rem; letter-spacing: 1px; color: var(--ldc-gray); }
.ldc-iv-body { padding: 1.25rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.ldc-iv-datetime { color: var(--ldc-green); font-weight: 600; font-size: .85rem; text-transform: uppercase; letter-spacing: .5px; }
.ldc-iv-excerpt { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.ldc-iv-card-past { opacity: .97; }

/* ---------------- Blog public (Étape 11) — dérivé de .ldc-iv-card ---------------- */
.ldc-blog-card { border-top: 4px solid var(--ldc-blue); }
.ldc-blog-section-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
  color: #fff; padding: .3rem .7rem; border-radius: 50px;
}
.ldc-blog-section-dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; }
.ldc-blog-pdf-frame { width: 100%; height: 80vh; border: 0; border-radius: var(--radius); }
.ldc-blog-article-body { max-width: 760px; margin: 0 auto; }
.ldc-blog-article-body img { max-width: 100%; height: auto; border-radius: 10px; }
.ldc-blog-article-body h2, .ldc-blog-article-body h3 { font-family: var(--font-heading); margin-top: 1.75rem; }
.ldc-blog-filter-pill.active { background: var(--ldc-blue); color: #fff; border-color: var(--ldc-blue); }

/* ---------------- Lignes dynamiques (formulaire d'entrevue admin) ---------------- */
.ldc-dyn-row { background: rgba(14,74,120,.03); border-radius: 10px; padding: .5rem; }

/* ---------------- Thème sombre : entrevues + admin ---------------- */
:root[data-theme="dark"] .ldc-iv-card { background: #241A12; box-shadow: 0 10px 30px rgba(0,0,0,.35); }
:root[data-theme="dark"] .ldc-iv-date-badge { background: #140D08; }
:root[data-theme="dark"] .ldc-iv-date-badge span { color: #F3ECE3; }
:root[data-theme="dark"] .ldc-dyn-row { background: rgba(255,255,255,.04); }
:root[data-theme="dark"] .table { color: #F3ECE3; }

/* ---------------- i18n : sélecteur de langue + crédit constructeur (2026-09-02) ---------------- */
.ldc-footer-builder { display: flex; align-items: center; gap: .4rem; }
.ldc-footer-builder a { color: inherit; opacity: .9; display: inline-flex; align-items: center; gap: .4rem; }
.ldc-footer-builder a:hover { color: var(--ldc-yellow); opacity: 1; }
.ldc-footer-builder-logo {
  width: 20px; height: 20px; object-fit: contain;
}
.ldc-footer-logo { width: 40px; height: 40px; object-fit: cover; border-radius: 8px; }
#ldcLangToggle { text-transform: uppercase; font-size: .85rem; }

/* ---------------- Taxonomie des sections (étape 3 — 2026-09-02) ---------------- */
.ldc-section-dot {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  color: #fff; font-size: 1.1rem; flex: none;
}

/* ---------------- Étape 6 : profils people ---------------- */
.ldc-people-chip-link {
  color: inherit;
  font-weight: 600;
}
.ldc-people-chip-link:hover {
  color: var(--ldc-blue);
  text-decoration: underline;
}
/* Titre d'entrevue (interviews.php) cliquable vers sa propre page
   (interview.php) — pas de carte entièrement cliquable ici comme sur
   blog.php, car chaque carte contient déjà des liens/boutons interactifs
   (fiches invité/hôte, vidéo, bascule YouTube) qu'une ancre englobante
   rendrait imbriqués et au comportement de clic ambigu. */
.ldc-iv-title-link {
  color: inherit;
  text-decoration: none;
}
.ldc-iv-title-link:hover {
  color: var(--ldc-blue);
  text-decoration: underline;
}
.ldc-person-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.35);
  font-size: 3.6rem;
}

/* ---------------- Publications académiques public (Étape 13) — dérivé de .ldc-iv-card ---------------- */
.ldc-pub-card { border-top: 4px solid var(--ldc-green); }
.ldc-pub-icon {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: var(--ldc-green); color: #fff; font-size: 1.2rem;
}
.ldc-pub-meta { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; color: var(--ldc-gray); font-size: .9rem; }
.ldc-pub-meta span { display: inline-flex; align-items: center; gap: .4rem; }
.ldc-pub-detail-body { max-width: 760px; margin: 0 auto; }
.ldc-pub-detail-body h3 { font-family: var(--font-heading); margin-top: 1.75rem; font-size: 1.2rem; }
.ldc-pub-keyword-pill {
  display: inline-block; background: var(--ldc-bg-light); border-radius: 50px;
  padding: .25rem .75rem; font-size: .8rem; margin: .15rem;
}

/* Étape 14 : moyens de paiement manuels pour les dons (en attendant l'API PayPal). */
.ldc-pay-methods { border-top: 1px dashed var(--ldc-gray); margin-top: 2rem; padding-top: 1.5rem; }
.ldc-pay-method {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  background: var(--ldc-bg-light); border-radius: var(--radius);
  padding: .65rem 1rem; margin-bottom: .6rem; font-size: .95rem;
}
.ldc-pay-method .ldc-pay-name { font-weight: 600; color: var(--ldc-blue); }
.ldc-pay-method.ldc-pay-soon { opacity: .65; font-style: italic; }

