.page-news {
  color: #FFF3E6;
  background-color: #0D0E12;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-news__section {
  padding: 60px 0;
  margin-bottom: 20px;
}

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

.page-news__hero-section {
  padding-top: 10px; /* Consistent with body padding, small top margin for visual balance */
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-news__hero-image {
  width: 100%;
  height: 600px; /* Fixed height for desktop */
  overflow: hidden;
  position: relative;
}

.page-news__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image covers the area */
  display: block;
}

.page-news__hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 15px;
  max-width: 900px;
  margin-top: -100px; /* Pull content up over the image for visual hierarchy */
  background: rgba(13, 14, 18, 0.85); /* Semi-transparent dark background */
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  border: 1px solid #A84F0C;
}

.page-news__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #FFF3E6;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.page-news__hero-description {
  font-size: 1.15rem;
  color: #FFF3E6;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-news__btn-primary:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-news__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  background: #17191F;
  color: #FFA53A;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid #FFA53A;
}

.page-news__btn-secondary:hover {
  background: #FFA53A;
  color: #17191F;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-news__section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #FFF3E6;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

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

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

.page-news__news-card {
  background: #17191F;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #A84F0C;
}

.page-news__news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

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

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

.page-news__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-news__card-title a {
  color: #FFA53A;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-news__card-date {
  font-size: 0.9rem;
  color: #FFF3E6;
  opacity: 0.7;
  margin-bottom: 15px;
}

.page-news__card-description {
  font-size: 1rem;
  color: #FFF3E6;
  margin-bottom: 20px;
  opacity: 0.9;
}

.page-news__read-more {
  color: #FFA53A;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-news__read-more:hover {
  color: #FFF3E6;
  text-decoration: underline;
}

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

.page-news__article-body {
  background: #17191F;
  border-radius: 10px;
  padding: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid #A84F0C;
}

.page-news__featured-article .page-news__section-title {
  margin-bottom: 40px;
}

.page-news__article-content-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.page-news__article-image-wrapper {
  flex: 0 0 45%;
  max-width: 45%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-news__article-figure {
  width: 100%;
  height: auto;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-news__article-text-wrapper {
  flex: 1;
}

.page-news__article-main-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFA53A;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-news__article-main-heading a {
  color: #FFA53A;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__article-main-heading a:hover {
  color: #FFF3E6;
}

.page-news__article-meta {
  font-size: 0.95rem;
  color: #FFF3E6;
  opacity: 0.7;
  margin-bottom: 20px;
}

.page-news__article-paragraph {
  font-size: 1rem;
  color: #FFF3E6;
  margin-bottom: 20px;
  line-height: 1.7;
  opacity: 0.9;
}

.page-news__industry-insights .page-news__paragraph {
  font-size: 1rem;
  color: #FFF3E6;
  margin-bottom: 15px;
  line-height: 1.7;
  opacity: 0.9;
}

.page-news__industry-insights .page-news__cta-container {
  text-align: center;
  margin-top: 40px;
}

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

.page-news__promo-item {
  background: #17191F;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid #A84F0C;
  text-align: center;
}

.page-news__promo-title {
  font-size: 1.5rem;
  color: #FFA53A;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-news__promo-description {
  font-size: 1rem;
  color: #FFF3E6;
  opacity: 0.9;
  line-height: 1.6;
}

.page-news__promotions-events .page-news__cta-container {
  text-align: center;
  margin-top: 50px;
}

details.page-news__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #A84F0C;
  overflow: hidden;
  background: #17191F;
}

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;
}

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: rgba(255, 165, 58, 0.1);
}

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

.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: rgba(255, 255, 255, 0.05);
  border-radius: 0 0 5px 5px;
  color: #FFF3E6;
  line-height: 1.7;
  opacity: 0.9;
}

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

.page-news__faq-answer a {
  color: #FFA53A;
  text-decoration: underline;
}

.page-news__cta-bottom {
  background: linear-gradient(135deg, #0D0E12 0%, #17191F 100%);
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid #A84F0C;
}

.page-news__cta-bottom .page-news__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.page-news__cta-content {
  flex: 1;
  max-width: 600px;
  text-align: left;
}

.page-news__cta-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #FFF3E6;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-news__cta-description {
  font-size: 1.1rem;
  color: #FFF3E6;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-news__cta-buttons {
  display: flex;
  gap: 20px;
}

