.page-news__hero-section {
  padding-top: 10px; /* Small top padding, shared.css handles body padding-top */
  background: linear-gradient(135deg, #26A9E0, #1a7bbd);
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.page-news__hero-image {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-news__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

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

.page-news__hero-description {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-news__introduction-section {
  background: #FFFFFF;
  color: #333333;
}

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

.page-news__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
}

.page-news__sub-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-news__text-block {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333333;
}

.page-news__featured-news-section {
  background: #f9f9f9;
}

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

.page-news__news-card {
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-news__card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

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

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

.page-news__card-meta {
  font-size: 0.9rem;
  color: #666666;
  margin-bottom: 15px;
}

.page-news__card-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-news__read-more {
  color: #26A9E0;
  font-weight: 600;
  text-decoration: none;
  align-self: flex-start;
}

.page-news__cta-buttons {
  text-align: center;
  margin-top: 40px;
}

.page-news__btn-primary,
.page-news__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 0 10px;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-news__btn-primary {
  background: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-news__btn-primary:hover {
  background: #1a7bbd;
  border-color: #1a7bbd;
  transform: translateY(-2px);
}

.page-news__btn-secondary {
  background: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

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

.page-news__benefits-section {
  background: #FFFFFF;
}

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

.page-news__benefit-item {
  text-align: center;
  padding: 25px;
  background: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.page-news__benefit-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-news__benefit-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
}

.page-news__benefit-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-news__benefit-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
}

.page-news__cta-section {
  background: #26A9E0;
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.page-news__cta-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
}

.page-news__cta-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  display: block;
}

.page-news__cta-content {
  flex: 1;
  text-align: left;
}

.page-news__cta-content .page-news__section-title {
  color: #FFFFFF;
  text-align: left;
}

.page-news__cta-content .page-news__text-block {
  color: #f0f0f0;
  text-align: left;
}

.page-news__cta-content .page-news__btn-primary,
.page-news__cta-content .page-news__btn-secondary {
  margin-top: 20px;
  margin-left: 0;
  margin-right: 15px;
}

.page-news__faq-section {
  background: #f9f9f9;
  padding: 60px 0;
}

.page-news__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.page-news__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  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: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: #555555;
}

.page-news__faq-answer p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.page-news__conclusion-section {
  background: #FFFFFF;
  padding-top: 40px;
}

/* General image styling for content areas */
.page-news img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-news__hero-content {
    padding: 0 40px;
  }

  .page-news__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

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

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

  .page-news__cta-container {
    flex-direction: column;
    text-align: center;
  }

  .page-news__cta-image {
    margin-bottom: 30px;
  }

  .page-news__cta-content {
    text-align: center;
  }

  .page-news__cta-content .page-news__section-title,
  .page-news__cta-content .page-news__text-block {
    text-align: center;
  }

  .page-news__cta-content .page-news__btn-primary,
  .page-news__cta-content .page-news__btn-secondary {
    margin-left: 10px;
    margin-right: 10px;
  }
}

@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-news__hero-section {
    padding-top: 10px !important; /* Small top padding, shared.css handles body padding-top */
    padding-bottom: 30px;
  }
  .page-news__hero-image img {
    object-fit: contain !important; /* Mobile: contain, no cropping */
    aspect-ratio: unset !important;
    height: auto !important;
    border-radius: 0;
  }
  .page-news__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem) !important;
    padding: 0 10px;
  }
  .page-news__hero-description {
    font-size: 0.95rem !important;
    padding: 0 15px;
  }

  /* Section general */
  .page-news__section {
    padding: 40px 0 !important;
  }

  .page-news__container {
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-news__sub-title {
    font-size: clamp(1.3rem, 5vw, 1.6rem) !important;
  }

  .page-news__text-block {
    font-size: 0.95rem !important;
  }

  /* 产品展示图区域 (News Grid) */
  .page-news__news-grid {
    grid-template-columns: 1fr !important; /* Single column on mobile */
    gap: 20px !important;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }
  .page-news__news-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-news__card-image {
    height: 180px !important;
  }
  .page-news__card-title {
    font-size: 1.15rem !important;
  }
  .page-news__card-description {
    font-size: 0.9rem !important;
  }

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

  /* 按钮与按钮容器 */
  .page-news__btn-primary,
  .page-news__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1rem !important;
    margin: 10px 0 !important; /* Stack buttons vertically */
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-news__cta-buttons {
    flex-direction: column !important;
    align-items: center;
    gap: 10px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

  .page-news__cta-content .page-news__btn-primary,
  .page-news__cta-content .page-news__btn-secondary {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .page-news__benefits-grid {
    grid-template-columns: 1fr !important;
  }

  .page-news__benefit-icon {
    max-width: 180px !important;
  }

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

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

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

  .page-news__cta-image {
    max-width: 100% !important;
  }

  .page-news__cta-container {
    gap: 20px !important;
  }
}