/* =========================
   BANNIÈRE PRESSE
========================= */
.press-banner {
  background: linear-gradient(
      rgba(27,94,32,0.85),
      rgba(27,94,32,0.85)
    ),
    url("assets/press-banner.jpg") center/cover no-repeat;
  height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.press-banner h1 {
  font-size: 3rem;
  font-weight: 800;
}

.press-banner p {
  margin-top: 12px;
  font-size: 1.1rem;
}

/* =========================
   COMMUNIQUÉS
========================= */
.press-section {
  padding: 90px 60px;
  background: #f7f9fc;
}

.press-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  gap: 30px;
}

.press-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.press-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.15);
}

.press-date {
  display: inline-block;
  font-size: 0.9rem;
  color: #ffb300;
  font-weight: 700;
  margin-bottom: 10px;
}

.press-card h3 {
  color: #1f2933;
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.press-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* BOUTON */
.press-btn {
  display: inline-block;
  margin-top: 16px;
  background: #1b5e20;
  color: #fff;
  padding: 10px 22px;
  border-radius: 22px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s ease, transform 0.3s ease;
}

.press-btn:hover {
  background: #154d1c;
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .press-banner h1 {
    font-size: 2.2rem;
  }

  .press-section {
    padding: 60px 20px;
  }
}
