body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f7f7f7;
  color: #222;
}
.header {
  background: #003366;
  color: #fff;
  padding: 1rem 0;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo {
  height: 50px;
}
.header nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.header nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
.news-section, .donate-section {
  background: #fff;
  margin: 2rem 0;
  padding: 2rem 0;
}
.news-section h2, .donate-section h2 {
  color: #003366;
}
.news-list {
  display: flex;
  gap: 2rem;
}
.news-list article {
  background: #f0f4f8;
  padding: 1rem;
  border-radius: 8px;
  flex: 1;
}
.donate-section button {
  background: #e60050;
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}
.footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

#articles {
  background-color: #e2ebed;
  /* padding: 1rem; */
  /* margin-bottom: 1rem; */
  border-radius: 8px;
}

.two-column-wrapper {
  display: flex;
  justify-content: center;
  padding: 0 16.66%; /* 1/6 left and right padding = 1/3 total */
  padding-bottom: 50px;
}

.column-droite {
  width: 50%; /* Each column takes half of the 2/3 available space */
  box-sizing: border-box;
  min-height: 300px;
  border: #000 solid 2px;
  background-image: url('../../images/free_roaming.jpg');
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.column-gauche {
  width: 50%; /* Each column takes half of the 2/3 available space */
  box-sizing: border-box;
  min-height: 300px;
  /* border: #000 solid 2px; */
  /* background-image: url('../../public/images/image_article_v3.png'); */
  background-size: cover;
  background-position: center;
}
.column-droite:hover, .column-gauche:hover{
  background-color: #f66d2d;
}

.divider {
  width: 2px;
  margin: 0 10px; /* optional spacing around the divider */
  min-height: 300px;
}

.article-container {
  background-color: #e2ebed;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#root {
    --primary-color: #3C5FAB;
    --primary-dark: #2C3E50;
    --primary-light: #ECF0F1;
    --accent-color: #E74C3C;
    --dark-color: #2C3E50;
    --light-color: #ECF0F1;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Container principal : 4 colonnes égales */
.container-report {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0; /* colonnes contiguës pour que la ligne séparatrice soit visible */
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding: 0;
}

/* Chaque carte rapport : colonne en hauteur, contenu puis bouton sur sa propre ligne */
.report-item {
  display: flex;
  flex-direction: column; /* empile le contenu verticalement */
  justify-content: flex-start;
  padding: 20px;
  box-sizing: border-box;
  min-height: 300px;
  background: #f7f7f7;
  color: #111;
  position: relative;
  z-index: 2; /* au-dessus de la pseudo-ligne */
    border-color: #100101;
  border-width: 2px;
  border-style: solid;
}

.report-item:hover {
  background: #cb87f8;
}

.text-report {
  flex: 1; /* occupe tout l'espace disponible pour pousser le bouton vers le bas */
  margin-bottom: 10px; /* espace entre texte et bouton */
}

/* Le contenu texte reste en haut */
/* .report-item > div:first-child rule removed because it had no properties */

/* Forcer .report-download sur une nouvelle ligne et coller le bouton en bas si besoin */
.report-download {
  margin-top: 0px; /* espace entre texte et bouton */
  display: block;
  width: 100%;
  align-self: stretch; /* occupe toute la largeur de la colonne */
}

/* Centrer le bouton à l'intérieur du bloc download (optionnel) */
.report-download .btn {
  display: inline-block;
  margin: 0 auto;
}

/* Séparateurs verticaux noir/blanc entre colonnes :
   on dessine 3 lignes verticales via un ::before sur le container,
   chaque ligne est une image linéaire divisée en noir à gauche et blanc à droite. */
.container-report::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, #f2eeee 10%, #100101 90%); /* ligne noire à gauche, blanche à droite */
  
  background-color: #111; /* couleur de fond pour les espaces entre les lignes */
  /* background-repeat: no-repeat; */
  /* background-size: 5px 100%; */
  /* background-position: 25% 0, 50% 0, 75% 0; */
  z-index: 1;
}

/* Assurer que le contenu est au-dessus de la pseudo-ligne */
.report-item { z-index: 2; }

/* Responsive : empile les cartes sur petits écrans et masque les lignes verticales */
@media (max-width: 800px) {
  .container-report {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .container-report::before {
    display: none;
  }
}

.gobeyond {
  background-color: #023c49;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;

}

.beyond-container {
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  min-height: fit-content;
  background-image: url('../../images/img_go_beyond.png');
  background-repeat: no-repeat;   /* évite la répétition */
  background-size: auto;          /* conserve la taille originale */
  background-position: center;    /* centre l’image */
  width: 100%;
  background-size: cover;
}


/* .beyond-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  background-color: #023c49;
  padding: 10px;
  background-image: url('../../public/images/img_go_beyond.png');
  background-size: cover;
} */

.beyond-container .btn {
  background-color: #e60050;
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}

/* .beyond-wrapper {
  display: flex;
  justify-content: center;
  gap: 1rem;
  background-color: #023c49;
  min-height: 300px;
  min-width: 600px;
  
} */

/* .beyond-item {
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  min-height: fit-content;
  background-image: url('../../public/images/img_go_beyond.png');
  background-size: cover;
  width: 100%;
}
 */
.beyond-item-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 00px;
  padding: 1rem;
}