/* style/news.css */

/* General styles for the news page */
.page-news {
  color: #ffffff; /* Light text on dark body background */
  background-color: #1a1a1a; /* Assuming body background is handled by shared.css, this ensures consistency for main content */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

/* Hero Section - News Specific */
.page-news__hero-section {
  position: relative;
  padding: 80px 20px; /* Adjusted padding for news hero */
  text-align: center;
  overflow: hidden;
  background-color: #0d0d0d; /* Slightly darker background for hero */
  padding-top: 0; /* Assuming shared.css handles body padding-top for header offset */
}

.page-news__hero-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

.page-news__hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #FFC107; /* Auxiliary color for highlight */
  margin-bottom: 20px;
  line-height: 1.2;
}