@charset "UTF-8";
/* VARIABLES CHARTE */
/* Fond blanc */
/* Texte sombre */
/* Gris-bleu moyen */
/* Gris-bleu sombre */
/* Bleu nuit (pour éléments sombres) */
/* Mixin pour texte dégradé */
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  background-color: #FFFFFF;
  color: #1F3D49;
  font-family: "Noto Serif", serif;
  line-height: 1.6;
  overflow-x: clip;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-weight: 400;
  letter-spacing: -1px;
}
h1 span,
h2 span,
h3 span,
h4 span {
  background: linear-gradient(to right, rgb(87, 109, 122), rgb(31, 61, 73), rgb(0, 13, 22));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* BOUTONS GLOBAUX */
.btn-primary,
.btn-solid {
  display: inline-block;
  padding: 1rem 2rem;
  background: #000D16;
  color: #FFFFFF;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border: 1px solid #000D16;
}
.btn-primary:hover,
.btn-solid:hover {
  background: transparent;
  color: #000D16;
}

.btn-outline {
  display: inline-block;
  padding: 1rem 2rem;
  background: transparent;
  color: #000D16;
  border: 1px solid #000D16;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.btn-outline:hover {
  background: #000D16;
  color: #FFFFFF;
}

/* NAVIGATION */
.main-nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(87, 109, 122, 0.2);
}
.main-nav .nav-logo {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 2px;
  background: linear-gradient(to right, rgb(87, 109, 122), rgb(31, 61, 73), rgb(0, 13, 22));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.main-nav .nav-logo img {
  height: 40px;
}
.main-nav .nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.main-nav .nav-links a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1F3D49;
  opacity: 0.8;
}
.main-nav .nav-links a:hover {
  opacity: 1;
}
.main-nav .nav-links .btn-cta-nav {
  background: #000D16;
  border: 1px solid #000D16;
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  opacity: 1;
}
.main-nav .nav-links .btn-cta-nav:hover {
  background: transparent;
  color: #000D16;
}
.main-nav .burger-menu {
  display: none;
}

/* SECTION ENTREE - VERSION LEGERE */
.entree-section-light {
  padding-top: 120px;
  padding-bottom: 5rem;
  background: rgba(87, 109, 122, 0.03);
  border-bottom: 1px solid rgba(87, 109, 122, 0.15);
}
.entree-section-light .intro-logo {
  max-width: 780px;
  margin: 0 auto 3.5rem;
  margin-top: 100px;
  margin-bottom: 2.5rem;
}
.entree-section-light .intro-logo img {
  height: 100px;
  width: auto;
  opacity: 1;
}
.entree-section-light .intro-statement {
  max-width: 780px;
  margin: 0 auto 3.5rem;
  text-align: left;
  border-left: 2px solid rgb(31, 61, 73);
  padding-left: 2rem;
}
.entree-section-light .intro-statement__text {
  font-size: 1.2rem;
  line-height: 1.85;
  color: #1F3D49;
  margin-bottom: 1rem;
}
.entree-section-light .intro-statement__text strong {
  background: linear-gradient(to right, rgb(87, 109, 122), rgb(31, 61, 73), rgb(0, 13, 22));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.entree-section-light .intro-statement__text:last-child {
  margin-bottom: 0;
}
.entree-section-light .entree-tabs {
  display: flex;
  gap: 2rem;
  max-width: 780px;
  margin: 0 auto;
  justify-content: flex-start;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
}
.entree-section-light .entree-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  padding: 2rem 1.5rem 1.8rem;
  border: 1px solid rgba(87, 109, 122, 0.18);
  background: #FFFFFF;
  color: #1F3D49;
  transition: all 0.4s ease;
  text-decoration: none;
  position: relative;
}
.entree-section-light .entree-tab:hover {
  border-color: rgba(87, 109, 122, 0.45);
  background: #FFFFFF;
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 13, 22, 0.07);
}
.entree-section-light .entree-tab:hover .entree-tab__icon {
  transform: scale(1.08);
  color: #1F3D49;
}
.entree-section-light .entree-tab:hover .entree-tab__arrow {
  opacity: 1;
  transform: translateX(4px);
}
.entree-section-light .entree-tab__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: #576D7A;
  transition: all 0.4s ease;
  margin-bottom: 0.3rem;
}
.entree-section-light .entree-tab__icon svg {
  width: 100%;
  height: 100%;
}
.entree-section-light .entree-tab__label {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #1F3D49;
}
.entree-section-light .entree-tab__desc {
  display: block;
  font-size: 0.85rem;
  color: #576D7A;
  line-height: 1.4;
}
.entree-section-light .entree-tab__arrow {
  font-size: 1.2rem;
  opacity: 0.35;
  transition: all 0.4s ease;
  color: #576D7A;
  margin-top: 0.4rem;
}

/* Responsive entree-section-light */
@media (max-width: 700px) {
  .entree-section-light {
    padding-top: 100px;
    padding-bottom: 3rem;
  }
  .entree-section-light .intro-logo img {
    height: 60px;
  }
  .entree-section-light .intro-statement {
    border-left: 1px solid rgb(31, 61, 73);
    padding-left: 1.2rem;
  }
  .entree-section-light .intro-statement__text {
    font-size: 1.05rem;
  }
  .entree-section-light .entree-tabs {
    flex-direction: column;
    gap: 1rem;
    padding-left: 1.2rem;
  }
  .entree-section-light .entree-tab {
    flex-direction: row;
    text-align: left;
    padding: 1.2rem 1.5rem;
    gap: 1rem;
  }
  .entree-section-light .entree-tab__icon {
    width: 36px;
    height: 36px;
    margin-bottom: 0;
  }
  .entree-section-light .entree-tab__arrow {
    margin-top: 0;
    margin-left: auto;
  }
}
/* 1. HERO HEADER */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #FFFFFF;
}
.hero-section .names-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2%;
  opacity: 0.15;
  pointer-events: none;
}
.hero-section .names-background .name-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.2rem;
  color: #576D7A;
  text-transform: uppercase;
  font-weight: 700;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}
