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

/* Hero Section */
.page-news__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 60px;
  padding-top: 10px;
  box-sizing: border-box;
  overflow: hidden;
}

.page-news__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

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

.page-news__hero-content {
  max-width: 900px;
  width: 100%;
  padding: 20px;
  text-align: center;
  margin-top: 30px;
  box-sizing: border-box;
}

.page-news__main-title {
  color: #F2C14E; /* Gold */
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  font-size: clamp(2.2rem, 4vw + 1rem, 3.5rem);
  margin-bottom: 20px;
}

.page-news__description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-news__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
}

.page-news__btn {
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-news__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2E7A4E; /* Border */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-news__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.page-news__btn-secondary {
  background: #11271B; /* Card B G */
  color: #57E38D; /* Glow */
  border: 2px solid #2E7A4E; /* Border */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-news__btn-secondary:hover {
  background: #0A4B2C; /* Deep Green */
  color: #F2C14E; /* Gold */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

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

.page-news__section-title {
  color: #F2C14E; /* Gold */
  font-size: clamp(1.8rem, 3vw + 0.5rem, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.page-news__section-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-news__dark-section {
  background-color: #0A4B2C; /* Deep Green */
  padding-bottom: 60px;
}

/* News Grid */
.page-news__news-grid,
.page-news__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-news__news-card,
.page-news__promo-card {
  background-color: #11271B; /* Card B G */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  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 {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

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

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

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

.page-news__card-title a:hover {
  color: #57E38D; /* Glow */
}

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

.page-news__card-summary {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news__read-more-btn {
  display: inline-block;
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  align-self: flex-start;
}

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

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

.page-news__btn-text {
  background: none;
  border: 2px solid #2E7A4E; /* Border */
  color: #F2FFF6; /* Text Main */
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.page-news__btn-text:hover {
  background-color: #2E7A4E; /* Border */
  color: #F2C14E; /* Gold */
}

/* FAQ Section */
.page-news__faq-section {
  padding-bottom: 60px;
}

.page-news__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-news__faq-item {
  background-color: #11271B; /* Card B G */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  transition: background-color 0.3s ease;
}

.page-news__faq-item[open] .page-news__faq-question,
.page-news__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-news__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

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

/* Remove default details marker */
.page-news__faq-item > summary {
  list-style: none;
}
.page-news__faq-item > summary::-webkit-details-marker {
  display: none;
}

/* CTA Section */
.page-news__cta-section {
  padding-bottom: 60px;
  padding-top: 60px;
  text-align: center;
}

.page-news__cta-container {
  background-color: #11271B; /* Card B G */
  border-radius: 15px;
  padding: 50px 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-news__main-title {
    font-size: clamp(2rem, 5vw + 1rem, 3rem);
  }
  .page-news__section-title {
    font-size: clamp(1.6rem, 4vw + 0.5rem, 2.5rem);
  }
}

@media (max-width: 768px) {
  .page-news {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Images responsive */
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-news__hero-image-wrapper,
  .page-news__container,
  .page-news__news-grid,
  .page-news__promo-grid,
  .page-news__faq-list,
  .page-news__cta-container,
  .page-news__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow: hidden !important;
  }
  
  /* Video section top padding */
  .page-news__hero-section {
    padding-top: 10px !important;
  }

  /* Buttons responsive */
  .page-news__btn,
  .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;
  }

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

  .page-news__hero-content {
    margin-top: 20px;
  }
  .page-news__main-title {
    margin-bottom: 15px;
  }
  .page-news__description {
    margin-bottom: 25px;
  }
  .page-news__section-title {
    padding-top: 40px;
    margin-bottom: 15px;
  }
  .page-news__section-description {
    margin-bottom: 30px;
  }
  .page-news__news-grid,
  .page-news__promo-grid {
    gap: 20px;
  }
  .page-news__card-image {
    height: 180px;
  }
  .page-news__card-content {
    padding: 20px;
  }
  .page-news__card-title {
    font-size: 1.25rem;
  }
  .page-news__faq-question {
    font-size: 1.05rem;
    padding: 18px 20px;
  }
  .page-news__faq-answer {
    padding: 0 20px 18px 20px;
  }
  .page-news__cta-container {
    padding: 40px 20px;
  }
}

/* Ensure no filter on images */
.page-news img {
  filter: none !important;
}

/* Ensure content area images are not too small */
.page-news__news-card .page-news__card-image,
.page-news__promo-card .page-news__card-image {
  min-width: 200px;
  min-height: 200px;
}
.page-news__content-area img,
.page-news__latest-news-section img,
.page-news__promotions-section img {
    min-width: 200px;
    min-height: 200px;
}

/* Desktop video width for flex containers */
.page-news__hero-section .page-news__hero-image-wrapper,
.page-news__hero-section .page-news__hero-content {
  width: 100%;
}