.page-news {
  background-color: #08160F; /* Nền tối theo màu tùy chỉnh 'Background' */
  color: #F2FFF6; /* Màu chữ chính theo màu tùy chỉnh 'Text Main' */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-news__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Nhỏ hơn so với var(--header-offset) */
  margin-bottom: 40px;
}

.page-news__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
}

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

.page-news__hero-content {
  max-width: 1200px;
  padding: 20px;
  text-align: center;
  background-color: #11271B; /* Card B G */
  color: #F2FFF6; /* Text Main */
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

.page-news__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-news__intro-text {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #A7D9B8; /* Text Secondary */
}

.page-news__cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-news__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-news__section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background-color: #11271B; /* Card B G */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

.page-news__section-title {
  color: #F2C14E; /* Gold */
  font-size: 2.2em;
  text-align: center;
  margin-bottom: 30px;
  border-bottom: 2px solid #1E3A2A; /* Divider */
  padding-bottom: 15px;
}

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

.page-news__news-card {
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
}

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

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

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

.page-news__card-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #57E38D; /* Glow */
}

.page-news__card-title a {
  color: #57E38D; /* Glow */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__card-title a:hover {
  color: #F2C14E; /* Gold */
}

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

.page-news__card-excerpt {
  font-size: 1em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news__read-more-button {
  display: inline-block;
  padding: 8px 15px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.page-news__read-more-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

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

.page-news__view-all-button {
  display: inline-block;
  padding: 12px 30px;
  background: #F2C14E; /* Gold */
  color: #08160F; /* Background */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-news__view-all-button:hover {
  background: #E0B03C;
}

.page-news__sub-title {
  color: #57E38D; /* Glow */
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-news__content-area p {
  margin-bottom: 1em;
  color: #F2FFF6; /* Text Main */
}

.page-news__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-news__benefits-list li {
  background-color: #0A4B2C; /* Deep Green */
  margin-bottom: 10px;
  padding: 15px;
  border-radius: 5px;
  border-left: 5px solid #57E38D; /* Glow */
  color: #F2FFF6; /* Text Main */
}

.page-news__benefits-list li strong {
  color: #F2C14E; /* Gold */
}

.page-news__faq-section {
  margin-top: 60px;
}

.page-news__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  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: 15px 20px;
  cursor: pointer;
  background-color: #11A84E; /* Main color */
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  font-size: 1.1em;
  list-style: none;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Safari */
  -khtml-user-select: none;    /* Konqueror HTML */
  -moz-user-select: none;      /* Old versions of Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;           /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

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

.page-news__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #F2C14E; /* Gold */
}

.page-news__faq-item[open] .page-news__faq-toggle {
  transform: rotate(45deg);
}

.page-news__faq-answer {
  padding: 15px 20px;
  background-color: #11271B; /* Card B G */
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
}

.page-news__cta-section {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 60px;
}

.page-news__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #F2FFF6; /* Text Main */
}

.page-news__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping for multiple buttons */
}

.page-news__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  border: 2px solid transparent;
}

.page-news__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-news__btn-secondary {
  background: #F2C14E; /* Gold */
  color: #08160F; /* Background */
  border: 2px solid #F2C14E;
}

.page-news__btn-secondary:hover {
  background: #E0B03C;
  border-color: #E0B03C;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-news__hero-content {
    padding: 15px;
  }

  .page-news__main-title {
    font-size: 2.5em;
  }

  .page-news__intro-text {
    font-size: 1em;
  }

  .page-news__section-title {
    font-size: 2em;
  }

  .page-news__sub-title {
    font-size: 1.6em;
  }

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

  .page-news__card-title {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-news__hero-section {
    padding: 5px 10px;
  }

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

  .page-news__main-title {
    font-size: 2em;
    margin-bottom: 10px;
  }

  .page-news__intro-text {
    font-size: 0.95em;
    margin-bottom: 20px;
  }

  .page-news__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-news__section {
    margin: 30px auto;
    padding: 15px;
  }

  .page-news__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-news__sub-title {
    font-size: 1.4em;
  }

  .page-news__news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-news__card-image {
    height: 180px;
  }

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

  .page-news__card-excerpt {
    font-size: 0.9em;
  }

  .page-news__read-more-button {
    padding: 6px 12px;
    font-size: 0.85em;
  }

  .page-news__view-all-button {
    padding: 10px 25px;
    font-size: 0.95em;
  }

  .page-news__benefits-list li {
    padding: 12px;
    font-size: 0.95em;
  }

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

  .page-news__faq-answer {
    font-size: 0.95em;
    padding: 12px 15px;
  }

  .page-news__cta-description {
    font-size: 1.1em;
  }

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

  /* Mobile responsive for images, videos, and buttons */
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-news__section,
  .page-news__hero-content,
  .page-news__news-card,
  .page-news__faq-item,
  .page-news__cta-section,
  .page-news__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-news__cta-button,
  .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__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
}