.page-news {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
}

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

.page-news__section-padding {
  padding: 60px 0;
}

.page-news__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
  line-height: 1.2;
}

.page-news__section-subtitle {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #A7D9B8; /* Text Secondary */
}

/* Hero Section */
.page-news__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding */
}

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

.page-news__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  background: #08160F; /* Background */
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  margin-top: -80px; /* Overlap with image slightly for visual effect */
}

.page-news__hero-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 800;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-news__hero-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-news__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-news__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

/* Latest Articles Section */
.page-news__dark-bg {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
}

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

.page-news__article-card {
  background-color: #11271B; /* Card BG */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-news__article-image {
  width: 100%;
  height: 220px;
  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.4em;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-news__article-title a {
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__article-title a:hover {
  color: #2AD16F; /* Button top gradient color */
}

.page-news__article-date {
  font-size: 0.9em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
}

.page-news__article-excerpt {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news__read-more {
  display: inline-block;
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-news__read-more:hover {
  color: #F2C14E; /* Gold */
}

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

/* Featured News Section */
.page-news__light-bg {
  background-color: #f4f4f4; /* Body background color */
  color: #333333; /* Dark text for light background */
}

.page-news__featured-news .page-news__section-title {
  color: #333333; /* Dark text for light background */
}

.page-news__featured-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.page-news__featured-image {
  flex: 1 1 500px;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: block;
}

.page-news__featured-text {
  flex: 1 1 400px;
  font-size: 1.05em;
  line-height: 1.7;
}

.page-news__featured-text p {
  margin-bottom: 15px;
  color: #333333;
}

.page-news__featured-text .page-news__cta-button {
  margin-top: 20px;
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%); /* Inverted gradient for contrast */
  color: #ffffff;
}

.page-news__featured-text .page-news__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-news__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  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.15em;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-news__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-news__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #57E38D; /* Glow */
  margin-left: 15px;
}

.page-news__faq-item[open] .page-news__faq-toggle {
  content: '−';
}

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

.page-news__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
}

/* CTA Banner Section */
.page-news__cta-banner {
  background: url('[GALLERY:bg:1920x400:lb555_nha_cai,cta_banner,nen_xanh_la_vang,giai_tri]') no-repeat center center/cover;
  text-align: center;
  padding: 80px 20px;
}

.page-news__cta-banner .page-news__cta-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(17, 39, 27, 0.85); /* Card BG with transparency */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-news__cta-banner .page-news__cta-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-news__cta-banner .page-news__cta-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-news__cta-button--large {
  padding: 18px 40px;
  font-size: 1.1em;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-news__hero-content {
    margin-top: -40px;
  }
  .page-news__hero-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-news__section-title {
    font-size: 2em;
  }
  .page-news__featured-content {
    flex-direction: column;
  }
  .page-news__featured-image {
    flex: none;
  }
  .page-news__featured-text {
    flex: none;
  }
}

@media (max-width: 768px) {
  .page-news__section-padding {
    padding: 40px 0;
  }
  .page-news__hero-content {
    padding: 30px 15px;
    margin-top: -20px;
  }
  .page-news__hero-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-news__hero-description {
    font-size: 1em;
  }
  .page-news__cta-button {
    padding: 12px 25px;
    font-size: 0.95em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-news__articles-grid {
    grid-template-columns: 1fr;
  }
  .page-news__article-title {
    font-size: 1.2em;
  }
  .page-news__featured-text {
    font-size: 1em;
  }
  .page-news__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-news__faq-answer {
    padding: 0 20px 15px 20px;
  }
  .page-news__cta-banner .page-news__cta-title {
    font-size: 1.8em;
  }
  .page-news__cta-banner .page-news__cta-description {
    font-size: 1em;
  }
  .page-news__cta-button--large {
    padding: 15px 30px;
    font-size: 1em;
  }
  /* Mobile specific image and container rules */
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-news__section, .page-news__card, .page-news__container, .page-news__cta-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no overflow */
  }
  .page-news__hero-section, .page-news__latest-articles, .page-news__featured-news, .page-news__faq-section, .page-news__cta-banner {
    padding-left: 0;
    padding-right: 0;
  }
  .page-news__hero-section {
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-news__section-title {
    font-size: 1.8em;
  }
  .page-news__hero-title {
    font-size: clamp(1.5em, 7vw, 2em);
  }
  .page-news__cta-banner .page-news__cta-title {
    font-size: 1.5em;
  }
}