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

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

.page-news__hero-section {
  position: relative;
  padding: 60px 0;
  padding-top: 10px; /* Small top padding, header offset handled by body */
  background: linear-gradient(to bottom, #E0F2F7, #FFFFFF);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-news__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
}

.page-news__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-news__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-news__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  color: #26A9E0;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

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

.page-news__highlight {
  font-weight: bold;
  color: #26A9E0;
}

.page-news__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  color: #26A9E0;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 600;
}

.page-news__section-description {
  font-size: 1em;
  color: #555555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-news__latest-news-section,
.page-news__insights-section,
.page-news__announcements-section,
.page-news__faq-section {
  padding: 60px 0;
}

.page-news__promotions-section,
.page-news__cta-final-section {
  background-color: #26A9E0; /* Brand primary color */
  color: #FFFFFF; /* White text for dark background */
  padding: 60px 0;
}

.page-news__promotions-section .page-news__section-title,
.page-news__promotions-section .page-news__section-description,
.page-news__cta-final-section .page-news__section-title,
.page-news__cta-final-section .page-news__section-description {
  color: #FFFFFF;
}

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

.page-news__news-card,
.page-news__promo-card,
.page-news__insight-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 12px 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__news-card:hover,
.page-news__promo-card:hover,
.page-news__insight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

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

.page-news__news-content,
.page-news__promo-content,
.page-news__insight-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-news__news-title,
.page-news__promo-title,
.page-news__insight-title {
  font-size: 1.3em;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-news__news-title a,
.page-news__promo-title a,
.page-news__insight-title a {
  color: #26A9E0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__news-title a:hover,
.page-news__promo-title a:hover,
.page-news__insight-title a:hover {
  color: #EA7C07;
}

.page-news__news-date {
  font-size: 0.9em;
  color: #777777;
  margin-bottom: 15px;
}

.page-news__news-excerpt,
.page-news__promo-text,
.page-news__insight-text {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news__read-more-link {
  display: inline-block;
  color: #26A9E0;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  margin-top: auto; /* Push to bottom */
}

.page-news__read-more-link:hover {
  color: #EA7C07;
}

.page-news__btn-primary,
.page-news__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1em;
  text-align: center;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-news__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

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

.page-news__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-news__btn-secondary:hover {
  background-color: #F0F8FF;
  color: #1F8CBF;
  border-color: #1F8CBF;
}

.page-news__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-news__announcement-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
}

.page-news__announcement-item {
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 25px;
  margin-bottom: 20px;
}

.page-news__announcement-title {
  font-size: 1.2em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-news__announcement-title time {
  font-size: 0.9em;
  color: #777777;
  margin-left: 10px;
}

.page-news__announcement-text {
  font-size: 0.95em;
  color: #666666;
}

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

.page-news__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  background-color: #F8F8F8;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-news__faq-item[open] .page-news__faq-question {
  background-color: #E0F2F7;
  border-bottom: 1px solid #C0E0E7;
}

.page-news__faq-question::-webkit-details-marker {
  display: none;
}

.page-news__faq-question:hover {
  background-color: #E0F2F7;
}

.page-news__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #26A9E0;
  margin-left: 15px;
}

.page-news__faq-item[open] .page-news__faq-toggle {
  color: #EA7C07;
}

.page-news__faq-answer {
  padding: 20px 25px;
  font-size: 0.95em;
  color: #555555;
  border-top: none;
}

.page-news__faq-answer p {
  margin-top: 0;
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-news__hero-section {
    padding: 40px 0;
    padding-top: 10px !important; /* Ensure small top padding */
  }

  .page-news__hero-content {
    padding: 0 15px;
  }

  .page-news__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-news__hero-description {
    font-size: 1em;
  }

  .page-news__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
    padding: 0 15px;
  }

  .page-news__section-description {
    padding: 0 15px;
    font-size: 0.95em;
  }

  .page-news__latest-news-section,
  .page-news__promotions-section,
  .page-news__insights-section,
  .page-news__announcements-section,
  .page-news__faq-section,
  .page-news__cta-final-section {
    padding: 40px 0;
  }

  .page-news__container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-news__news-grid,
  .page-news__promotions-grid,
  .page-news__insights-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-news__news-image,
  .page-news__promo-image,
  .page-news__insight-image {
    height: 180px;
  }

  .page-news__news-card,
  .page-news__promo-card,
  .page-news__insight-card {
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
  }

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

  .page-news__news-title,
  .page-news__promo-title,
  .page-news__insight-title {
    font-size: 1.15em;
  }

  .page-news__news-excerpt,
  .page-news__promo-text,
  .page-news__insight-text {
    font-size: 0.9em;
  }

  .page-news__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-news__btn-primary,
  .page-news__btn-secondary,
  .page-news a[class*="button"],
  .page-news a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-news__announcement-item {
    padding: 20px;
  }

  .page-news__announcement-title {
    font-size: 1.1em;
  }

  .page-news__announcement-title time {
    display: block;
    margin-left: 0;
    margin-top: 5px;
  }

  .page-news__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-news__faq-answer {
    padding: 15px 20px;
    font-size: 0.9em;
  }
}