.page-news {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF5E1; /* Default text color for dark sections */
  background-color: #B71C1C; /* Default background for the page, from custom colors */
}

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

/* HERO Section */
.page-news__hero-section {
  position: relative;
  text-align: center;
  padding: 10px 0 0;
  overflow: hidden;
  background-color: #7A0E0E; /* Deep Red from custom colors */
}

.page-news__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit height for hero image */
}

.page-news__hero-content {
  padding: 40px 20px;
  background: linear-gradient(180deg, rgba(193, 31, 23, 0.8) 0%, rgba(229, 57, 53, 0.8) 100%); /* Brand colors with opacity */
  color: #FFF5E1; /* Text Main from custom colors */
}

.page-news__main-title {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFF5E1; /* Text Main from custom colors */
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Buttons */
.page-news__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button gradient from custom colors */
  color: #7A0E0E; /* Deep Red for text on gold button for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-news__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.page-news__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background-color: #C91F17; /* Primary color */
  color: #FFF5E1; /* Text Main from custom colors */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: 2px solid #F2B544; /* Border from custom colors */
  cursor: pointer;
}

.page-news__btn-secondary:hover {
  background-color: #E53935; /* Secondary color */
  transform: translateY(-2px);
}

.page-news__btn-large {
  padding: 15px 30px;
  font-size: 1.1em;
}

/* Section Titles and Descriptions */
.page-news__section-title {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
}

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

/* Latest News Section */
.page-news__latest-news {
  padding: 60px 0;
  background-color: #ffffff; /* Light background for contrast */
  color: #333333; /* Dark text for contrast */
}

.page-news__latest-news .page-news__section-title,
.page-news__latest-news .page-news__section-description {
  color: #333333; /* Dark text for light background */
}

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

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

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

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

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

.page-news__card-title {
  font-size: 1.3em;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-news__card-title a {
  color: #F4D34D; /* Gold from custom colors for link on dark card */
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-news__card-meta {
  font-size: 0.9em;
  color: rgba(255, 245, 225, 0.7); /* Lighter Text Main */
  margin-bottom: 15px;
}

.page-news__card-text {
  font-size: 1em;
  margin-bottom: 20px;
}

.page-news__read-more {
  display: inline-block;
  color: #FFD86A; /* Gold color for read more link */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-news__read-more:hover {
  color: #E6B800; /* Darker gold on hover */
}

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

/* Promotions Section */
.page-news__promotions-section {
  padding: 60px 0;
  background-color: #B71C1C; /* Background from custom colors */
  color: #FFF5E1; /* Text Main for dark background */
}

.page-news__promotions-section .page-news__section-title,
.page-news__promotions-section .page-news__section-description {
  color: #FFF5E1; /* Text Main for dark background */
}

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

.page-news__promo-card {
  background-color: #D32F2F; /* Card BG from custom colors */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #FFF5E1; /* Text Main for card content */
}

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

/* Industry Insights Section */
.page-news__industry-insights {
  padding: 60px 0;
  background-color: #ffffff; /* Light background for contrast */
  color: #333333; /* Dark text for contrast */
}

.page-news__industry-insights .page-news__section-title,
.page-news__industry-insights .page-news__section-description {
  color: #333333; /* Dark text for light background */
}

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

.page-news__insight-card {
  background-color: #D32F2F; /* Card BG from custom colors */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #FFF5E1; /* Text Main for card content */
}

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

/* FAQ Section */
.page-news__faq-section {
  padding: 60px 0;
  background-color: #7A0E0E; /* Deep Red from custom colors */
  color: #FFF5E1; /* Text Main for dark background */
}

.page-news__faq-section .page-news__section-title,
.page-news__faq-section .page-news__section-description {
  color: #FFF5E1; /* Text Main for dark background */
}

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

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

.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: #F4D34D; /* Gold from custom colors for question */
  background-color: #C91F17; /* Primary color */
  border-bottom: 1px solid rgba(242, 181, 68, 0.3); /* Lighter border from custom colors */
}

.page-news__faq-question:hover {
  background-color: #E53935; /* Secondary color on hover */
}

.page-news__faq-item[open] .page-news__faq-question {
  border-bottom: 1px solid rgba(242, 181, 68, 0.5);
}

.page-news__faq-qtext {
  flex-grow: 1;
  color: #F4D34D;
}

.page-news__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #FFD86A; /* Gold color for toggle */
}

.page-news__faq-item[open] .page-news__faq-toggle {
  content: '−';
  color: #FFD86A;
}

.page-news__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: #FFF5E1; /* Text Main for answer content */
  line-height: 1.7;
}

.page-news__faq-answer p {
  margin-bottom: 10px;
  color: #FFF5E1;
}

.page-news__faq-answer a {
  color: #FFD86A; /* Gold color for links in answer */
  text-decoration: underline;
}

.page-news__faq-answer a:hover {
  color: #E6B800;
}

/* CTA Banner */
.page-news__cta-banner {
  padding: 60px 0;
  text-align: center;
  background: linear-gradient(90deg, #C91F17 0%, #E53935 100%); /* Brand colors as gradient */
  color: #FFF5E1; /* Text Main for dark background */
}

.page-news__cta-banner .page-news__cta-title {
  font-size: 2.2em;
  margin-bottom: 15px;
  color: #FFF5E1;
}

.page-news__cta-banner .page-news__cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF5E1;
}

/* General Image and Container Responsive Styles */
.page-news img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-news__main-title {
    font-size: 2em;
  }

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

  .page-news__news-grid,
  .page-news__promo-items,
  .page-news__insight-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

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

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

@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-news__hero-section {
    padding-top: 10px !important; /* Top padding for hero section on mobile */
    padding-bottom: 20px;
  }

  .page-news__hero-image {
    max-height: 400px;
  }

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

  .page-news__main-title {
    font-size: 1.8em !important;
    line-height: 1.3;
  }

  .page-news__hero-description {
    font-size: 1em;
  }

  /* 其他内容模块 */
  .page-news__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

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

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

  /* 产品展示图区域 (News Grid, Promo Items, Insight Grid) */
  .page-news__news-grid,
  .page-news__promo-items,
  .page-news__insight-grid {
    grid-template-columns: 1fr !important; /* Single column layout */
    gap: 20px;
  }

  .page-news__news-card,
  .page-news__promo-card,
  .page-news__insight-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

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

  /* 通用图片与容器 */
  .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;
  }

  /* 按钮与按钮容器 */
  .page-news__cta-button,
  .page-news__btn-primary,
  .page-news__btn-secondary,
  .page-news a[class*="button"],
  .page-news a[class*="btn"] {
    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;
    margin-bottom: 10px; /* Add spacing between stacked buttons */
  }

  .page-news__cta-buttons,
  .page-news__button-group,
  .page-news__btn-container,
  .page-news__view-all-button-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important; /* Ensure buttons wrap */
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px; /* Space between buttons */
    display: flex; /* Ensure flex context for column direction */
  }

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

  .page-news__faq-answer {
    padding: 10px 20px 15px;
  }

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

  .page-news__cta-banner .page-news__cta-description {
    font-size: 0.95em;
  }
}