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

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

/* Hero Section */
.page-news__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 40px;
}

.page-news__hero-image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  margin-bottom: 30px;
}

.page-news__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Default for desktop */
  border-radius: 8px;
}

.page-news__hero-content {
  max-width: 900px;
  margin-top: 20px;
  padding: 0 15px;
}

.page-news__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #FFB04D; /* Glow */
}

.page-news__description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #FFF3E6;
}

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

.page-news__btn-primary,
.page-news__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  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, #FFA53A 0%, #D96800 100%); /* Button color */
  color: #FFF3E6;
  border: none;
}

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

.page-news__btn-secondary {
  background: #17191F; /* Card BG */
  color: #FFA53A; /* Accent */
  border: 2px solid #A84F0C; /* Border */
}

.page-news__btn-secondary:hover {
  background: #2a2d36;
  color: #FFB04D;
  border-color: #FFB04D;
  transform: translateY(-2px);
}

/* Articles Section */
.page-news__articles-section {
  padding: 60px 0;
  background-color: #0D0E12; /* Background */
}

.page-news__section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  color: #FF8C1A; /* Main */
}

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

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

.page-news__article-card {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-news__article-image-wrapper {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  overflow: hidden;
}

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

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

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

.page-news__article-title a {
  color: #FFB04D; /* Glow */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__article-title a:hover {
  color: #FFA53A;
}

.page-news__article-meta {
  font-size: 0.9rem;
  color: #A84F0C; /* Border color for subtle text */
  margin-bottom: 15px;
}

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

.page-news__read-more-btn {
  display: inline-block;
  background-color: #D96800; /* Deep Orange */
  color: #FFF3E6;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.page-news__read-more-btn:hover {
  background-color: #FFA53A;
}

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

.page-news__view-all-btn {
  display: inline-block;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button color */
  color: #FFF3E6;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.page-news__view-all-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Deep Dive Section */
.page-news__deep-dive-section {
  padding: 60px 0;
  background-color: #17191F; /* Card BG */
  color: #FFF3E6;
}

.page-news__deep-dive-section .page-news__section-title,
.page-news__deep-dive-section .page-news__section-subtitle {
  color: #FFB04D; /* Glow */
}

.page-news__article-body {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-news__article-body h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #FFA53A; /* Accent */
}

.page-news__article-body p {
  margin-bottom: 1.2em;
}

.page-news__article-body ul {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-news__article-body li {
  margin-bottom: 0.5em;
}

.page-news__article-body a {
  color: #FFB04D;
  text-decoration: underline;
}

.page-news__article-body a:hover {
  color: #FFA53A;
}

.page-news__article-figure {
  margin: 30px 0;
  text-align: center;
}

.page-news__article-figure img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: block;
  margin: 0 auto;
}

.page-news__article-figure figcaption {
  font-size: 0.9rem;
  color: #A84F0C;
  margin-top: 10px;
}

/* CTA Section */
.page-news__cta-section {
  padding: 60px 0;
  background-color: #0D0E12; /* Background */
  text-align: center;
}

.page-news__cta-section .page-news__section-title {
  color: #FF8C1A; /* Main */
}

/* FAQ Section */
details.page-news__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #A84F0C; /* Border */
  overflow: hidden;
  background: #17191F; /* Card BG */
}

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: #FFF3E6;
}

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: #2a2d36;
}

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

.page-news__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFA53A;
  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: #0D0E12; /* Background */
  border-radius: 0 0 8px 8px;
  color: #FFF3E6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-news__container {
    padding: 20px;
  }
  .page-news__hero-content {
    max-width: 700px;
  }
  .page-news__main-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
  }
  .page-news__description {
    font-size: 1rem;
  }
  .page-news__section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }
  .page-news__article-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 849px) {
  .page-news__hero-image {
    object-fit: contain !important; /* Prevent cropping on smaller screens */
    aspect-ratio: unset !important; /* Allow natural aspect ratio */
    width: 100%;
    height: auto;
  }
}

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

  .page-news__hero-section {
    padding-top: 10px !important; /* Ensure small top padding */
    padding-bottom: 30px !important;
  }

  .page-news__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-news__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-news__hero-content {
    padding: 0 10px;
  }

  .page-news__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem) !important;
    margin-bottom: 10px;
  }

  .page-news__description {
    font-size: 0.95rem !important;
    margin-bottom: 20px;
  }

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

  .page-news__btn-primary,
  .page-news__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1rem !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-news__articles-section {
    padding: 40px 0 !important;
  }

  .page-news__section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem) !important;
    margin-bottom: 10px;
  }

  .page-news__section-subtitle {
    font-size: 0.9rem !important;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .page-news__articles-grid {
    grid-template-columns: 1fr !important; /* Single column on mobile */
    gap: 20px !important;
  }

  .page-news__article-card {
    margin-bottom: 0 !important;
  }

  .page-news__article-image-wrapper {
    height: 180px !important;
  }

  .page-news__article-title {
    font-size: 1.15rem !important;
  }

  .page-news__article-excerpt {
    font-size: 0.9rem !important;
  }

  .page-news__read-more-btn {
    padding: 8px 15px !important;
    font-size: 0.9rem !important;
  }

  .page-news__view-all-wrapper {
    margin-top: 30px !important;
  }

  .page-news__view-all-btn {
    padding: 12px 25px !important;
    font-size: 1rem !important;
  }

  .page-news__deep-dive-section {
    padding: 40px 0 !important;
  }

  .page-news__article-body {
    font-size: 1rem !important;
    padding: 0 10px;
  }

  .page-news__article-body h3 {
    font-size: 1.5rem !important;
    margin-top: 30px !important;
    margin-bottom: 15px !important;
  }

  .page-news__article-figure {
    margin: 20px 0 !important;
  }

  .page-news__article-figure img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  details.page-news__faq-item summary.page-news__faq-question {
    padding: 15px !important;
  }

  .page-news__faq-qtext {
    font-size: 1rem !important;
  }

  .page-news__faq-toggle {
    font-size: 20px !important;
    width: 24px !important;
    margin-left: 10px !important;
  }

  details.page-news__faq-item .page-news__faq-answer {
    padding: 0 15px 15px !important;
  }

  /* Ensure general images and containers are responsive */
  .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;
  }
}