.page-news__hero-section {
  padding-top: 10px;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #B71C1C; /* Background color from custom palette */
}

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

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

.page-news__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  color: #FFF5E1; /* Text Main color from custom palette */
}

.page-news__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #FFF5E1; /* Text Main color from custom palette */
}

.page-news__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-news__section-title {
  font-size: 2.5em;
  color: #C91F17; /* Main color */
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
}

.page-news__section-description {
  font-size: 1.1em;
  color: #333333;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-news__featured-news, .page-news__all-articles, .page-news__faq-section {
  padding: 60px 0;
  background: #ffffff; /* Default light background */
  color: #333333; /* Default dark text */
}

.page-news__dark-section {
  background: #B71C1C; /* Background color from custom palette */
  color: #FFF5E1; /* Text Main color from custom palette */
}

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

.page-news__news-card {
  background: #D32F2F; /* Card BG color from custom palette */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  color: #FFF5E1; /* Text Main color from custom palette */
}

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

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

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

.page-news__card-title a:hover {
  color: #FFCC66; /* Glow color from custom palette for hover */
}

.page-news__card-meta {
  font-size: 0.9em;
  color: #F4D34D; /* Gold color from custom palette */
  margin-bottom: 15px;
}

.page-news__card-excerpt {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news__card-link {
  display: inline-block;
  background: #F4D34D; /* Gold color from custom palette */
  color: #7A0E0E; /* Deep Red color from custom palette */
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease;
  align-self: flex-start;
}

.page-news__card-link:hover {
  background: #FFCC66; /* Glow color from custom palette */
  color: #C91F17; /* Main color */
}

.page-news__all-articles .page-news__section-title {
  margin-top: 0;
}

.page-news__news-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.page-news__article-item {
  display: flex;
  background: #D32F2F; /* Card BG color from custom palette */
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  color: #FFF5E1; /* Text Main color from custom palette */
}

.page-news__article-image {
  width: 200px;
  height: 150px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

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

.page-news__article-title {
  font-size: 1.2em;
  margin-bottom: 8px;
  font-weight: bold;
}

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

.page-news__article-title a:hover {
  color: #FFCC66; /* Glow color from custom palette for hover */
}

.page-news__article-meta {
  font-size: 0.85em;
  color: #F4D34D; /* Gold color from custom palette */
  margin-bottom: 10px;
}

.page-news__article-excerpt {
  font-size: 0.95em;
  line-height: 1.5;
}

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

.page-news__cta-section {
  padding: 80px 20px;
  text-align: center;
}

.page-news__cta-title {
  font-size: 2.2em;
  color: #FFF5E1; /* Text Main color from custom palette */
  margin-bottom: 25px;
  font-weight: bold;
  line-height: 1.3;
}

.page-news__cta-description {
  font-size: 1.1em;
  color: #FFF5E1; /* Text Main color from custom palette */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-news__btn-primary, .page-news__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-news__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button gradient */
  color: #7A0E0E; /* Deep Red color from custom palette */
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-news__btn-primary:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-news__btn-secondary {
  background: transparent;
  color: #F4D34D; /* Gold color from custom palette */
  border: 2px solid #F4D34D; /* Border color from custom palette */
}

.page-news__btn-secondary:hover {
  background: #F4D34D; /* Gold color from custom palette */
  color: #7A0E0E; /* Deep Red color from custom palette */
}

.page-news__faq-section {
  padding: 60px 0;
}

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

.page-news__faq-item {
  background: #D32F2F; /* Card BG color from custom palette */
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  color: #FFF5E1; /* Text Main color from custom palette */
}

.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  color: #FFF5E1; /* Text Main color from custom palette */
  list-style: none;
}

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

.page-news__faq-question:hover {
  background: #7A0E0E; /* Deep Red color from custom palette for hover */
}

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

.page-news__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #FFF5E1; /* Text Main color from custom palette */
}

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

.page-news__faq-answer a {
  color: #F4D34D; /* Gold color from custom palette */
  text-decoration: underline;
}

.page-news__faq-answer a:hover {
  color: #FFCC66; /* Glow color from custom palette for hover */
}

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

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-news__hero-section {
    padding-top: 10px !important;
  }

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

  .page-news__main-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-news__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .page-news__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
  }

  .page-news__btn-primary,
  .page-news__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

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

  .page-news__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-news__container {
    padding: 30px 15px;
  }

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

  .page-news__news-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

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

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

  .page-news__card-meta {
    font-size: 0.8em;
  }

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

  .page-news__article-item {
    flex-direction: column;
  }

  .page-news__article-image {
    width: 100%;
    height: 180px;
  }

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

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

  .page-news__article-meta {
    font-size: 0.8em;
  }

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

  .page-news__view-more-container {
    margin-top: 30px;
  }

  .page-news__cta-section {
    padding: 50px 15px;
  }

  .page-news__cta-title {
    font-size: 1.6em;
    margin-bottom: 20px;
  }

  .page-news__cta-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-news__faq-item {
    margin-bottom: 10px;
  }

  .page-news__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

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

  /* Force responsive images and containers */
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

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

  .page-news__hero-cta-buttons,
  .page-news__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    flex-direction: column !important;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-news__btn-primary, .page-news__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .page-news__main-title {
    font-size: 2.8em;
  }

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

  .page-news__news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-news__article-item {
    flex-direction: row;
  }

  .page-news__article-image {
    width: 180px;
    height: 135px;
  }

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