/* ===========================
   IMPORT DES POLICES
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Inter:wght@300;400;500&display=swap');

/* ===========================
   RESET
=========================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* ===========================
   VARIABLES
=========================== */
:root {
  --bleu-nuit:    #0f2444;
  --bleu-fonce:   #1a3a6b;
  --bleu-moyen:   #1d6fb8;
  --bleu-clair:   #93c5fd;
  --bleu-fond:    #EFF4FF;
  --jaune-vif:    #F5C800;
  --jaune-clair:  #FCD34D;
  --jaune-fonce:  #B8930A;
  --jaune-fond:   #FFFBEB;
  --fond:         #F8FAFF;
  --texte:        #1e293b;
  --texte-doux:   #64748b;
  --bordure:      #e2e8f0;
}


/* ===========================
   BODY
=========================== */
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--texte);
  background-color: var(--fond);
  padding-top: 60px;
  padding-bottom: 50px;
}


/* ===========================
   TYPOGRAPHIE
=========================== */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--bleu-fonce);
}

h1 { font-size: 3rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; }

p {
  font-size: 1rem;
  color: var(--texte-doux);
  max-width: 60ch;
}

a {
  color: inherit;
  text-decoration: none;
}


/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--bleu-nuit);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
  height: 60px;
  z-index: 100;
  gap: 3rem;
  border-bottom: 3px solid var(--jaune-vif);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--jaune-vif);
}

.nav-liens {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-liens a {
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.nav-liens a:hover {
  color: var(--jaune-vif);
}


/* ===========================
   BARRE BAS
=========================== */
.barre-bas {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bleu-nuit);
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0.8rem;
  z-index: 100;
  border-top: 2px solid var(--jaune-vif);
}

.barre-bas a {
  color: var(--bleu-clair);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.barre-bas a:hover {
  color: var(--jaune-vif);
}


/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: top;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  filter: brightness(0.55);
  z-index: 0; 
}  
.hero-contenu {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 2rem;
  margin-top: 20vh;
}

.hero-contenu .lieu {
  color: var(--jaune-vif);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-contenu h1 {
  color: white;
  font-size: 4rem;
  margin-bottom: 2rem;
}

.hero-citation {
  color: rgba(255, 255, 255, 0.88);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--jaune-vif);
}

.hero-citation::before { content: '\201C'; }
.hero-citation::after  { content: '\201D'; }


/* ===========================
   CARTES ACCUEIL
=========================== */
.cartes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--fond);
}

.carte {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--bordure);
  transition: background 0.2s;
  text-decoration: none;
}

.carte:last-child {
  border-right: none;
}

.carte:hover {
  background: var(--bleu-fond);
}

.carte img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.carte-texte {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 3px solid transparent;
  transition: border-color 0.2s;
}

.carte:hover .carte-texte {
  border-top-color: var(--jaune-vif);
}

.carte-texte h2 {
  font-size: 1.4rem;
  color: var(--bleu-fonce);
  margin-bottom: 0.6rem;
  min-height: 3.4rem;
}

.carte-texte p {
  font-size: 0.95rem;
  color: var(--texte-doux);
  max-width: 100%;
  flex: 1;
}

.carte-lien {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--bleu-moyen);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.carte:hover .carte-lien {
  color: var(--jaune-fonce);
}
/* ===========================
   FOOTER
=========================== */
footer {
  background: var(--bleu-nuit);
  border-top: 3px solid var(--jaune-vif);
  padding: 3rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 50px;
}

footer .logo-footer {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--jaune-vif);
}

footer .footer-liens {
  display: flex;
  gap: 2rem;
  list-style: none;
}

footer .footer-liens a {
  color: var(--bleu-clair);
  font-size: 0.85rem;
  transition: color 0.2s;
}

footer .footer-liens a:hover {
  color: var(--jaune-vif);
}

.footer-reseaux {
  display: flex;
  gap: 1.8rem;
  align-items: center;
  justify-content: center;
}

.footer-reseaux a {
  transition: opacity 0.2s;
}

.footer-reseaux a:hover {
  opacity: 0.6;
}

