.page-news {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF1E8; /* Main text color for dark background */
  background-color: #140C0C; /* Overall page background */
}

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

.page-news__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  color: #FFF1E8;
  overflow: hidden;
}

.page-news__hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.page-news__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-news__hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  background: linear-gradient(0deg, #140C0C 0%, rgba(20, 12, 12, 0.8) 50%, rgba(20, 12, 12, 0) 100%); /* Fading background to ensure text readability */
  margin-top: -15%; /* Pull content up slightly over the image, but not covering it */
}

.page-news__main-title {
  font-size: 2.8em;
  font-weight: bold;
  color: #F3C54D; /* Gold for main title */
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-news__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #FFF1E8;
}

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

.page-news__btn-primary,
.page-news__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-news__btn-primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #ffffff;
  border: none;
}

.page-news__btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.page-news__btn-secondary {
  background: #2A1212;
  color: #F3C54D;
  border: 2px solid #6A1E1E;
}

.page-news__btn-secondary:hover {
  transform: translateY(-2px);
  background-color: #3f1a1a;
}

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

.page-news__section-title {
  font-size: 2.2em;
  color: #F3C54D;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-news__section-description {
  font-size: 1.1em;
  color: #FFF1E8;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

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

.page-news__article-card {
  background-color: #2A1212;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #6A1E1E;
}

.page-news__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-news__article-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

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

.page-news__article-content {
  padding: 20px;
}

.page-news__article-title {
  font-size: 1.4em;
  color: #F3C54D;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-news__article-meta {
  font-size: 0.9em;
  color: #999;
  margin-bottom: 10px;
}

.page-news__article-excerpt {
  font-size: 1em;
  color: #FFF1E8;
  line-height: 1.5;
}

.page-news__view-all-button-container {
  margin-top: 40px;
}

.page-news__categories {
  background-color: #1A0F0F;
}

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

.page-news__category-card {
  background-color: #2A1212;
  border-radius: 10px;
  padding: 30px;
  text-decoration: none;
  color: #FFF1E8;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid #6A1E1E;
}

.page-news__category-card:hover {
  transform: translateY(-5px);
  background-color: #3f1a1a;
}

.page-news__category-title {
  font-size: 1.6em;
  color: #F3C54D;
  margin-bottom: 10px;
}

.page-news__category-description {
  font-size: 1em;
  color: #FFF1E8;
}

.page-news__featured-event {
  background-color: #140C0C;
}

.page-news__event-card {
  background-color: #2A1212;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  margin-top: 40px;
  border: 1px solid #6A1E1E;
}

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

.page-news__event-content {
  width: 50%;
  padding: 30px;
}

.page-news__event-title {
  font-size: 1.8em;
  color: #F3C54D;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-news__event-meta {
  font-size: 0.9em;
  color: #999;
  margin-bottom: 15px;
}

.page-news__event-description {
  font-size: 1.1em;
  color: #FFF1E8;
  margin-bottom: 25px;
  line-height: 1.5;
}

.page-news__about-us-brief {
  background-color: #C61F1F; /* Deep Red for this section */
  color: #ffffff;
  padding: 80px 0;
}

.page-news__about-us-brief .page-news__section-title,
.page-news__about-us-brief .page-news__section-description {
  color: #ffffff;
}

.page-news__about-us-brief .page-news__btn-secondary {
  background: #ffffff;
  color: #C61F1F;
  border: 2px solid #ffffff;
}

.page-news__about-us-brief .page-news__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #A01A1A;
}

.page-news__faq-section {
  padding: 60px 0;
  background-color: #1A0F0F;
}

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

.page-news__faq-item {
  background-color: #2A1212;
  border: 1px solid #6A1E1E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F3C54D;
  cursor: pointer;
  list-style: none;
}

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

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

.page-news__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  color: #FFF1E8;
  line-height: 1.6;
}

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

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

.page-news__cta-bottom {
  padding: 80px 0;
  background-color: #140C0C;
}

.page-news__cta-bottom .page-news__section-title {
  color: #F3C54D;
}

.page-news__cta-bottom .page-news__section-description {
  color: #FFF1E8;
}

/* General image styling to ensure responsiveness */
.page-news img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
  .page-news__main-title {
    font-size: 2.5em;
  }
  .page-news__event-card {
    flex-direction: column;
  }
  .page-news__event-image,
  .page-news__event-content {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-news {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-news__hero-section {
    padding-top: 10px !important; /* Small top padding for mobile */
  }
  .page-news__hero-content {
    padding: 30px 15px;
    margin-top: -20%; /* Adjust for smaller screens */
  }
  .page-news__main-title {
    font-size: 2em !important;
    line-height: 1.3;
  }
  .page-news__hero-description {
    font-size: 1em;
  }
  .page-news__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-news__btn-primary,
  .page-news__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-news__section {
    padding: 40px 0;
  }
  .page-news__container {
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-news__section-title {
    font-size: 1.8em;
  }
  .page-news__section-description {
    font-size: 0.95em;
  }
  .page-news__articles-grid,
  .page-news__category-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-news__article-card {
    margin-left: 0;
    margin-right: 0;
  }
  .page-news__article-image {
    height: 180px;
  }
  .page-news__article-title {
    font-size: 1.2em;
  }
  .page-news__event-card {
    flex-direction: column;
  }
  .page-news__event-image,
  .page-news__event-content {
    width: 100% !important;
  }
  .page-news__event-content {
    padding: 20px;
  }
  .page-news__event-title {
    font-size: 1.5em;
  }
  .page-news__about-us-brief {
    padding: 60px 0;
  }
  .page-news__faq-list {
    margin-left: 0;
    margin-right: 0;
  }
  .page-news__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-news__faq-answer {
    padding: 0 15px 15px 15px;
  }
  /* Universal image responsive styles for mobile */
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-news__image-container,
  .page-news__hero-image-wrapper,
  .page-news__article-image,
  .page-news__event-image {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}