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

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

/* Hero Section */
.page-news__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, relying on body padding for header offset */
    margin-bottom: 40px;
    background-color: #f8f8f8;
    overflow: hidden;
    display: flex;
    flex-direction: column; /* Ensure image is above content */
    align-items: center;
}

.page-news__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for desktop hero */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px; /* Space between image and content */
}

.page-news__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover; /* Maintain aspect ratio and cover area */
    display: block;
}

.page-news__hero-content {
    text-align: center;
    padding: 0 20px 40px;
    max-width: 900px;
}

.page-news__hero-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem); /* Responsive font size */
    color: #017439;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

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

.page-news__hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

/* General Button Styles */
.page-news__btn-primary,
.page-news__btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-align: center;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    box-sizing: border-box;
    max-width: 100%;
}

.page-news__btn-primary {
    background-color: #C30808; /* Use custom color for primary CTA */
    color: #FFFF00; /* Use custom font color for primary CTA */
    border: 2px solid #C30808;
}

.page-news__btn-primary:hover {
    background-color: #e00b0b;
    border-color: #e00b0b;
}

.page-news__btn-secondary {
    background-color: transparent;
    color: #017439;
    border: 2px solid #017439;
}

.page-news__btn-secondary:hover {
    background-color: #017439;
    color: #ffffff;
}

/* Section Titles & Subtitles */
.page-news__section-title {
    font-size: 2.2rem;
    color: #017439;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

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

/* Latest Articles Section */
.page-news__latest-articles {
    padding: 60px 0;
}

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

.page-news__article-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-news__article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-news__article-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

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

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

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

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

.page-news__read-more {
    color: #C30808;
    font-weight: 600;
    text-decoration: none;
    align-self: flex-start;
}

.page-news__read-more:hover {
    text-decoration: underline;
}

.page-news__view-all-button {
    text-align: center;
}

/* Featured News Section */
.page-news__featured-news {
    padding: 60px 0;
    background-color: #017439; /* Dark background */
    color: #ffffff; /* Light text */
}

.page-news__featured-news .page-news__section-title,
.page-news__featured-news .page-news__section-subtitle {
    color: #ffffff;
}

.page-news__featured-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.page-news__featured-image {
    width: 50%;
    height: auto;
    object-fit: cover;
    display: block;
}

.page-news__featured-content {
    width: 50%;
    padding: 30px;
}

.page-news__featured-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

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

.page-news__featured-excerpt {
    font-size: 1rem;
    margin-bottom: 25px;
    color: #f0f0f0;
}

/* Global Trends Section */
.page-news__global-trends {
    padding: 60px 0;
    background-color: #f0f8f0; /* Light green tint */
}

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

.page-news__trend-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news__trend-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-news__trend-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-news__trend-content {
    padding: 20px;
}

.page-news__trend-title {
    font-size: 1.3rem;
    color: #017439;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.4;
}

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

.page-news__trend-excerpt {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 15px;
}

/* Industry Insights Section */
.page-news__industry-insights {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.page-news__insight-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news__insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-news__insight-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-news__insight-content {
    padding: 20px;
}

.page-news__insight-title {
    font-size: 1.3rem;
    color: #017439;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.4;
}

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

.page-news__insight-excerpt {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 15px;
}

/* FAQ Section */
.page-news__faq-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-news__faq-list {
    max-width: 800px;
    margin: 0 auto;
}

details.page-news__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
}
details.page-news__faq-item summary.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-news__faq-item summary.page-news__faq-question::-webkit-details-marker {
  display: none;
}
details.page-news__faq-item summary.page-news__faq-question:hover {
  background: #f5f5f5;
}
.page-news__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333333;
}
.page-news__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-news__faq-item .page-news__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: #555555;
}
}