footer .copyright {
  color: var(--texte-doux);
  font-size: 0.8rem;
}
/* ===========================
   PAGE HERO (pages intérieures)
=========================== */
.page-hero {
  background: var(--bleu-nuit);
  border-bottom: 3px solid var(--jaune-vif);
  padding: 5rem 2rem 3rem;
  text-align: center;
}

.page-hero-contenu {
  max-width: 600px;
  margin: 0 auto;
}

.page-hero-contenu h1 {
  color: white;
  margin-bottom: 1rem;
}

.page-hero-contenu p {
  color: #cbd5e1;
  margin: 0 auto;
}


/* ===========================
   COMPTEUR
=========================== */
.compteur-section {
  background: var(--bleu-fond);
  padding: 3rem 2rem;
}

.compteur-grille {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: 0 auto;
  gap: 1px;
  background: var(--bordure);
}

.compteur-item {
  background: white;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
    min-height:200px; 
    max-height: 200px;
  justify-content: center;
}

.compteur-accent {
  background: var(--bleu-nuit);
  min-width: 200px; /* ajuste selon besoin */
}

.compteur-accent .compteur-chiffre,
.compteur-accent .compteur-label {
  color: var(--jaune-vif);
}

.compteur-chiffre {
  font-family: 'Caveat', cursive;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--bleu-fonce);
  font-variant-numeric: tabular-nums;
  white-space: nowrap; /* ← empêche le retour à la ligne */
}

.compteur-label {
  font-size: 0.85rem;
  color: var(--texte-doux);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}


/* ===========================
   EDITION EN COURS
=========================== */
.edition-cours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 2rem;
  gap: 4rem;
  align-items: center;
}

