.news-section {
  background: #f4f1ec;
  padding: 5rem 1rem;
  position: relative;
  overflow: hidden;
}

.news-section::before {
  content: 'ACTUALITÉS';
  position: absolute;
  top: 1.5rem; right: -1rem;
  font-size: 5.5rem;
  font-weight: 700;
  color: rgba(5,84,117,0.05);;
  letter-spacing: 0.1em;
  pointer-events: none;
  white-space: nowrap;
}

.news-section::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, transparent, #055475 20%, #0896c8 80%, transparent);
}

.news-header { text-align: center; margin-bottom: 3.5rem; color: #0d1f2d; }

.news-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7dc8e8;
  margin-bottom: 0.75rem;
}

.news-eyebrow::before,
.news-eyebrow::after {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: #7dc8e8;
}

.news-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #055475;
}

.news-divider {
  width: 48px; height: 3px;
  background: #055475;
  margin: 0.75rem auto 0;
}

/* Grid 3 colonnes */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}

/* Card */
.news-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow:0 16px 40px rgba(5,84,117,0.12);;
}

.news-card__img {
  height: 210px;
  overflow: hidden;
  position: relative;
}

.news-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
  transition: transform 0.5s ease;
}

.news-card:hover .news-card__img img { transform: scale(1.06); }

.news-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5,84,117,0);
  transition: background 0.3s;
}

.news-card:hover .news-card__img::after {
  background: rgba(5,84,117,0.15);
}

.news-card__badge {
  position: absolute;
  top: 1rem; left: 0;
  background: #055475;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  z-index: 2;
}

.news-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 3px solid #055475;
}

.news-card__meta {
  font-size: 10px;
  color: #7dc8e8;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-card__meta span { opacity: 0.5; }

.news-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0d1f2d;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  flex: 1;
}

.news-card__excerpt {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.news-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid #f0ece4;
}

.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7dc8e8;
  text-decoration: none;
  transition: gap 0.2s;
}

.news-card__link::after { content: '→'; }
.news-card__link:hover { gap: 10px; }

.news-card__num {
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.05);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

/* CTA */
.news-cta { text-align: center; }

.news-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.75rem 2.5rem;
  background: transparent;
  color: #7dc8e8;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid #055475;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}

.news-cta a::after { content: '→'; }
.news-cta a:hover { background: #055475; color: #fff; }

/* Responsive */
@media (max-width: 992px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .news-grid { grid-template-columns: 1fr; }
}
