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

.page-news__hero-section {
  padding-top: 10px; /* Adhering to the 8-16px rule for first section */
  padding-bottom: 40px;
  background-color: #140C0C; /* Background */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-news__hero-image-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 20px;
}
.page-news__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}
.page-news__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-news__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* H1 font size rule */
  font-weight: 700;
  line-height: 1.2;
  color: #FFF1E8; /* Text Main */
  margin-bottom: 15px;
}
.page-news__hero-description {
  font-size: 1.1rem;
  color: rgba(255, 241, 232, 0.8); /* Lighter version of Text Main */
  margin-bottom: 30px;
}
.page-news__hero-cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button color */
  color: #FFF1E8; /* Text Main */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  max-width: 100%; /* Button responsive rule */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}
.page-news__hero-cta-button:hover {
  background: linear-gradient(180deg, #D86A14 0%, #FFB04A 100%);
}

/* General Section Styles */
.page-news__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  background-color: #140C0C; /* Background */
  color: #FFF1E8; /* Text Main */
}
.page-news__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #F3C54D; /* Gold */
  text-align: center;
  margin-bottom: 40px;
}
.page-news__section-subtitle {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #E53030; /* Auxiliary color */
  margin-bottom: 20px;
  text-align: left;
}
.page-news__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.page-news__article-card {
  flex: 1 1 calc(33% - 20px); /* 3 cards per row */
  background-color: #2A1212; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  color: #FFF1E8; /* Text Main */
  border: 1px solid #6A1E1E; /* Border color */
}
.page-news__article-card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}
.page-news__article-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.page-news__article-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #F3C54D; /* Gold */
  margin-bottom: 10px;
  line-height: 1.4;
}
.page-news__article-card-title a {
  color: #F3C54D; /* Gold */
  text-decoration: none;
}
.page-news__article-card-title a:hover {
  text-decoration: underline;
}
.page-news__article-card-meta {
  font-size: 0.9rem;
  color: rgba(255, 241, 232, 0.6); /* Lighter Text Main */
  margin-bottom: 15px;
}
.page-news__article-card-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #FFF1E8; /* Text Main */
  margin-bottom: 20px;
  flex-grow: 1;
}
.page-news__read-more {
  display: inline-block;
  color: #E53030; /* Auxiliary color */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.page-news__read-more:hover {
  color: #FFB04A; /* Gold hover */
}

/* Content Text Blocks */
.page-news__text-block {
  margin-bottom: 30px;
  line-height: 1.7;
  color: #FFF1E8; /* Text Main */
}
.page-news__text-block h3 {
  color: #F3C54D; /* Gold */
  font-size: 1.6rem;
  margin-top: 30px;
  margin-bottom: 15px;
}
.page-news__text-block h4 {
  color: #E53030; /* Auxiliary color */
  font-size: 1.3rem;
  margin-top: 25px;
  margin-bottom: 10px;
}
.page-news__text-block p {
  margin-bottom: 15px;
}
.page-news__text-block ul,
.page-news__text-block ol {
  list-style-position: inside;
  margin-left: 0;
  padding-left: 20px;
  margin-bottom: 15px;
}
.page-news__text-block ul {
  list-style-type: disc;
}
.page-news__text-block ol {
  list-style-type: decimal;
}
.page-news__text-block li {
  margin-bottom: 8px;
}
.page-news__image-right {
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.page-news__image-left {
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Call to Action Section */
.page-news__cta-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #2A1212; /* Card BG */
  color: #FFF1E8; /* Text Main */
  border-top: 1px solid #6A1E1E; /* Border color */
}
.page-news__cta-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #F3C54D; /* Gold */
  margin-bottom: 20px;
}
.page-news__cta-description {
  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; /* Ensure wrapping on smaller screens */
  width: 100%; /* Ensure container takes full width */
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
.page-news__cta-button-primary {
  display: inline-block;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button color */
  color: #FFF1E8; /* Text Main */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  max-width: 100%; /* Button responsive rule */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}
.page-news__cta-button-primary:hover {
  background: linear-gradient(180deg, #D86A14 0%, #FFB04A 100%);
}
.page-news__cta-button-secondary {
  display: inline-block;
  background: transparent;
  color: #F3C54D; /* Gold */
  border: 2px solid #F3C54D; /* Gold border */
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  max-width: 100%; /* Button responsive rule */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}
.page-news__cta-button-secondary:hover {
  background-color: #F3C54D; /* Gold */
  color: #140C0C; /* Background color */
}

/* FAQ Section */
.page-news__faq-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #140C0C; /* Background */
  color: #FFF1E8; /* Text Main */
}
.page-news__faq-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #F3C54D; /* Gold */
  text-align: center;
  margin-bottom: 40px;
}
.page-news__faq-list {
  max-width: 900px;
  margin: 0 auto;
}
.page-news__faq-item {
  background-color: #2A1212; /* Card BG */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid #6A1E1E; /* Border color */
}
.page-news__faq-item summary {
  list-style: none; /* Hide default marker */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: #F3C54D; /* Gold */
}
.page-news__faq-item summary::-webkit-details-marker {
  display: none; /* Hide for webkit browsers */
}
.page-news__faq-question {
  flex-grow: 1;
}
.page-news__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #E53030; /* Auxiliary color */
}
.page-news__faq-item[open] .page-news__faq-toggle {
  color: #F3C54D; /* Gold */
}
.page-news__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #FFF1E8; /* Text Main */
}

/* Universal image styles for content areas */
.page-news img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

  /* HERO Section */
  .page-news__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-news__hero-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
  .page-news__hero-description {
    font-size: 1rem;
  }
  .page-news__hero-cta-button {
    width: 100% !important;
    padding: 12px 20px !important;
  }

  /* General Section Styles */
  .page-news__section {
    padding: 40px 15px;
  }
  .page-news__section-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
    margin-bottom: 30px;
  }
  .page-news__section-subtitle {
    font-size: clamp(1.3rem, 6vw, 1.6rem);
    margin-bottom: 15px;
  }
  .page-news__content-wrapper {
    flex-direction: column !important;
    gap: 20px;
  }
  .page-news__article-card {
    flex: 1 1 100% !important;
  }
  .page-news__article-card-image {
    height: 200px !important;
  }
  .page-news__article-card-content {
    padding: 20px;
  }
  .page-news__article-card-title {
    font-size: 1.2rem;
  }
  .page-news__article-card-description {
    font-size: 0.95rem;
  }

  /* Content Text Blocks */
  .page-news__text-block {
    padding: 0 15px;
  }
  .page-news__text-block h3 {
    font-size: 1.4rem;
  }
  .page-news__text-block h4 {
    font-size: 1.1rem;
  }

  /* CTA Section */
  .page-news__cta-section {
    padding: 40px 15px;
  }
  .page-news__cta-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }
  .page-news__cta-description {
    font-size: 1rem;
  }
  .page-news__cta-buttons {
    flex-direction: column !important;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-news__cta-button-primary,
  .page-news__cta-button-secondary {
    width: 100% !important;
    padding: 12px 20px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* FAQ Section */
  .page-news__faq-section {
    padding: 40px 15px;
  }
  .page-news__faq-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }
  .page-news__faq-item summary {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .page-news__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95rem;
  }

  /* Universal image and container responsive styles */
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-news__section,
  .page-news__card,
  .page-news__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}