.edition-badge {
  display: inline-block;
  background: var(--jaune-vif);
  color: var(--bleu-nuit);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.3rem 1rem;
  border-radius: 2px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.edition-cours-contenu h2 {
  margin-bottom: 1rem;
}

.edition-cours-contenu p {
  margin-bottom: 2rem;
}

.btn-commander {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: #25D366;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 4px;
  transition: background 0.2s;
}

.btn-commander:hover {
  background: #1ebe5d;
}

.edition-cours-image img {
  width: 100%;
  border-radius: 4px;
  display: block;
}


/* ===========================
   LIEN ANCIENNES EDITIONS
=========================== */
.anciennes-link {
  text-align: center;
  padding: 3rem 2rem 5rem;
  background: var(--jaune-fond);
  border-top: 1px solid var(--bordure);
}

.anciennes-link p {
  margin: 0 auto 1.2rem;
  color: var(--texte-doux);
}

.btn-editions {
  display: inline-block;
  padding: 0.8rem 2rem;
  border: 2px solid var(--bleu-fonce);
  color: var(--bleu-fonce);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.2s;
}

.btn-editions:hover {
  background: var(--bleu-fonce);
  color: white;
}
/* ===========================
   EDITIONS
=========================== */
.editions-liste {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.edition-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.edition-droite {
  direction: rtl;
}

.edition-droite .edition-texte,
.edition-droite .edition-image {
  direction: ltr;
}

.edition-image img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

.edition-image {
  background: var(--bleu-fond);
  border-radius: 4px;
  aspect-ratio: 3/4;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--texte-doux);
  font-size: 0.9rem;
}

.edition-annee {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--bleu-moyen);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.edition-texte h2 {
  margin-bottom: 0.8rem;
}

.edition-texte p {
  margin-bottom: 1.5rem;
  max-width: 100%;
}

.edition-montant {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.2rem;
  background: var(--jaune-fond);
  border-left: 3px solid var(--jaune-vif);
  border-radius: 0 4px 4px 0;
}

.montant-label {
  font-size: 0.75rem;
  color: var(--texte-doux);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.montant-valeur {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--bleu-fonce);
  font-weight: 600;
}

.edition-separateur {
  height: 1px;
  background: var(--bordure);
  margin: 4rem 0;
}

.editions-retour {
  text-align: center;
  padding: 0 2rem 5rem;
}
/* ===========================
   ANIMATIONS
=========================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-contenu .lieu {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.1s;
}

.hero-contenu h1 {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.3s;
}

.hero-citation {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.55s;
}
.cartes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--fond);
  border-top: 3px solid var(--jaune-vif);
}
/* ===========================
   RESPONSIVE MOBILE
=========================== */
@media (max-width: 768px) {

  /* BODY */
  body {
    padding-bottom: 60px;
  }

  /* NAVBAR */
  .navbar {
    flex-direction: column;
    height: auto;
    padding: 0.8rem 1rem;
    gap: 0.8rem;
  }

  .nav-liens {
    gap: 1rem;
  }

  .nav-liens a {
    font-size: 0.85rem;
  }

  body {
    padding-top: 90px;
  }

  /* HERO */
  .hero-contenu h1 {
    font-size: 2.5rem;
  }

  .hero-citation {
    font-size: 1rem;
  }

  .hero-bg {
    background-attachment: scroll;
  }

  /* CARTES ACCUEIL */
  .cartes {
    grid-template-columns: 1fr;
  }

  .carte {
    border-right: none;
    border-bottom: 1px solid var(--bordure);
  }

  .carte:last-child {
    border-bottom: none;
  }

  /* COMPTEUR */
  .compteur-grille {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  /* EDITION EN COURS */
  .edition-cours {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem auto;
  }

  .edition-cours-image {
    order: -1;
  }

  /* EDITIONS LISTE */
  .edition-item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .edition-droite {
    direction: ltr;
  }

  /* FOOTER */
  footer {
    padding: 2rem 1rem;
  }

  footer .footer-liens {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  /* BARRE BAS */
  .barre-bas {
    gap: 1rem;
    padding: 0.6rem 0.5rem;
    font-size: 0.8rem;
  }

  /* TYPOGRAPHIE */
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.6rem; }

  /* PAGE HERO */
  .page-hero {
    padding: 3rem 1.5rem 2rem;
  }

}

/* TABLETTE */
@media (max-width: 1024px) and (min-width: 769px) {

  .cartes {
    grid-template-columns: 1fr 1fr;
  }

  .carte:nth-child(3) {
    grid-column: span 2;
  }

  .edition-cours {
    gap: 2rem;
  }

  .compteur-grille {
    max-width: 100%;
  }

}
/* ===========================
   A VENIR
=========================== */
.a-venir {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
  margin: 5rem auto;
  padding: 0 2rem;
  gap: 4rem;
  align-items: center;
}

.a-venir-badge {
  display: inline-block;
  background: var(--bleu-fond);
  color: var(--bleu-moyen);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.3rem 1rem;
  border-radius: 2px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.a-venir-contenu h2 {
  margin-bottom: 0.8rem;
}

.a-venir-contenu p {
  margin-bottom: 2rem;
  max-width: 100%;
}

.btn-info {
  display: inline-block;
  padding: 0.8rem 2rem;
  border: 1.5px solid var(--bleu-fonce);
  color: var(--bleu-fonce);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.2s;
}

.btn-info:hover {
  background: var(--bleu-fonce);
  color: white;
}

.a-venir-image img {
  margin-top: 50px;
  width: 100%;
  border-radius: 4px;
  display: block;
  object-fit: cover;
  max-height: 400px;
}

@media (max-width: 768px) {
  .a-venir {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem auto;
  }

  .a-venir-image {
    order: -1;
  }
}
/* ===========================
   BOUTON INTERESSE
=========================== */
.btn-interesse {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--jaune-vif);
  color: var(--bleu-nuit);
  border: none;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.03em;
}

.btn-interesse:hover {
  background: var(--jaune-clair);
}

/* ===========================
   FORMULAIRE MODAL
=========================== */
.formulaire-overlay {
  display: none !important;
  position: fixed;
  inset: 0;
  background: rgba(15, 36, 68, 0.85);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.formulaire-overlay.actif {
  display: flex !important;
}

.formulaire-modal {
  background: white;
  border-radius: 8px;
  border-top: 4px solid var(--jaune-vif);
  padding: 2.5rem;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  position: relative;
}

.formulaire-modal h3 {
  font-size: 1.5rem;
  color: var(--bleu-fonce);
  margin-bottom: 0.2rem;
}

.formulaire-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--bleu-fond);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  color: var(--bleu-fonce);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.formulaire-close:hover {
  background: var(--bordure);
}

.form-groupe {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-groupe label {
  font-size: 1rem;
  color: var(--texte);
  font-weight: 500;
}

.form-groupe input[type="text"],
.form-groupe input[type="number"],
.form-groupe textarea {
  padding: 0.9rem 1rem;
  border: 1.5px solid var(--bordure);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--texte);
  background: white;
  transition: border-color 0.2s;
}

.form-groupe input:focus,
.form-groupe textarea:focus {
  outline: none;
  border-color: var(--bleu-moyen);
}

.form-groupe textarea {
  resize: vertical;
}

.form-radio-groupe {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 0.3rem;
}

.form-radio,
.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
  color: var(--texte);
  cursor: pointer;
}

.form-radio input,
.form-checkbox input {
  accent-color: var(--bleu-fonce);
  width: 20px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
}

.btn-wa-form {
  padding: 1rem 1.5rem;
  background: var(--bleu-fonce);
  color: white;
  border: none;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}

.btn-wa-form:hover {
  background: var(--bleu-moyen);
}

@media (max-width: 768px) {
  .formulaire-modal {
    padding: 1.5rem;
    max-height: 95vh;
  }
}
html, body {
    margin: 0;
    padding: 0;
}

/* PAGE 404 */
.page-404 {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f5ef;
}

.container-404 {
    text-align: center;
    max-width: 900px;
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

/* TITRE */
.container-404 h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    margin: 0;
}

/* SOUS-TITRE */
.container-404 .subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin: 0;
}

