/* =========================
   VARIABLES
========================= */
:root {
  --green-main: #1b5e20;
  --green-light: #e6f4e8;
  --green-soft: #2e7d32;
  --text-dark: #333;
}

/* =========================
   BANNIÈRE
========================= */
.page-banner {
  background-color: var(--green-light);
  padding: 90px 20px;
  text-align: center;
}

.page-banner h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--green-main);
  margin-bottom: 15px;
}

.page-banner p {
  font-size: 1.15rem;
  color: var(--green-soft);
}

/* =========================
   SECTION PRESSE
========================= */
.press-section {
  padding: 80px 40px;
  background-color: #ffffff;
}

.press-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

/* =========================
   CARTE ARTICLE
========================= */
.press-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.press-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.18);
}

.press-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* =========================
   CONTENU ARTICLE
========================= */
.press-content {
  padding: 25px;
}

.press-date {
  display: block;
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 8px;
}

.press-content h3 {
  font-size: 1.25rem;
  color: var(--green-main);
  margin-bottom: 12px;
  font-weight: 700;
}

.press-content p {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* =========================
   BOUTON
========================= */
.press-btn {
  text-decoration: none;
  display: inline-block;
  background-color: var(--green-main);
  color: #fff;
  padding: 10px 22px;
  border-radius: 22px;
  font-weight: 700;
  transition: background 0.3s ease, transform 0.3s ease;
}

.press-btn:hover {
  background-color: #124116;
  transform: scale(1.05);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .page-banner h1 {
    font-size: 2.2rem;
  }

  .press-section {
    padding: 60px 20px;
  }
}
