/* Base Styles */
.page-news {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
}

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

.page-news__dark-section {
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
  color: #ffffff;
}

.page-news__section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #1F2D3D; /* Text Main */
}

.page-news__dark-section .page-news__section-title,
.page-news__dark-section .page-news__section-description {
  color: #ffffff;
}

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

/* Buttons */
.page-news__btn-primary,
.page-news__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-news__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-news__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  box-shadow: 0 4px 12px rgba(47, 107, 255, 0.4);
}

.page-news__btn-secondary {
  background: #ffffff;
  color: #2F6BFF;
  border: 2px solid #2F6BFF; /* Border */
}

.page-news__btn-secondary:hover {
  background: #f0f8ff;
  box-shadow: 0 4px 12px rgba(47, 107, 255, 0.2);
}

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

/* Hero Section */
.page-news__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, not --header-offset */
  background-color: #F4F7FB; /* Background */
}

.page-news__hero-image {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 30px;
}

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

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

.page-news__main-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #000000; /* Custom Color_1776249996415 */
}

.page-news__description {
  font-size: 18px;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 30px;
}

/* News Grid */
.page-news__news-grid,
.page-news__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-news__news-card,
.page-news__promotion-card {
  background: #FFFFFF; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF; /* Border */
}

.page-news__news-card:hover,
.page-news__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-news__news-card img,
.page-news__promotion-card img {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

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

.page-news__card-date {
  font-size: 14px;
  color: #666666;
  margin-bottom: 10px;
}

.page-news__card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
}

.page-news__card-title a {
  color: #1F2D3D; /* Text Main */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__card-title a:hover {
  color: #2F6BFF;
}

.page-news__card-excerpt {
  font-size: 15px;
  color: #333333;
  margin-bottom: 20px;
}

.page-news__card-link {
  display: inline-block;
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.page-news__card-link:hover {
  text-decoration: underline;
}

.page-news__button-container {
  text-align: center;
  margin-top: 20px;
}

/* Article Body */
.page-news__in-depth-analysis .page-news__section-title {
  margin-bottom: 40px;
}

.page-news__article-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
  color: #1F2D3D;
}

.page-news__article-body p {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.7;
}

.page-news__article-subtitle {
  font-size: 24px;
  font-weight: 700;
  margin-top: 35px;
  margin-bottom: 20px;
  color: #000000; /* Custom Color_1776249996415 */
}

.page-news__article-list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 17px;
}

.page-news__article-list li {
  margin-bottom: 10px;
}

.page-news__article-figure {
  margin: 30px auto;
  text-align: center;
  max-width: 100%;
}

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

.page-news__article-figure figcaption {
  font-size: 14px;
  color: #666666;
  margin-top: 10px;
}

/* FAQ Section */
.page-news__faq-section .page-news__section-title {
  margin-bottom: 40px;
}

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

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

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

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

.page-news__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #1F2D3D; /* Text Main */
}

.page-news__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #2F6BFF;
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-news__faq-item .page-news__faq-answer {
  padding: 0 25px 20px;
  background: #f9f9f9;
  border-radius: 0 0 8px 8px;
  color: #333333;
}

.page-news__faq-answer p {
  margin-bottom: 0;
  font-size: 16px;
}

/* CTA Bottom Section */
.page-news__cta-bottom-section {
  text-align: center;
  padding: 60px 20px;
}

/* --- Responsive Styles (Desktop First, then Mobile) --- */

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

/* @media (max-width: 1024px) for Tablets */
@media (max-width: 1024px) {
  .page-news__section {
    padding: 30px 15px;
  }

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

  .page-news__main-title {
    font-size: clamp(24px, 5vw, 40px);
  }

  .page-news__description,
  .page-news__section-description {
    font-size: 16px;
  }

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

  .page-news__news-card img,
  .page-news__promotion-card img {
    
  }

  .page-news__card-title {
    font-size: 18px;
  }

  .page-news__article-body p,
  .page-news__article-list li {
    font-size: 16px;
  }

  .page-news__article-subtitle {
    font-size: 22px;
  }

  .page-news__faq-qtext {
    font-size: 16px;
  }

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

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

  .page-news__btn-primary,
  .page-news__btn-secondary {
    padding: 10px 20px;
    font-size: 15px;
  }
}

/* @media (max-width: 768px) for Mobile */
@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-news__hero-section {
    padding-top: 10px;
  }

  .page-news__hero-image {
    max-height: 250px;
    border-radius: 0;
    margin-bottom: 20px;
  }

  .page-news__hero-image img {
    object-fit: contain !important; /* Mobile: object-fit: contain */
    aspect-ratio: unset !important;
    width: 100% !important;
    height: auto !important;
  }

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

  .page-news__main-title {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: 15px;
  }

  .page-news__description {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .page-news__cta-buttons {
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  /* 产品展示图区域 (News/Promotions Grid) */
  .page-news__news-grid,
  .page-news__promotions-grid {
    grid-template-columns: 1fr; /* Single column for news/promo cards */
    gap: 20px;
    overflow-x: hidden; /* Prevent horizontal scroll */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

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

  .page-news__news-card img,
  .page-news__promotion-card img {
    height: 200px;
    width: 100% !important;
    max-width: 100% !important;
  }

  .page-news__card-title {
    font-size: 18px;
  }

  /* 装饰主标题 + 长文 SEO 区 */
  .page-news__section-title {
    font-size: 26px;
    margin-bottom: 15px;
    padding: 0 15px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .page-news__section-description {
    font-size: 15px;
    margin-bottom: 25px;
    padding: 0 15px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .page-news__article-body {
    padding: 0 15px;
    font-size: 15px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .page-news__article-body p,
  .page-news__article-list li {
    font-size: 15px;
  }

  .page-news__article-subtitle {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
  }

  .page-news__article-figure {
    margin: 20px auto;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

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

  /* 通用图片与容器 */
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-news__section,
  .page-news__card,
  .page-news__container,
  .page-news__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* 按钮与按钮容器 */
  .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;
  }

  .page-news__button-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-news__faq-qtext {
    font-size: 15px;
  }

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

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

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