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

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

.page-news__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, not var(--header-offset) */
  margin-bottom: 40px;
  overflow: hidden;
  border-radius: 8px;
}

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

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

.page-news__hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  color: #FFF5E1;
  text-align: center;
}

.page-news__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #FFCC66; /* Glow for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-news__hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-news__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Custom Button Color */
  color: #7A0E0E; /* Deep Red for text on gold button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-news__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-news__cta-button--small {
  padding: 10px 20px;
  font-size: 1rem;
}

.page-news__section {
  padding: 40px 0;
  margin-bottom: 30px;
  border-radius: 8px;
  background: #D32F2F; /* Custom Card BG */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-news__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #F4D34D; /* Custom Gold for titles */
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-news__paragraph {
  font-size: 1.1rem;
  color: #FFF5E1; /* Custom Text Main */
  margin-bottom: 20px;
  text-align: justify;
}

.page-news__articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.page-news__article-card {
  background: #C91F17; /* Main Color for card background */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

.page-news__card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #F4D34D; /* Custom Gold */
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-news__card-meta {
  font-size: 0.9rem;
  color: #E53935; /* Accent Color */
  margin-bottom: 15px;
}

.page-news__card-excerpt {
  font-size: 1rem;
  color: #FFF5E1;
  margin-bottom: 20px;
}

.page-news__read-more {
  color: #FFD86A; /* Button-like text color */
  font-weight: 600;
  display: flex;
  align-items: center;
}

.page-news__read-more span {
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}

.page-news__article-card:hover .page-news__read-more span {
  margin-left: 10px;
}

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

.page-news__faq-list {
  margin-top: 30px;
}

details.page-news__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #F2B544; /* Custom Border */
  overflow: hidden;
  background: #C91F17; /* Main Color */
}

details.page-news__faq-item summary.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFF5E1; /* Custom Text Main */
}

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

details.page-news__faq-item summary.page-news__faq-question:hover {
  background: #E53935; /* Accent Color on hover */
}

.page-news__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F4D34D; /* Custom Gold */
}

.page-news__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD86A; /* Button color for toggle */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-news__faq-item .page-news__faq-answer {
  padding: 0 20px 20px;
  background: #D32F2F; /* Custom Card BG */
  border-radius: 0 0 5px 5px;
  color: #FFF5E1; /* Custom Text Main */
}

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

/* --- Mobile Responsive Styles --- */
@media (max-width: 1024px) {
  .page-news__main-title {
    font-size: clamp(2rem, 4vw, 3rem);
  }
  .page-news__articles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .page-news__section-title {
    font-size: 2rem;
  }
  .page-news__paragraph {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .page-news__container {
    padding: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* HERO Section */
  .page-news__hero-section {
    padding-top: 10px; /* Specific small padding */
    margin-bottom: 20px;
  }
  .page-news__hero-image {
    height: 300px;
  }
  .page-news__hero-image img {
    object-fit: contain !important; /* Ensure image is not cropped */
    aspect-ratio: unset !important;
    height: auto !important;
  }
  .page-news__hero-content {
    padding: 20px 15px;
  }
  .page-news__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 10px;
  }
  .page-news__hero-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  .page-news__cta-button {
    padding: 12px 20px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Article Grid (Product Grid equivalent for news) */
  .page-news__articles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    overflow-x: hidden;
  }
  .page-news__article-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-news__article-card img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Decorative H1 + Long SEO Text (Section Titles) */
  .page-news__section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 10px;
  }
  .page-news__paragraph {
    font-size: 0.95rem;
    text-align: left;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 10px;
  }

  /* General Images and Containers */
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !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;
  }

  /* Buttons and Button Containers */
  .page-news__cta-button, .page-news__cta-button--small {
    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__view-all-button-container, .page-news__button-group, .page-news__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  /* FAQ Section */
  details.page-news__faq-item summary.page-news__faq-question {
    padding: 15px;
  }
  .page-news__faq-qtext {
    font-size: 1rem;
  }
  .page-news__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }
  details.page-news__faq-item .page-news__faq-answer {
    padding: 0 15px 15px;
  }
}