.hero-section .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0) 0%, rgba(87, 109, 122, 0.08) 90%);
  z-index: 1;
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 800px;
  padding: 0 1rem;
}
.hero-section .hero-content .main-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 1;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, rgb(87, 109, 122), rgb(31, 61, 73), rgb(0, 13, 22));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  will-change: transform, opacity;
}
.hero-section .hero-content .main-title .line {
  display: block;
  background: inherit;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-section .hero-content .hero-subtitle {
  font-size: 1.2rem;
  color: #576D7A;
  font-weight: 400;
}

/* TITRES DE SECTION COMMUNS */
.section-title {
  font-size: 2.5rem;
  text-align: left;
  margin-bottom: 3rem;
  position: relative;
  font-weight: 400;
  display: block;
}
.section-title .title-gradient-line {
  display: block;
  height: 10px;
  background: linear-gradient(to right, rgb(87, 109, 122), rgb(31, 61, 73), rgb(0, 13, 22));
  margin-top: 1rem;
  transition: width 0.3s ease;
}
.section-title--center {
  text-align: center;
}
.section-title--center .title-gradient-line {
  margin-left: auto;
  margin-right: auto;
}

/* 2. LE PROJET */
.project-section {
  padding: 7rem 0;
  background: #FFFFFF;
}
.project-section > .container {
  max-width: 900px;
}
.project-section .text-content-split {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.project-section .text-content-split .project-text {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.9;
  text-align: left;
  /* Plus facile à lire pour du récit */
}
.project-section .text-content-split .project-text.highlight {
  font-size: 1.5rem;
  font-weight: 400;
  /* Noto Serif Regular mais plus gros */
  color: #1F3D49;
  border-left: 2px solid rgb(0, 13, 22);
  padding-left: 2rem;
}

/* 3. FOCUS TEMOIGNAGE */
.focus-testimony-section {
  padding: 6rem 0;
  background: rgba(87, 109, 122, 0.05);
}
.focus-testimony-section .focus-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 0 2rem;
}
.focus-testimony-section .focus-container .focus-visual .img-frame {
  border: 1px solid #576D7A;
  padding: 1rem;
  position: relative;
  max-width: 600px;
}
.focus-testimony-section .focus-container .focus-visual .img-frame img {
  max-width: 100%;
  height: auto;
}
.focus-testimony-section .focus-container .focus-visual .img-frame .archive-placeholder {
  background: #e3e3e3;
  height: 400px;
  width: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%239C92AC' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}
.focus-testimony-section .focus-container .focus-visual .img-frame .caption {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #576D7A;
  text-align: center;
  font-style: italic;
}
.focus-testimony-section .focus-container .focus-content .tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  border: 1px solid #576D7A;
  padding: 0.2rem 0.5rem;
  color: #576D7A;
}
.focus-testimony-section .focus-container .focus-content h3 {
  font-size: 2.5rem;
  margin: 1rem 0;
}
.focus-testimony-section .focus-container .focus-content .highlight-quote {
  font-size: 1.4rem;
  font-style: italic;
  border-left: 2px solid rgb(0, 13, 22);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  line-height: 1.4;
}
.focus-testimony-section .focus-container .focus-content .excerpt {
  margin-bottom: 2rem;
  opacity: 0.8;
}

/* 4. CTA SECTION */
.cta-section {
  padding: 5rem 0;
  background-color: #1F3D49;
  text-align: center;
  color: #FFFFFF;
}
.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  background: none;
  -webkit-text-fill-color: #FFFFFF;
}
.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.cta-section .btn-solid {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: #000D16;
}
.cta-section .btn-solid:hover {
  background: transparent;
  color: #FFFFFF;
}