/* CANVAS */
.container-404 canvas {
    width: auto;
    height: auto;
    max-width: 90vw;
    max-height: 40vh;
    border: 10px solid #1e293b;
    border-radius: 20px;
    background: white;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* TEXTE INFO */
.container-404 .info {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin: 0;
}

/* BOUTON */
.container-404 .back-btn {
    padding: 16px 48px;
    font-size: 1.3rem;
    background: #c58b1b;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.25s ease;
    font-weight: 600;
}

.container-404 .back-btn:hover {
    background: #a87416;
    transform: translateY(-3px);
}
/* ============================
   VERSION MOBILE 404
   ============================ */
@media (max-width: 600px) {

    .page-404 {
        padding: 10px;
        height: 100vh;
        overflow: hidden;
    }

    .container-404 {
        gap: 10px;
        justify-content: flex-start;
        padding-top: 20px;
    }

    .container-404 h1 {
        font-size: 3.5rem;
    }

    .container-404 .subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    /* Canvas adapté au mobile */
    .container-404 canvas {
        max-width: 95vw;
        max-height: 30vh; /* réduit encore plus pour éviter tout scroll */
        border-width: 6px;
        border-radius: 14px;
    }

    .container-404 .info {
        font-size: 1rem;
        padding: 0 10px;
    }

    .container-404 .back-btn {
        padding: 14px 32px;
        font-size: 1.1rem;
        border-radius: 8px;
    }
}
.edition-prix {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--bleu-fonce);
  margin-bottom: 0.8rem;
}
/* SECTION PRESSE */
.presse-section {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

/* Grille */
.presse-grille {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Carte */
.article-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.8rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* Source + date */
.article-source {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .8rem;
}

.source-badge {
  background: var(--jaune-vif);
  color: #1a1a1a;
  padding: 0.35rem 0.8rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
}

.article-date {
  color: #666;
  font-size: 0.9rem;
}

/* Titre */
.article-card h3 {
  margin: 0.6rem 0 0.4rem;
  font-size: 1.3rem;
  color: var(--bleu-nuit); 
  font-weight: 700;
}

/* Résumé */
.article-card p {
  color: #444;
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* Lien */
.article-lien {
  display: inline-block;
  margin-top: .5rem;
  color: #0d1b2a;
  font-weight: 600;
  text-decoration: none;
}

.article-lien:hover {
  text-decoration: underline;
}
/* FORCE LA DESCENTE SUR MOBILE - À METTRE TOUT EN BAS */
@media (max-width: 768px) {
  
  /* On cible la section bleue (page-hero ou autre) */
  .page-hero, section[class*="hero"], .edition-cours {
    padding-top: 140px !important; /* On force une grosse marge en haut */
    min-height: auto !important;
  }

  /* On s'assure que le titre ne remonte pas à cause d'une position absolue */
  .page-hero h1, .edition-cours h1, h1 {
    position: relative !important;
    top: 0 !important;
    margin-top: 0 !important;
  }
}