.page-news__cta-image-wrapper {
  flex: 0 0 40%;
  max-width: 40%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-news__cta-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

/* --- Responsive Styles (max-width: 1024px) --- */
@media (max-width: 1024px) {
  .page-news__hero-image {
    height: 500px;
  }
  .page-news__hero-content {
    margin-top: -80px;
    padding: 30px;
  }
  .page-news__main-title {
    font-size: 2.8rem;
  }
  .page-news__hero-description {
    font-size: 1rem;
  }
  .page-news__section-title {
    font-size: 2.2rem;
  }
  .page-news__article-body {
    padding: 40px;
  }
  .page-news__article-content-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .page-news__article-image-wrapper {
    max-width: 80%;
    margin-bottom: 30px;
  }
  .page-news__article-main-heading {
    font-size: 1.6rem;
  }
  .page-news__cta-bottom .page-news__container {
    flex-direction: column;
    gap: 30px;
  }
  .page-news__cta-content {
    text-align: center;
    max-width: 100%;
  }
  .page-news__cta-buttons {
    justify-content: center;
  }
  .page-news__cta-image-wrapper {
    max-width: 80%;
  }
}

/* --- Mobile Responsive Styles (max-width: 768px) --- */
@media (max-width: 768px) {
  .page-news {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-news__section {
    padding: 40px 0;
  }
  /* 1. HERO 主图区域 */
  .page-news__hero-image {
    height: 300px;
  }
  .page-news__hero-image img {
    object-fit: contain !important; /* Prevent cropping on mobile */
    aspect-ratio: unset !important; /* Allow natural aspect ratio */
    width: 100% !important;
    height: auto !important;
  }
  .page-news__hero-section {
    padding-top: 10px; /* Small top padding, not --header-offset */
  }
  .page-news__hero-content {
    margin-top: -60px;
    padding: 25px 15px;
    border-radius: 5px;
  }
  .page-news__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem); /* Clamp for better mobile scaling */
    margin-bottom: 15px;
  }
  .page-news__hero-description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
  .page-news__btn-primary, .page-news__btn-secondary {
    font-size: 1rem;
    padding: 12px 20px;
  }

  /* 2. 产品展示图区域 (General card grid adaptation) */
  .page-news__news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-news__news-card img {
    
  }
  .page-news__news-card {
    box-sizing: border-box !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  .page-news__news-grid, .page-news__promo-list {
    overflow-x: hidden !important; /* Ensure no horizontal scroll */
  }

  /* 3. 装饰主标题 + 长文 SEO 区 */
  .page-news__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem); /* Clamp for better mobile scaling */
    margin-bottom: 15px;
  }
  .page-news__section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  .page-news__article-body {
    padding: 30px 15px;
  }
  .page-news__article-content-wrapper {
    flex-direction: column;
    gap: 25px;
  }
  .page-news__article-image-wrapper {
    max-width: 100%;
    margin-bottom: 0;
  }
  .page-news__article-figure {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-news__article-main-heading {
    font-size: 1.4rem;
  }
  .page-news__article-meta, .page-news__article-paragraph {
    font-size: 0.9rem;
  }

  /* 4. 通用图片与容器 */
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-news__container, .page-news__section, .page-news__card, .page-news__cta-bottom .page-news__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* 5. 按钮与按钮容器 */
  .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;
  }
  .page-news__cta-buttons,
  .page-news__button-group,
  .page-news__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    flex-wrap: wrap !important;
    gap: 15px;
    flex-direction: column;
  }

  .page-news__cta-bottom .page-news__cta-content {
    text-align: center;
  }
  .page-news__cta-image-wrapper {
    max-width: 100%;
  }
  .page-news__faq-qtext {
    font-size: 1rem;
  }
  .page-news__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }
  details.page-news__faq-item summary.page-news__faq-question {
    padding: 15px;
  }
  details.page-news__faq-item .page-news__faq-answer {
    padding: 0 15px 15px;
  }
}