.page-news {
  color: #333333; /* Default text color for light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #FFFFFF; /* Assuming body background is light */
}

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

/* Hero Section */
.page-news__hero-section {
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  padding-bottom: 40px;
  background-color: #FFFFFF; /* Ensure light background for hero section */
}

.page-news__hero-container {
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  text-align: center;
}

.page-news__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}

.page-news__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-news__hero-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem); /* Clamp for H1, avoid fixed large size */
  font-weight: 700;
  line-height: 1.2;
  color: #017439; /* Brand color for title */
  margin-bottom: 20px;
}

.page-news__hero-description {
  font-size: 1.15rem;
  color: #555555;
  margin-bottom: 30px;
}

.page-news__hero-cta-button {
  display: inline-block;
  background-color: #017439;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
  box-sizing: border-box;
}

.page-news__hero-cta-button:hover {
  background-color: #005a2e;
}

/* General Section Styles */
.page-news__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #017439;
  text-align: center;
  margin-bottom: 20px;
}

.page-news__section-description {
  font-size: 1.1rem;
  color: #555555;
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Latest Articles Section */
.page-news__latest-articles {
  padding: 60px 0;
  background-color: #017439; /* Dark background for this section */
  color: #ffffff; /* White text for dark background */
}

.page-news__latest-articles .page-news__section-title,
.page-news__latest-articles .page-news__section-description {
  color: #ffffff;
}

.page-news__articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-news__article-card {
  background-color: #ffffff; /* Light background for cards */
  color: #333333;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.page-news__article-card:hover {
  transform: translateY(-5px);
}

.page-news__article-image {
  width: 100%;
  height: 225px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-news__article-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-news__article-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-news__article-title a {
  color: #017439;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__article-title a:hover {
  color: #005a2e;
}

.page-news__article-meta {
  font-size: 0.9rem;
  color: #888888;
  margin-bottom: 15px;
}

.page-news__article-excerpt {
  font-size: 1rem;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news__read-more-button {
  display: inline-block;
  background-color: #017439;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  align-self: flex-start;
  transition: background-color 0.3s ease;
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
  box-sizing: border-box;
}

.page-news__read-more-button:hover {
  background-color: #005a2e;
}

.page-news__view-all {
  text-align: center;
  margin-top: 50px;
}

.page-news__view-all-button {
  display: inline-block;
  background-color: #ffffff;
  color: #017439;
  border: 2px solid #017439;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
  box-sizing: border-box;
}

.page-news__view-all-button:hover {
  background-color: #017439;
  color: #ffffff;
}

/* Industry Trends Section */
.page-news__industry-trends {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-news__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.page-news__content-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-news__text-block {
  flex: 1;
  max-width: 50%;
  font-size: 1.05rem;
  color: #333333;
}

.page-news__text-block p:not(:last-child) {
  margin-bottom: 15px;
}

/* Expert Analysis Section */
.page-news__expert-analysis {
  padding: 60px 0;
  background-color: #017439; /* Dark background */
  color: #ffffff; /* White text */
}

.page-news__expert-analysis .page-news__section-title,
.page-news__expert-analysis .page-news__section-description {
  color: #ffffff;
}

.page-news__analysis-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}