/* style/news.css */

/* General page styles */
.page-news {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark background */
  background-color: var(--bg-dark, #0d0d0d); /* Default dark background if var not set */
}

.page-news__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-news__section-title {
  font-size: 36px;
  font-weight: 700;
  color: #FFD700; /* Gold for main titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-news__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #CC0000; /* Red underline */
  border-radius: 2px;
}

.page-news__section-intro,
.page-news__intro-paragraph {
  font-size: 18px;
  text-align: center;
  margin-bottom: 30px;
  color: #cccccc;
}

.page-news__intro-paragraph {
  text-align: left;
  margin-bottom: 20px;
  font-size: 17px;
}

/* Hero Banner */
.page-news__hero-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0; /* Assuming shared.css handles body padding-top */
  min-height: 500px;
  background: linear-gradient(135deg, #CC0000, #FFD700); /* Gradient background if image not loaded */
  overflow: hidden;
  margin-bottom: 60px;
}

.page-news__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-news__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: none; /* Ensure no CSS filter is applied to images */
}

.page-news__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay */
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.page-news__main-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-news__description {
  font-size: 20px;
  margin-bottom: 30px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}