/* 5. MOSAIQUE */
.mosaic-section {
  padding: 6rem 0;
}
.mosaic-section .cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.mosaic-section .cards-grid .testimony-card {
  background: rgba(87, 109, 122, 0.1);
  border: 1px solid rgba(87, 109, 122, 0.3);
  transition: 0.4s ease;
  cursor: pointer;
  position: relative;
}
.mosaic-section .cards-grid .testimony-card .card-portrait {
  width: 100%;
  height: 150px;
  overflow: hidden;
  border-bottom: 1px solid #576D7A;
}
.mosaic-section .cards-grid .testimony-card .card-portrait img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.mosaic-section .cards-grid .testimony-card .card-portrait .portrait-anonymous {
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(87, 109, 122, 0.2);
  align-items: center;
  justify-content: center;
}
.mosaic-section .cards-grid .testimony-card .card-portrait .portrait-anonymous svg {
  width: 50px;
  height: 50px;
  color: #576D7A;
}
.mosaic-section .cards-grid .testimony-card .card-content {
  padding: 1.5rem 2rem 2rem;
  position: relative;
}
.mosaic-section .cards-grid .testimony-card .card-content .card-meta {
  font-size: 0.8rem;
  color: #576D7A;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.mosaic-section .cards-grid .testimony-card .card-content .card-name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.mosaic-section .cards-grid .testimony-card .card-content .card-quote {
  font-style: italic;
  opacity: 0.8;
  margin-bottom: 2rem;
}
.mosaic-section .cards-grid .testimony-card .card-content .read-more {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
}
.mosaic-section .cards-grid .testimony-card:hover {
  background: rgba(87, 109, 122, 0.15);
  transform: translateY(-5px);
  border-color: #1F3D49;
}
.mosaic-section .section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* 6. NEWS SECTION */
.news-section {
  padding: 6rem 0;
  background: rgba(87, 109, 122, 0.05);
}
.news-section .news-home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.news-section .section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* NEWS CARDS (shared) */
.news-card {
  background: rgba(87, 109, 122, 0.1);
  border: 1px solid rgba(87, 109, 122, 0.3);
  transition: 0.4s ease;
  overflow: hidden;
}
.news-card:hover {
  background: rgba(87, 109, 122, 0.15);
  border-color: rgba(87, 109, 122, 0.5);
}
.news-card__image {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: rgba(87, 109, 122, 0.2);
}
.news-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-card__image.no-image img {
  display: none;
}
.news-card__type {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 0.6rem;
  background: #000D16;
  color: #FFFFFF;
}
.news-card__content {
  padding: 1.5rem;
}
.news-card__date {
  font-size: 0.8rem;
  color: #576D7A;
  margin-bottom: 0.75rem;
}
.news-card__title {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.news-card__text {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.6;
}
.news-card__event-info {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(87, 109, 122, 0.2);
}
.news-card__event-info .event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #576D7A;
  padding: 0.5rem 0.75rem;
  flex-shrink: 0;
}
.news-card__event-info .event-date .day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.news-card__event-info .event-date .month {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.news-card__event-info .event-date .year {
  font-size: 0.6rem;
  color: #576D7A;
}
.news-card__event-info .event-location {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #576D7A;
}
.news-card__event-info .event-location svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.news-card--evenement .news-card__type {
  background: #1F3D49;
}
.news-card--info .news-card__type {
  background: rgba(87, 109, 122, 0.8);
}

/* NEWS LIST PAGE */
.news-list-section {
  padding: 4rem 0 6rem;
}
.news-list-section .filters {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.news-list-section .filters .filter-label {
  font-size: 0.85rem;
  color: #576D7A;
  text-transform: uppercase;
}
.news-list-section .filters .filter-btn {
  background: transparent;
  border: 1px solid rgba(87, 109, 122, 0.3);
  color: #1F3D49;
  padding: 0.6rem 1.2rem;
  font-family: "Noto Serif", serif;
  font-size: 0.85rem;
  cursor: pointer;
  transition: 0.3s;
}
.news-list-section .filters .filter-btn:hover {
  border-color: #576D7A;
}
.news-list-section .filters .filter-btn.active {
  background: #000D16;
  color: #FFFFFF;
  border-color: #000D16;
}
.news-list-section .news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

/* 7. MONUMENT SECTION */
.monument-section {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
}
.monument-section .monument-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #222;
  /* Placeholder image */
  background-image: linear-gradient(to bottom, transparent, #000D16), url("https://upload.wikimedia.org/wikipedia/commons/e/e6/Luxembourg_Garden.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.6;
}
.monument-section .monument-overlay {
  position: relative;
  z-index: 2;
}
.monument-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: none;
  -webkit-text-fill-color: #FFFFFF;
}
.monument-section p {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
}
.monument-section .monument-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* FOOTER */
.main-footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(87, 109, 122, 0.2);
  text-align: center;
  opacity: 0.7;
}
.main-footer .partners-logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.main-footer .partners-logos img {
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
.main-footer .partners-logos span {
  border: 1px solid #576D7A;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
}
.main-footer .copyright {
  font-size: 0.7rem;
}
.main-footer .copyright a {
  color: #576D7A;
  text-decoration: underline;
}
.main-footer .copyright a:hover {
  color: #1F3D49;
}

/* PAGE HEADER (pages internes) */
.page-header {
  padding: 10rem 0 4rem;
  background: rgba(87, 109, 122, 0.05);
  text-align: center;
  border-bottom: 1px solid rgba(87, 109, 122, 0.2);
}
.page-header .page-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.page-header .page-subtitle {
  font-size: 1.1rem;
  color: #576D7A;
  max-width: 600px;
  margin: 0 auto;
}
.page-header--light {
  padding: 6rem 0 2.5rem;
  background: rgba(87, 109, 122, 0.02);
  border-bottom: none;
}
.page-header--light .page-title {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}
.page-header--light .page-subtitle {
  font-size: 1rem;
  margin-bottom: 0;
}

/* LAYOUT ASSOCIATION : sidebar sticky + contenu */
.blocs-menu-layout {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 0;
}
@media (max-width: 900px) {
  .blocs-menu-layout {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
}

/* SOMMAIRE STICKY (sidebar) */
.blocs-menu-layout .blocs-menu-nav {
  position: sticky;
  top: 110px;
  flex-shrink: 0;
  width: 220px;
  background: rgba(87, 109, 122, 0.05);
  border: 1px solid rgba(87, 109, 122, 0.2);
  padding: 1.5rem;
  height: -moz-fit-content;
  height: fit-content;
  align-self: flex-start;
}
@media (max-width: 900px) {
  .blocs-menu-layout .blocs-menu-nav {
    display: none;
  }
}
.blocs-menu-layout .blocs-menu-nav__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1F3D49;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(87, 109, 122, 0.2);
}
.blocs-menu-layout .blocs-menu-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.blocs-menu-layout .blocs-menu-nav__link {
  display: block;
  padding: 0.6rem 0;
  color: #576D7A;
  font-size: 0.9rem;
  line-height: 1.4;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}
.blocs-menu-layout .blocs-menu-nav__link:hover {
  color: #1F3D49;
  transform: translateX(0.5rem);
}
.blocs-menu-layout .blocs-menu-nav__link.active {
  color: #1F3D49;
  text-shadow: 0.3px 0 0 currentColor, -0.3px 0 0 currentColor;
  border-bottom-color: #1F3D49;
  transform: translateX(0.5rem);
}

/* CONTENU PRINCIPAL ASSOCIATION */
.blocs-menu-content {
  flex: 1;
  min-width: 0;
}
@media (max-width: 900px) {
  .blocs-menu-content {
    width: 100%;
  }
}
.blocs-menu-content section > .container {
  max-width: 100%;
  padding: 0;
}

/* CTA LÉGER (remplace les petition-section sombres) */
.cta-light-section {
  padding: 3rem 0;
  scroll-margin-top: 100px;
}

.cta-light {
  border-left: 3px solid rgb(31, 61, 73);
  padding: 2rem 2.5rem;
  background: rgba(87, 109, 122, 0.03);
}
.cta-light__title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: -1px;
}
.cta-light__title span {
  background: linear-gradient(to right, rgb(87, 109, 122), rgb(31, 61, 73), rgb(0, 13, 22));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
.cta-light__description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #1F3D49;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}
.cta-light__stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 1.5rem;
}
.cta-light__stat {
  display: flex;
  flex-direction: column;
}
.cta-light__number {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(to right, rgb(87, 109, 122), rgb(31, 61, 73), rgb(0, 13, 22));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.cta-light__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #576D7A;
  margin-top: 0.3rem;
}

