/********************************/
/*      NEWS ARTICLE PAGE       */
/********************************/

.news-article {
  padding: 6rem 0;
  background-color: #fff;
}

.news-article-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  margin-bottom: 2.4rem;
  flex-wrap: wrap;
}

.news-article-tag {
  display: inline-block;
  background-color: #c09a5d;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.news-article-date {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #555;
  font-size: 1.4rem;
}

.news-article-title {
  font-size: 4.2rem;
  line-height: 1.15;
  color: #1c1c1c;
  margin-bottom: 2.8rem;
  font-weight: 700;
  max-width: 95rem;
}

.news-article-hero {
  margin: 0 0 4rem 0;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.news-article-hero img {
  width: 100%;
  height: 48rem;
  object-fit: cover;
  display: block;
  transform: none;
  filter: none;
}

/* On neutralise ton hover global sur le hero (sinon zoom au survol) */
.news-article-hero img:hover {
  transform: none;
  filter: none;
}

/* Content typography */
.news-article-content {
  max-width: 85rem;
  margin: 0 auto;
  color: #26242d;
}

.news-article-content p {
  font-size: 1.7rem;
  line-height: 1.9;
  margin-bottom: 1.8rem;
  color: #333;
}

.news-article-content h2 {
  font-size: 2.4rem;
  margin: 3.2rem 0 1.2rem;
  color: #111;
  line-height: 1.3;
}

.news-article-content h3 {
  font-size: 2rem;
  margin: 2.4rem 0 1rem;
  color: #111;
  line-height: 1.35;
}

.news-article-content ul {
  margin: 1.2rem 0 2rem;
  padding-left: 2rem;
}

.news-article-content li {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 0.8rem;
  color: #333;
}

.news-article-content a {
  color: #0068ac;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.news-article-content a:hover {
  color: #004c7a;
}

/* Highlight box */
.news-article-highlight {
  margin-top: 3.2rem;
  padding: 2.4rem;
  border-left: 6px solid #c09a5d;
  background: #fff5e6;
  border-radius: 1rem;
}

/* Gallery images inside content (smaller than hero) */
.news-article-gallery {
  margin: 2.8rem 0 1.6rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}

.news-article-figure {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  background: #f5f5f5;
  border: 1px solid #eee;
}

.news-article-figure img {
  width: 100%;
  height: 22rem;
  object-fit: cover;
  display: block;
}

/* Figcaption */
.news-article-figure figcaption {
  padding: 1.2rem 1.2rem 1.4rem;
  font-size: 1.3rem;
  color: #555;
  line-height: 1.5;
}

/* Videos responsive */
.news-article-videos {
  margin: 2.8rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}

.youtube-embed {
  width: 100%;
  border-radius: 1.2rem;
  overflow: hidden;
  background: #000;
  position: relative;
  aspect-ratio: 16 / 9;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 900px) {
  .news-article {
    padding: 4.8rem 0;
  }

  .news-article-title {
    font-size: 3.2rem;
  }

  .news-article-hero img {
    height: 34rem;
  }

  .news-article-content {
    max-width: 100%;
  }

  .news-article-gallery {
    grid-template-columns: 1fr;
  }

  .news-article-figure img {
    height: 24rem;
  }

  .news-article-videos {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .news-article-title {
    font-size: 2.6rem;
  }

  .news-article-hero img {
    height: 24rem;
  }

  .news-article-content p {
    font-size: 1.6rem;
  }
}
