.page-news {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #F5F7FA; /* Body background from custom palette */
}

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

.page-news__hero-section {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  padding-top: 10px; /* Small top padding, header offset handled by body */
  padding-bottom: 40px;
  padding-left: 0;
  padding-right: 0;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.page-news__hero-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-news__hero-image-wrapper {
  width: 100%;
  max-width: 1000px; /* Adjust as needed */
  margin-top: 20px;
}

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

.page-news__hero-text-block {
  margin-bottom: 20px;
}

.page-news__hero-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #ffffff;
}

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

.page-news__hero-button {
  display: inline-block;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-news__hero-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #E53935 0%, #FF5A4F 100%);
}

.page-news__section-title {
  font-size: 2.5rem;
  color: #E53935;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 700;
}

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

.page-news__latest-news-section,
.page-news__featured-articles-section {
  padding: 60px 0;
  background-color: #F5F7FA;
}

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

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

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

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

.page-news__news-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-news__news-card-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-news__news-card-title a {
  color: #333333;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-news__news-card-title a:hover {
  color: #E53935;
}

.page-news__news-card-meta {
  font-size: 0.9rem;
  color: #888888;
  margin-bottom: 15px;
}

.page-news__news-card-excerpt {
  font-size: 1rem;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news__news-card-link {
  display: inline-block;
  color: #E53935;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-news__news-card-link:hover {
  color: #FF5A4F;
  text-decoration: underline;
}

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

.page-news__btn-secondary {
  display: inline-block;
  background-color: #ffffff;
  color: #E53935;
  padding: 15px 30px;
  border: 2px solid #E53935;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.page-news__featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.page-news__featured-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-news__featured-card-image {
  width: 50%; /* Half width for desktop */
  height: 300px;
  object-fit: cover;
  display: block;
}

.page-news__featured-card-content {
  padding: 30px;
  width: 50%; /* Half width for desktop */
}

.page-news__featured-card-title {
  font-size: 1.6rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-news__featured-card-title a {
  color: #333333;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-news__featured-card-title a:hover {
  color: #E53935;
}

.page-news__featured-card-meta {
  font-size: 0.9rem;
  color: #888888;
  margin-bottom: 15px;
}

.page-news__featured-card-excerpt {
  font-size: 1rem;
  color: #555555;
  margin-bottom: 20px;
}

.page-news__featured-card-link {
  display: inline-block;
  color: #E53935;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-news__featured-card-link:hover {
  color: #FF5A4F;
  text-decoration: underline;
}

.page-news__cta-section {
  background: linear-gradient(180deg, #E53935 0%, #FF5A4F 100%);
  padding: 80px 0;
  color: #ffffff;
  text-align: center;
}

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

.page-news__cta-image {
  width: 40%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-news__cta-text-block {
  width: 50%;
}

.page-news__cta-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-news__cta-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-news__cta-button {
  display: inline-block;
  background-color: #ffffff;
  color: #E53935;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-news__cta-button:hover {
  background-color: #f0f0f0;
  color: #FF5A4F;
  transform: translateY(-2px);
}

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

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

.page-news__faq-item {
  background-color: #ffffff;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  background-color: #ffffff;
  border-bottom: 1px solid transparent; /* To prevent double border on open */
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-news__faq-question::-webkit-details-marker,
.page-news__faq-question::marker {
  display: none;
}

.page-news__faq-item[open] > .page-news__faq-question {
  background-color: #f9f9f9;
  border-bottom: 1px solid #E0E0E0;
}

.page-news__faq-question:hover {
  background-color: #f9f9f9;
}

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

.page-news__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  color: #E53935;
  line-height: 1;
}

.page-news__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: #555555;
  line-height: 1.7;
}

/* General image and button responsiveness */
.page-news img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-news a[class*="button"],
.page-news a[class*="btn"] {
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-news__cta-buttons,
.page-news__button-group,
.page-news__btn-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Media Queries for responsiveness */
@media (max-width: 1024px) {
  .page-news__hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-news__hero-description {
    font-size: 1rem;
  }
  .page-news__section-title {
    font-size: 2rem;
  }
  .page-news__news-card-title {
    font-size: 1.2rem;
  }
  .page-news__featured-card-image,
  .page-news__featured-card-content {
    width: 100%;
  }
  .page-news__featured-card {
    flex-direction: column;
  }
  .page-news__cta-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-news__cta-image {
    width: 60%;
    max-width: 500px;
  }
  .page-news__cta-text-block {
    width: 100%;
  }
  .page-news__cta-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .page-news {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-news__container {
    padding: 0 15px; /* Adjust padding for mobile */
  }

  /* HERO 主图区域 */
  .page-news__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px !important;
  }
  .page-news__hero-title {
    font-size: 2rem !important;
    margin-bottom: 10px !important;
  }
  .page-news__hero-description {
    font-size: 0.95rem !important;
    margin-bottom: 20px !important;
  }
  .page-news__hero-button {
    padding: 12px 25px !important;
  }

  /* 产品展示图区域 (News Grid in this case) */
  .page-news__news-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .page-news__news-card {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
  }
  .page-news__news-card-image {
    height: 180px !important;
  }
  .page-news__news-card-content {
    padding: 20px !important;
  }
  .page-news__news-card-title {
    font-size: 1.1rem !important;
  }
  .page-news__news-card-excerpt {
    font-size: 0.95rem !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__hero-content-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* 按钮与按钮容器 */
  .page-news__hero-button,
  .page-news__btn-secondary,
  .page-news__cta-button,
  .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__view-all-button-wrapper {
    margin-top: 30px !important;
  }
  .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: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-news__cta-content {
    flex-direction: column !important;
  }
  .page-news__cta-image {
    width: 80% !important;
    max-width: 100% !important;
  }
  .page-news__cta-text-block {
    width: 100% !important;
  }
  .page-news__cta-title {
    font-size: 1.8rem !important;
  }

  /* 其他内容模块 (Featured Articles, FAQ) */
  .page-news__section-title {
    font-size: 1.8rem !important;
    margin-bottom: 10px !important;
  }
  .page-news__section-subtitle {
    font-size: 1rem !important;
    margin-bottom: 25px !important;
  }
  .page-news__featured-card {
    flex-direction: column !important;
  }
  .page-news__featured-card-image {
    width: 100% !important;
    height: 250px !important;
  }
  .page-news__featured-card-content {
    width: 100% !important;
    padding: 20px !important;
  }
  .page-news__featured-card-title {
    font-size: 1.3rem !important;
  }
  .page-news__faq-question {
    font-size: 1rem !important;
    padding: 15px 20px !important;
  }
  .page-news__faq-toggle {
    font-size: 1.2rem !important;
  }
  .page-news__faq-answer {
    font-size: 0.95rem !important;
    padding: 0 20px 15px 20px !important;
  }
}