/* TESTIMONIES LIST PAGE */
.testimonies-list-section {
  padding: 4rem 0 6rem;
}
.testimonies-list-section .filters {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.testimonies-list-section .filters .filter-label {
  font-size: 0.85rem;
  color: #576D7A;
  text-transform: uppercase;
}
.testimonies-list-section .filters .filter-select {
  background: rgba(87, 109, 122, 0.1);
  border: 1px solid rgba(87, 109, 122, 0.3);
  color: #1F3D49;
  padding: 0.75rem 1rem;
  font-family: "Noto Serif", serif;
  font-size: 0.9rem;
  cursor: pointer;
}
.testimonies-list-section .filters .filter-select:focus {
  outline: none;
  border-color: #1F3D49;
}
.testimonies-list-section .filters .filter-select option {
  background: #FFFFFF;
}
.testimonies-list-section .cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
.testimonies-list-section .cards-grid .testimony-card {
  background: rgba(87, 109, 122, 0.1);
  border: 1px solid rgba(87, 109, 122, 0.3);
  transition: 0.4s ease;
  cursor: pointer;
  max-width: 100%;
}
.testimonies-list-section .cards-grid .testimony-card .card-portrait {
  width: 100%;
  height: 150px;
  overflow: hidden;
  border-bottom: 1px solid #576D7A;
}
.testimonies-list-section .cards-grid .testimony-card .card-portrait img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.testimonies-list-section .cards-grid .testimony-card .card-portrait .portrait-anonymous {
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(87, 109, 122, 0.2);
  align-items: center;
  justify-content: center;
}
.testimonies-list-section .cards-grid .testimony-card .card-portrait .portrait-anonymous svg {
  width: 50px;
  height: 50px;
  color: #576D7A;
}
.testimonies-list-section .cards-grid .testimony-card .card-content {
  padding: 1.5rem 2rem 2rem;
}
.testimonies-list-section .cards-grid .testimony-card .card-content .card-meta {
  font-size: 0.8rem;
  color: #576D7A;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.testimonies-list-section .cards-grid .testimony-card .card-content .card-name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.testimonies-list-section .cards-grid .testimony-card .card-content .card-quote {
  font-style: italic;
  opacity: 0.8;
  margin-bottom: 1rem;
}
.testimonies-list-section .cards-grid .testimony-card .card-content .read-more {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
}
.testimonies-list-section .cards-grid .testimony-card:hover {
  background: rgba(87, 109, 122, 0.2);
  transform: translateY(-5px);
  border-color: #1F3D49;
}

/* PAGINATION */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.pagination .pagination-btn {
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(87, 109, 122, 0.5);
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 700;
  transition: 0.3s;
}
.pagination .pagination-btn:hover:not(.disabled) {
  border-color: #1F3D49;
  background: rgba(87, 109, 122, 0.1);
}
.pagination .pagination-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.pagination .pagination-numbers {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pagination .pagination-numbers .pagination-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-size: 0.9rem;
  transition: 0.3s;
}
.pagination .pagination-numbers .pagination-number:hover {
  border-color: rgba(87, 109, 122, 0.5);
}
.pagination .pagination-numbers .pagination-number.active {
  border-color: #1F3D49;
  background: rgba(87, 109, 122, 0.2);
}
.pagination .pagination-numbers .pagination-ellipsis {
  color: #576D7A;
  padding: 0 0.5rem;
}

/* NAV ACTIVE STATE */
.main-nav .nav-links a.active {
  opacity: 1;
  border-bottom: 1px solid #1F3D49;
  padding-bottom: 0.2rem;
}

/* TESTIMONY DETAIL PAGE */
.testimony-detail .testimony-header {
  padding: 8rem 0 2rem;
  background: rgba(87, 109, 122, 0.05);
  border-bottom: 1px solid rgba(87, 109, 122, 0.2);
}
.testimony-detail .testimony-header .back-link {
  display: inline-block;
  font-size: 0.85rem;
  color: #576D7A;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.testimony-detail .testimony-header .back-link:hover {
  color: #1F3D49;
}
.testimony-detail .testimony-header .testimony-meta {
  display: flex;
  gap: 1rem;
}
.testimony-detail .testimony-header .testimony-meta span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 0.8rem;
  border: 1px solid #576D7A;
  color: #576D7A;
}
.testimony-detail .testimony-body {
  padding: 4rem 0;
}
.testimony-detail .testimony-body .container {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}
.testimony-detail .testimony-nav {
  position: sticky;
  top: 110px;
  flex-shrink: 0;
  width: 220px;
  background: rgba(87, 109, 122, 0.05);
  border: 1px solid rgba(87, 109, 122, 0.2);
  padding: 1.5rem;
  height: -moz-fit-content;
  height: fit-content;
  align-self: flex-start;
}
@media (max-width: 900px) {
  .testimony-detail .testimony-nav {
    display: none;
  }
}
.testimony-detail .testimony-nav__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1F3D49;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(87, 109, 122, 0.2);
}
.testimony-detail .testimony-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.testimony-detail .testimony-nav__loader {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.testimony-detail .testimony-nav__loader .spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(87, 109, 122, 0.2);
  border-top-color: #576D7A;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.testimony-detail .testimony-nav__loader.hidden {
  display: none;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.testimony-detail .testimony-nav__link {
  display: block;
  padding: 0.75rem 0;
  color: #576D7A;
  font-size: 0.9rem;
  line-height: 1.4;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}
.testimony-detail .testimony-nav__link:hover {
  color: #1F3D49;
  transform: translateX(0.5rem);
}
.testimony-detail .testimony-nav__link.active {
  color: #1F3D49;
  text-shadow: 0.3px 0 0 currentColor, -0.3px 0 0 currentColor, 0 0.3px 0 currentColor, 0 -0.3px 0 currentColor;
  border-bottom-color: #1F3D49;
  transform: translateX(0.5rem);
}
.testimony-detail .testimony-nav__link.active::before {
  content: "";
  position: absolute;
  left: -2.1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 20px;
  background: #1F3D49;
}
.testimony-detail .testimony-content-wrapper {
  flex: 1;
  min-width: 0;
}
.testimony-detail .testimony-footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(87, 109, 122, 0.2);
}
.testimony-detail .testimony-footer .share-section {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
}
.testimony-detail .testimony-footer .share-section .share-label {
  font-size: 0.85rem;
  color: #576D7A;
  text-transform: uppercase;
}
.testimony-detail .testimony-footer .share-section .share-buttons {
  display: flex;
  gap: 0.75rem;
}
.testimony-detail .testimony-footer .share-section .share-buttons .share-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(87, 109, 122, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.testimony-detail .testimony-footer .share-section .share-buttons .share-btn svg {
  width: 18px;
  height: 18px;
  color: #576D7A;
  transition: 0.3s;
}
.testimony-detail .testimony-footer .share-section .share-buttons .share-btn:hover {
  border-color: #1F3D49;
  background: rgba(87, 109, 122, 0.1);
}
.testimony-detail .testimony-footer .share-section .share-buttons .share-btn:hover svg {
  color: #1F3D49;
}

/* TESTIMONY PAGINATION (prev/next) */
.testimony-pagination {
  border-top: 1px solid rgba(87, 109, 122, 0.2);
  border-bottom: 1px solid rgba(87, 109, 122, 0.2);
  background: rgba(87, 109, 122, 0.03);
}
.testimony-pagination .container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.testimony-pagination__link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 0;
  flex: 1;
  transition: 0.3s ease;
}
.testimony-pagination__link:hover .testimony-pagination__arrow {
  color: #1F3D49;
}
.testimony-pagination__link:hover .testimony-pagination__name {
  color: #1F3D49;
}
.testimony-pagination__link--prev {
  padding-right: 2rem;
  border-right: 1px solid rgba(87, 109, 122, 0.2);
}
.testimony-pagination__link--next {
  padding-left: 2rem;
  justify-content: flex-end;
  text-align: right;
}
.testimony-pagination__arrow {
  font-size: 1.5rem;
  color: #576D7A;
  transition: 0.3s ease;
}
.testimony-pagination__info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.testimony-pagination__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #576D7A;
}
.testimony-pagination__name {
  font-size: 1.1rem;
  font-weight: 700;
  transition: 0.3s ease;
}

