.page-news {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF5E1; /* Default text color for dark background */
  background-color: var(--bg-color); /* Inherit from shared.css */
}

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

.page-news__dark-section {
  background-color: #B71C1C; /* Custom background color */
  color: #FFF5E1;
}

.page-news__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-news__hero-section {
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-news__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.page-news__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-news__hero-content {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.page-news__main-title {
  font-size: 2.8em;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #FFD86A; /* Gold for main title */
}

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

.page-news__btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E; /* Deep Red text for gold button */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  min-width: 200px;
  min-height: 48px;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-news__btn-primary:hover {
  background: linear-gradient(180deg, #FFE082 0%, #FFCC66 100%);
}

.page-news__section-title {
  font-size: 2.2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  color: #C91F17; /* Main brand color for section titles */
}

.page-news__section-subtitle {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}

.page-news__recent-news {
  padding: 60px 0;
}

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

.page-news__article-card {
  background-color: #D32F2F; /* Card BG color */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #FFF5E1;
  display: flex;
  flex-direction: column;
  min-height: 450px; /* Ensure cards are not too small */
}

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

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

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

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

.page-news__article-title a {
  color: #FFD86A; /* Gold for article titles */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__article-title a:hover {
  color: #FFCC66;
}

.page-news__article-meta {
  font-size: 0.9em;
  color: #F2B544; /* Border color for meta */
  margin-bottom: 15px;
}

.page-news__article-excerpt {
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-news__read-more:hover {
  color: #FFCC66;
}

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

.page-news__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  background-color: #C91F17; /* Main brand color */
  color: #FFF5E1; /* Text Main color */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: 2px solid #F2B544; /* Border color */
  cursor: pointer;
  min-width: 200px;
  min-height: 48px;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-news__btn-secondary:hover {
  background-color: #E53935;
  border-color: #FFD86A;
}

.page-news__industry-insights {
  padding: 60px 0;
  background-color: #7A0E0E; /* Deep Red background */
  color: #FFF5E1;
}

.page-news__industry-insights .page-news__section-title,
.page-news__industry-insights .page-news__section-subtitle {
  color: #FFD86A;
}

.page-news__content-block {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  gap: 30px;
}

.page-news__content-block--reversed {
  flex-direction: row-reverse;
}

.page-news__content-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-news__text-block {
  flex: 1;
  max-width: 50%;
}

.page-news__sub-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFD86A;
}

.page-news__text-block p {
  margin-bottom: 20px;
  font-size: 1em;
  color: #FFF5E1;
}

.page-news__announcements {
  padding: 60px 0;
}

.page-news__announcements .page-news__section-title,
.page-news__announcements .page-news__section-subtitle {
  color: #C91F17;
}

.page-news__announcement-list {
  display: grid;
  gap: 25px;
}

.page-news__announcement-item {
  background-color: #D32F2F; /* Card BG color */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #FFF5E1;
}

.page-news__announcement-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFD86A;
}

.page-news__announcement-date {
  font-size: 0.9em;
  color: #F2B544;
  margin-bottom: 15px;
}

.page-news__announcement-text {
  font-size: 1em;
  margin-bottom: 15px;
}

.page-news__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #B71C1C;
  color: #FFF5E1;
}

.page-news__cta-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFD86A;
}

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

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

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

  .page-news__article-card {
    min-height: 400px;
  }

  .page-news__content-block {
    flex-direction: column;
    text-align: center;
  }

  .page-news__content-block--reversed {
    flex-direction: column;
  }

  .page-news__content-image {
    max-width: 80%;
    margin-bottom: 20px;
  }

  .page-news__text-block {
    max-width: 100%;
  }
}

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

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

  .page-news__main-title {
    font-size: 2em !important;
  }

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

  /* 产品展示图区域 - Not applicable for news page, but generic grid rules below */

  /* 通用图片与容器 */
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-news__container,
  .page-news__section,
  .page-news__content-block,
  .page-news__article-card,
  .page-news__announcement-item {
    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 {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 10px;
  }

  /* 其他内容模块 */
  .page-news__section-title {
    font-size: 1.8em !important;
  }

  .page-news__section-subtitle {
    font-size: 0.9em;
    margin-bottom: 30px;
  }

  .page-news__articles-grid {
    grid-template-columns: 1fr;
  }

  .page-news__article-card {
    min-height: auto;
  }

  .page-news__content-block {
    flex-direction: column !important;
    margin-bottom: 40px;
  }

  .page-news__content-block--reversed {
    flex-direction: column !important;
  }

  .page-news__content-image {
    max-width: 100%;
  }

  .page-news__text-block {
    max-width: 100%;
  }

  .page-news__sub-title {
    font-size: 1.5em;
  }

  .page-news__cta-title {
    font-size: 2em !important;
  }

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