/* PAGEBUILDER CONTENT STYLES */
.page-content {
  max-width: 800px;
  margin: 0 auto;
}
.page-content .bloc {
  margin-bottom: 3rem;
}
.page-content h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.page-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.page-content h2[id] {
  scroll-margin-top: 110px;
  position: relative;
}
.page-content h3.subtitle {
  font-size: 1.3rem;
  color: #576D7A;
  font-weight: 400;
  font-style: italic;
}
.page-content .wysiwyg-content p {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.page-content .wysiwyg-content p:last-child {
  margin-bottom: 0;
}
.page-content .image-block {
  margin: 0;
}
.page-content .image-block img {
  width: 100%;
  height: auto;
  display: block;
}
.page-content .double-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 600px) {
  .page-content .double-image {
    grid-template-columns: 1fr;
  }
}
.page-content .video-responsive {
  margin: 2rem 0;
}

/* RELATED TESTIMONIES */
.related-testimonies {
  padding: 5rem 0;
  background: rgba(87, 109, 122, 0.05);
}
.related-testimonies .cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.related-testimonies .cards-grid .testimony-card {
  background: rgba(87, 109, 122, 0.1);
  border: 1px solid rgba(87, 109, 122, 0.3);
  transition: 0.4s ease;
  cursor: pointer;
}
.related-testimonies .cards-grid .testimony-card .card-portrait {
  width: 100%;
  height: 150px;
  overflow: hidden;
  border-bottom: 1px solid #576D7A;
}
.related-testimonies .cards-grid .testimony-card .card-portrait img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.related-testimonies .cards-grid .testimony-card .card-portrait .portrait-anonymous {
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(87, 109, 122, 0.2);
  align-items: center;
  justify-content: center;
}
.related-testimonies .cards-grid .testimony-card .card-portrait .portrait-anonymous svg {
  width: 50px;
  height: 50px;
  color: #576D7A;
}
.related-testimonies .cards-grid .testimony-card .card-content {
  padding: 1.5rem 2rem 2rem;
}
.related-testimonies .cards-grid .testimony-card .card-content .card-meta {
  font-size: 0.8rem;
  color: #576D7A;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.related-testimonies .cards-grid .testimony-card .card-content .card-name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.related-testimonies .cards-grid .testimony-card .card-content .card-quote {
  font-style: italic;
  opacity: 0.8;
  margin-bottom: 1rem;
}
.related-testimonies .cards-grid .testimony-card .card-content .read-more {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
}
.related-testimonies .cards-grid .testimony-card:hover {
  background: rgba(87, 109, 122, 0.2);
  transform: translateY(-5px);
  border-color: #FFFFFF;
}

/* ========================================
   ACTUALITE DETAIL PAGE – Surcharges
======================================== */
.actualite-detail {
  /* Badges de type dans le header et les cards */
}
.actualite-detail .meta-type {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.25rem 0.7rem;
  border: 1px solid #576D7A;
  color: #576D7A;
}
.actualite-detail .meta-type--evenement {
  border-color: #b8860b;
  color: #b8860b;
  background: rgba(184, 134, 11, 0.08);
}
.actualite-detail .meta-type--information {
  border-color: #576D7A;
  color: #576D7A;
  background: rgba(87, 109, 122, 0.08);
}
.actualite-detail .meta-location {
  position: relative;
  padding-left: 1.2rem;
}
.actualite-detail .meta-location::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23576D7A'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.actualite-detail {
  /* Illustration héro */
}
.actualite-detail .actualite-hero-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(87, 109, 122, 0.15);
}
.actualite-detail .actualite-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 480px;
  -o-object-fit: cover;
     object-fit: cover;
}
.actualite-detail {
  /* Bloc intro stylisé */
}
.actualite-detail .actualite-intro {
  border-left: 3px solid #576D7A;
  padding-left: 1.5rem;
}
.actualite-detail .actualite-intro p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #1F3D49;
  font-style: italic;
  opacity: 0.9;
}

/* ========================================
   BLOCS MODULAIRES (monument.php)
======================================== */
/* BLOC HERO */
.bloc-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #FFFFFF;
}
.bloc-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 13, 22, 0.4), rgba(0, 13, 22, 0.85));
}
.bloc-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
}
.bloc-hero__title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: none;
  -webkit-text-fill-color: #FFFFFF;
}
.bloc-hero__subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

/* BLOC TITRE + TEXTE */
.bloc-titre-texte {
  padding: 5rem 0;
}
.bloc-titre-texte__title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}
.bloc-titre-texte__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #576D7A;
  margin: 1rem auto 0;
}
.bloc-titre-texte__content {
  max-width: 800px;
  margin: 0 auto;
}
.bloc-titre-texte__content p {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.bloc-titre-texte__content p:last-child {
  margin-bottom: 0;
}
.bloc-titre-texte__content ul {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}
.bloc-titre-texte__content ul li {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 0.75rem;
  position: relative;
  list-style: none;
}
.bloc-titre-texte__content ul li::before {
  content: "—";
  position: absolute;
  left: -1.5rem;
  color: #576D7A;
}
.bloc-titre-texte__content .btn-primary {
  margin-top: 1rem;
}

/* BLOC GALERIE */
.bloc-galerie {
  padding: 5rem 0;
  background: rgba(87, 109, 122, 0.05);
}
.bloc-galerie__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.bloc-galerie__item {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(87, 109, 122, 0.3);
  transition: 0.4s ease;
  cursor: pointer;
}
.bloc-galerie__item img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s ease;
}
.bloc-galerie__item figcaption {
  padding: 1rem;
  font-size: 0.85rem;
  color: #576D7A;
  text-align: center;
  font-style: italic;
  background: rgba(255, 255, 255, 0.5);
}
.bloc-galerie__item:hover {
  border-color: #1F3D49;
}
.bloc-galerie__item:hover img {
  transform: scale(1.05);
}

/* BLOC VIDEO */
.bloc-video {
  padding: 5rem 0;
}
.bloc-video__wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border: 1px solid rgba(87, 109, 122, 0.3);
}
.bloc-video__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bloc-video__caption {
  max-width: 900px;
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: 0.95rem;
  color: #576D7A;
  font-style: italic;
}

/* BLOC PARALLAX */
.bloc-parallax {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #FFFFFF;
}
.bloc-parallax__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 13, 22, 0.75);
}
.bloc-parallax__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
}
.bloc-parallax__quote {
  font-size: 2rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  quotes: none;
  background: none;
  -webkit-text-fill-color: #FFFFFF;
}
.bloc-parallax__quote::before {
  content: '"';
}
.bloc-parallax__quote::after {
  content: '"';
}
.bloc-parallax__author {
  font-size: 1rem;
  color: #576D7A;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* BLOC TIMELINE */
.bloc-timeline {
  padding: 5rem 0;
  background: rgba(87, 109, 122, 0.05);
}
.bloc-timeline__line {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.bloc-timeline__line::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(87, 109, 122, 0.4);
  transform: translateX(-50%);
}
.bloc-timeline__item {
  position: relative;
  width: 50%;
  padding: 0 3rem 4rem;
}
.bloc-timeline__item::before {
  content: "";
  position: absolute;
  top: -4px;
  width: 14px;
  height: 14px;
  background: #576D7A;
  border: 3px solid #FFFFFF;
  border-radius: 50%;
}
.bloc-timeline__item::after {
  content: "";
  position: absolute;
  top: 5px;
  width: 2rem;
  height: 2px;
  background: rgba(87, 109, 122, 0.4);
}
.bloc-timeline__item--left {
  padding-right: 4rem;
  padding-left: 0;
  text-align: right;
}
.bloc-timeline__item--left::before {
  right: -7px;
}
.bloc-timeline__item--left::after {
  right: 0;
}
.bloc-timeline__item--left .bloc-timeline__content {
  margin-left: auto;
}
.bloc-timeline__item--right {
  margin-left: 50%;
  padding-left: 4rem;
  padding-right: 0;
  text-align: left;
}
.bloc-timeline__item--right::before {
  left: -7px;
}
.bloc-timeline__item--right::after {
  left: 0;
}
.bloc-timeline__date {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #576D7A;
  margin-bottom: 1rem;
  font-weight: 700;
}
.bloc-timeline__content {
  max-width: 350px;
  background: rgba(87, 109, 122, 0.1);
  border: 1px solid rgba(87, 109, 122, 0.3);
  overflow: hidden;
  transition: 0.4s ease;
}
.bloc-timeline__content:hover {
  border-color: #1F3D49;
  background: rgba(87, 109, 122, 0.15);
}
.bloc-timeline__image {
  width: 100%;
  height: 150px;
  overflow: hidden;
}
.bloc-timeline__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s ease;
}
.bloc-timeline__content:hover .bloc-timeline__image img {
  transform: scale(1.05);
}
.bloc-timeline__title {
  font-size: 1.1rem;
  padding: 1rem 1.25rem 0.5rem;
  text-align: left;
}
.bloc-timeline__text {
  font-size: 0.9rem;
  padding: 0 1.25rem 1.25rem;
  opacity: 0.8;
  line-height: 1.6;
  text-align: left;
}

/* MEDIA QUERIES */
@media (max-width: 768px) {
  .main-nav .nav-links {
    display: none;
  }
  .main-nav .burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    position: relative;
    z-index: 101;
  }
  .main-nav .burger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background: #000D16;
    transition: 0.3s ease;
  }
  .main-nav .burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  .main-nav .burger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  .main-nav .burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  .main-nav .nav-links.mobile-active {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: #FFFFFF;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    z-index: 100;
    animation: slideIn 0.3s ease;
  }
  .main-nav .nav-links.mobile-active a {
    font-size: 1.2rem;
  }
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateX(100%);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .focus-testimony-section .focus-container {
    grid-template-columns: 1fr;
  }
  .monument-actions {
    flex-direction: column;
    gap: 1rem;
  }
  /* Blocs responsive */
  .bloc-hero {
    height: 60vh;
    background-attachment: scroll;
  }
  .bloc-hero__title {
    font-size: 2.5rem;
  }
  .bloc-hero__subtitle {
    font-size: 1.1rem;
  }
  .bloc-parallax {
    height: 50vh;
    background-attachment: scroll;
  }
  .bloc-parallax__quote {
    font-size: 1.5rem;
  }
  .bloc-galerie__grid {
    grid-template-columns: 1fr;
  }
  /* Timeline responsive */
  .bloc-timeline__line::before {
    left: 20px;
  }
  .bloc-timeline__item {
    width: 100%;
    padding-left: 4rem !important;
    padding-right: 0 !important;
    text-align: left !important;
  }
  .bloc-timeline__item--left, .bloc-timeline__item--right {
    margin-left: 0;
  }
  .bloc-timeline__item--left::before, .bloc-timeline__item--right::before {
    left: 13px;
    right: auto;
  }
  .bloc-timeline__item--left::after, .bloc-timeline__item--right::after {
    left: 27px;
    right: auto;
  }
  .bloc-timeline__item--left .bloc-timeline__content, .bloc-timeline__item--right .bloc-timeline__content {
    margin-left: 0;
    max-width: 100%;
  }
  /* Testimony pagination responsive */
  .testimony-pagination .container {
    flex-direction: column;
  }
  .testimony-pagination__link {
    padding: 1.5rem 0;
  }
  .testimony-pagination__link--prev {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid rgba(87, 109, 122, 0.2);
  }
  .testimony-pagination__link--next {
    padding-left: 0;
    justify-content: flex-start;
    text-align: left;
  }
  .testimony-pagination__name {
    font-size: 1rem;
  }
}
/* ========================================
   LOADER (affiché une fois par jour)
======================================== */
#loader-container___OBSOLETE {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 9999;
  background-color: #FFFFFF;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
}
#loader-container___OBSOLETE .column {
  display: flex;
  flex-direction: column-reverse;
  width: 26px;
  align-items: center;
  flex-shrink: 0;
}
#loader-container___OBSOLETE .prenom {
  text-transform: uppercase;
  font-family: "Noto Serif", serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: #1F3D49;
  white-space: nowrap;
  opacity: 0;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 6px 0;
}

/* ========================================
   LOADER (affiché une fois par jour)
======================================== */
#loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 9999;
  background-color: #FFFFFF;
  pointer-events: none;
}
#loader-container .column {
  display: flex;
  flex-direction: column-reverse; /* Empile les éléments du bas vers le haut */
  width: 26px;
  align-items: center;
  flex-shrink: 0;
}
#loader-container .prenom {
  /* --- CORRECTION ICI --- */
  /* 1. Mode d'écriture vertical standard (supporté partout) */
  writing-mode: vertical-rl;
  /* 2. Rotation à 180° pour simuler le 'sideways-lr' (lecture bas -> haut) */
  transform: rotate(180deg);
  /* 3. Assure que les caractères restent droits dans la colonne */
  text-orientation: mixed;
  /* ---------------------- */
  text-transform: uppercase;
  font-family: "Noto Serif", serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: #1F3D49;
  white-space: nowrap;
  opacity: 0;
  letter-spacing: -0.03em;
  line-height: 1;
  /* Note : avec vertical-rl, les marges s'appliquent toujours 
     physiquement (haut/bas de l'écran), donc ceci reste correct */
  margin: 6px 0;
}

body.loader-active {
  overflow: hidden !important;
  height: 100vh;
  position: fixed;
  width: 100%;
}

html.loader-active {
  overflow: hidden !important;
}

/* Par défaut, cacher le site jusqu'à ce que le loader décide */
body:not(.loader-finished) > *:not(#loader-container):not(script) {
  visibility: hidden;
  opacity: 0;
}

body.loader-finished > *:not(#loader-container):not(script) {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.5s ease;
}

/* Éviter le flash de changement de police */
body {
  font-family: Georgia, serif;
}

body.fonts-loaded {
  font-family: "Noto Serif", Georgia, serif;
}

.quick-nav {
  padding: 2rem 0;
  background: rgba(87, 109, 122, 0.03);
  border-bottom: 1px solid rgba(87, 109, 122, 0.1);
}
.quick-nav__buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .quick-nav__buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

.testimony-form-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(87, 109, 122, 0.03) 0%, white 50%);
  scroll-margin-top: 100px;
}
.testimony-form-section .testimony-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.testimony-form-section .testimony-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #1F3D49;
}
.testimony-form-section .testimony-intro p.highlight {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000D16;
  margin-bottom: 2rem;
}
.testimony-form-section .testimony-intro p.note {
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(31, 61, 73, 0.7);
  margin-top: 2rem;
}
.testimony-form-section .testimony-intro .contact-email {
  margin: 3rem 0;
  padding: 2.5rem;
  background: #FFFFFF;
  border: 2px solid #576D7A;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.testimony-form-section .testimony-intro .contact-email a {
  font-size: 1.5rem;
  font-weight: 600;
  background: linear-gradient(to right, rgb(87, 109, 122), rgb(31, 61, 73), rgb(0, 13, 22));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: opacity 0.3s;
}
.testimony-form-section .testimony-intro .contact-email a:hover {
  opacity: 0.8;
}

.why-testify-section {
  padding: 5rem 0;
  background: rgba(87, 109, 122, 0.05);
  border-top: 1px solid rgba(87, 109, 122, 0.2);
  scroll-margin-top: 100px;
}
.why-testify-section .section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  background: linear-gradient(to right, rgb(87, 109, 122), rgb(31, 61, 73), rgb(0, 13, 22));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.why-testify-section .why-intro {
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
}
.why-testify-section .why-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #1F3D49;
  opacity: 0.9;
}
.why-testify-section .why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (max-width: 1024px) {
  .why-testify-section .why-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .why-testify-section .why-cards {
    grid-template-columns: 1fr;
  }
}
.why-testify-section .why-card {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(87, 109, 122, 0.03);
  border: 1px solid rgba(87, 109, 122, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.why-testify-section .why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-color: #576D7A;
}
.why-testify-section .why-card__icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  color: #576D7A;
}
.why-testify-section .why-card__icon svg {
  width: 100%;
  height: 100%;
}
.why-testify-section .why-card h3 {
  font-size: 1.1rem;
  color: #1F3D49;
  font-weight: 600;
}
.why-testify-section .cta-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(87, 109, 122, 0.05) 0%, rgba(87, 109, 122, 0.02) 100%);
  border: 2px solid #576D7A;
  border-radius: 12px;
}
.why-testify-section .cta-box .cta-text {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: #000D16;
}

.mesured {
  width: auto;
  display: inline;
}

/* ============================= */
/* PAGE ASSOCIATION */
/* ============================= */
/* Section présentation */
/* Section fondatrices */
.fondatrices-section {
  padding: 5rem 0;
  background: #FFFFFF;
}
.fondatrices-section .fondatrices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}
.fondatrices-section .fondatrice-card {
  background: #FFFFFF;
  border: 1px solid rgba(87, 109, 122, 0.2);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.fondatrices-section .fondatrice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #576D7A;
}
.fondatrices-section .fondatrice-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  border: 3px solid #576D7A;
}
.fondatrices-section .fondatrice-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fondatrices-section .fondatrice-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1F3D49;
  margin-bottom: 1rem;
}
.fondatrices-section .fondatrice-bio {
  font-size: 1rem;
  line-height: 1.6;
  color: #576D7A;
  margin-bottom: 1.5rem;
}
.fondatrices-section .fondatrice-link {
  font-size: 0.9rem;
  margin-top: auto;
}

/* Section ressources */
.ressources-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(87, 109, 122, 0.03) 0%, white 50%);
}
.ressources-section .section-subtitle {
  font-size: 1.2rem;
  color: #576D7A;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 3rem;
}
.ressources-section .ressources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}
.ressources-section .ressource-card {
  background: #FFFFFF;
  border: 1px solid rgba(87, 109, 122, 0.2);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.ressources-section .ressource-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #576D7A;
}
.ressources-section .ressource-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  color: #576D7A;
}
.ressources-section .ressource-icon svg {
  width: 100%;
  height: 100%;
}
.ressources-section .ressource-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1F3D49;
  margin-bottom: 1rem;
}
.ressources-section .ressource-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #576D7A;
  margin-bottom: 2rem;
}
.ressources-section .ressource-link {
  font-size: 0.9rem;
}

/* Section pétition */
.petition-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1F3D49 0%, #000D16 100%);
  color: #FFFFFF;
  text-align: center;
}
.petition-section .petition-content {
  max-width: 800px;
  margin: 0 auto;
}
.petition-section .petition-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
}
.petition-section .petition-title span {
  background: linear-gradient(to right, #FFFFFF, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
.petition-section .petition-description {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
}
.petition-section .petition-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 3rem;
}
.petition-section .petition-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.petition-section .petition-number {
  font-size: 3rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
}
.petition-section .petition-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.5rem;
}
.petition-section .petition-cta {
  background: #FFFFFF;
  color: #1F3D49;
  font-size: 1.1rem;
  padding: 1.2rem 2.5rem;
  font-weight: 700;
  border: 2px solid #FFFFFF;
}
.petition-section .petition-cta:hover {
  background: transparent;
  color: #FFFFFF;
}

/* Section amis */
.amis-section {
  padding: 5rem 0;
  background: #FFFFFF;
}
.amis-section .amis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.amis-section .ami-card {
  background: #FFFFFF;
  border: 1px solid rgba(87, 109, 122, 0.2);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.amis-section .ami-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #576D7A;
}
.amis-section .ami-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1F3D49;
  margin-bottom: 1rem;
}
.amis-section .ami-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #576D7A;
  margin-bottom: 1.5rem;
}
.amis-section .ami-link {
  color: #576D7A;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.amis-section .ami-link:hover {
  color: #1F3D49;
}

/* Responsive pour la page association */
@media (max-width: 768px) {
  .fondatrices-section .fondatrices-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .ressources-section .ressources-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .amis-section .amis-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .cta-light {
    padding: 1.5rem 1.8rem;
  }
  .cta-light__stats {
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  .cta-light__stats {
    flex-direction: column;
    gap: 1rem;
  }
  .fondatrices-section .fondatrice-card,
  .ressources-section .ressource-card,
  .amis-section .ami-card {
    padding: 1.5rem;
  }
}
/* scroll-margin pour les sections de l'association */
.association-content section[id] {
  scroll-margin-top: 120px;
}

/* Padding spécial pour la première section de l'association */
.association-content section[id=presentation] {
  padding-top: 8rem;
}

/* RESPONSIVE MOBILE - PADDING SECTIONS */
@media (max-width: 768px) {
  /* Ajustement du padding pour la première section sur mobile */
  .association-content section[id=presentation] {
    padding-top: 6rem;
  }
  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
  .bloc-titre-texte {
    padding: 3rem 0;
  }
  .bloc-titre-texte .container {
    padding: 0 1rem;
  }
  .bloc-titre-texte__content {
    padding: 0 1rem;
  }
  .bloc-titre-texte__content p {
    margin-bottom: 1.5rem;
  }
  .ressources-section .container,
  .fondatrices-section .container,
  .amis-section .container {
    padding: 0 1rem;
  }
  .cta-light-section .container {
    padding: 0 1rem;
  }
  .cta-light-section .cta-light {
    padding: 1.5rem;
    margin: 0 1rem;
  }
  .association-layout {
    padding: 0;
  }
  .association-layout .association-content {
    padding: 0 1rem;
  }
}
/* ============================================================
   PAGE CLASSIQUE
   ============================================================ */
.page-classique {
  padding-bottom: 5rem;
}
.page-classique__header {
  padding: 8rem 0 3rem;
  background: rgba(87, 109, 122, 0.04);
  border-bottom: 1px solid rgba(87, 109, 122, 0.15);
  text-align: center;
}
.page-classique__titre {
  font-size: 2.4rem;
  line-height: 1.2;
  color: #1F3D49;
  margin: 0;
}
.page-classique__image {
  padding: 3rem 0 0;
}
.page-classique__image img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.page-classique__texte {
  padding: 3rem 0 0;
}
.page-classique__texte .container {
  max-width: 820px;
}
.page-classique__texte p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #1F3D49;
  margin-bottom: 1.4rem;
}
.page-classique__texte h2 {
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
  color: #1F3D49;
}
.page-classique__texte h3 {
  font-size: 1.25rem;
  margin: 2rem 0 0.8rem;
  color: #1F3D49;
}
.page-classique__texte a {
  color: #576D7A;
  text-decoration: underline;
}
.page-classique__texte a:hover {
  color: #1F3D49;
}
.page-classique__texte ul, .page-classique__texte ol {
  padding-left: 1.5rem;
  margin-bottom: 1.4rem;
}
.page-classique__texte ul li, .page-classique__texte ol li {
  line-height: 1.7;
  margin-bottom: 0.4rem;
}
@media (max-width: 768px) {
  .page-classique__header {
    padding: 7rem 0 2rem;
  }
  .page-classique__titre {
    font-size: 1.8rem;
  }
  .page-classique__texte .container {
    padding: 0 1rem;
  }
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 1rem !important;
}

.mt-2 {
  margin-top: 2rem !important;
}

.mt-3 {
  margin-top: 3rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.mb-2 {
  margin-bottom: 2rem !important;
}

.mb-3 {
  margin-bottom: 3rem !important;
}/*# sourceMappingURL=style.css.map */