.page-news {
  font-family: 'Arial', sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
}

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

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

/* Hero Section */
.page-news__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.page-news__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for desktop */
  overflow: hidden;
  margin-bottom: 30px;
}

.page-news__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

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

.page-news__subtitle {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.6;
  margin-bottom: 30px;
  color: #FFF6D6; /* Text Main */
}

/* Section Titles */
.page-news__section-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #F2C14E; /* Main color */
}

.page-news__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
}

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

.page-news__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for contrast */
  border: none;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-news__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-news__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Main color */
  border: 2px solid #F2C14E; /* Main color border */
  margin-left: 20px;
}

.page-news__btn-secondary:hover {
  background: rgba(242, 193, 78, 0.1);
  color: #FFD36B; /* Glow color */
  border-color: #FFD36B;
}

/* Latest Articles Grid */
.page-news__articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-news__article-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

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

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

.page-news__article-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
  color: #F2C14E; /* Main color */
  flex-grow: 1;
}

.page-news__article-meta {
  font-size: 14px;
  color: #FFD36B; /* Glow color */
  margin-bottom: 15px;
}

.page-news__article-excerpt {
  font-size: 16px;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 20px;
}

.page-news__read-more {
  font-size: 16px;
  color: #FFD36B; /* Glow color */
  font-weight: 600;
  display: inline-block;
  margin-top: auto;
}

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

.page-news__button-group {
  text-align: center;
  margin-top: 30px;
}

/* CTA Section */
.page-news__cta-section {
  background-color: #111111; /* Card BG */
  padding: 80px 0;
  border-top: 1px solid #3A2A12; /* Border */
  border-bottom: 1px solid #3A2A12; /* Border */
}

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

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

.page-news__cta-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #F2C14E; /* Main color */
}

.page-news__cta-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #FFF6D6; /* Text Main */
}

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

.page-news__cta-image-wrapper {
  flex-shrink: 0;
  max-width: 500px;
  width: 100%;
}

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

/* FAQ Section */
details.page-news__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #3A2A12; /* Border */
  overflow: hidden;
  background: #111111; /* Card BG */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
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;
  color: #F2C14E; /* Main color */
}
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(242, 193, 78, 0.05);
}
.page-news__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}
.page-news__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #FFD36B; /* Glow color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}
details.page-news__faq-item .page-news__faq-answer {
  padding: 0 25px 25px;
  background: rgba(17, 17, 17, 0.8); /* Slightly lighter card BG for answer */
  border-radius: 0 0 8px 8px;
  color: #FFF6D6; /* Text Main */
  line-height: 1.6;
}
details.page-news__faq-item .page-news__faq-answer p {
  margin: 0;
}

/* About ss88 Section */
.page-news__about-ss88 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-news__about-ss88 .page-news__section-title {
  margin-bottom: 50px;
}

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

.page-news__text-block {
  flex: 1;
}

.page-news__text-block p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #FFF6D6; /* Text Main */
}

.page-news__image-block {
  flex-shrink: 0;
  max-width: 500px;
  width: 100%;
  text-align: center;
}

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

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-news__hero-section {
    padding-bottom: 40px;
  }
  .page-news__hero-image-wrapper {
    max-height: 500px;
  }
  .page-news__articles-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-news__cta-section .page-news__container {
    flex-direction: column;
    text-align: center;
  }
  .page-news__cta-buttons {
    justify-content: center;
  }
  .page-news__cta-content {
    max-width: 100%;
  }
  .page-news__content-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .page-news__image-block {
    order: -1; /* Image above text on smaller screens */
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-news__hero-section {
    padding-top: 10px; /* Small top padding */
    padding-bottom: 30px;
  }
  .page-news__hero-image-wrapper {
    max-height: unset;
    margin-bottom: 20px;
  }
  .page-news__hero-image {
    object-fit: contain !important; /* Prevent cropping on mobile */
    aspect-ratio: unset !important;
    border-radius: 0;
  }
  .page-news__main-title {
    font-size: clamp(24px, 7vw, 36px);
  }
  .page-news__subtitle {
    font-size: 16px;
  }

  /* Section Titles */
  .page-news__section-title {
    font-size: clamp(22px, 6vw, 32px);
    margin-bottom: 15px;
  }
  .page-news__section-description {
    font-size: 15px;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  /* Buttons */
  .page-news__btn-primary,
  .page-news__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
    margin-left: 0 !important; /* Remove margin for stacked buttons */
    margin-bottom: 10px; /* Add spacing between stacked buttons */
  }
  .page-news__cta-buttons {
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Latest Articles Grid */
  .page-news__articles-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 20px;
  }
  .page-news__article-card {
    margin: 0 10px;
  }
  .page-news__article-title {
    font-size: 18px;
  }
  .page-news__article-excerpt {
    font-size: 15px;
  }

  /* CTA Section */
  .page-news__cta-section {
    padding: 50px 0;
  }
  .page-news__cta-title {
    font-size: clamp(24px, 6vw, 36px);
  }
  .page-news__cta-description {
    font-size: 16px;
  }
  .page-news__cta-image-wrapper {
    padding: 0 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-news__cta-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  /* FAQ Section */
  details.page-news__faq-item summary.page-news__faq-question {
    padding: 15px 20px;
  }
  .page-news__faq-qtext {
    font-size: 16px;
  }
  .page-news__faq-toggle {
    font-size: 24px;
    width: 24px;
  }
  details.page-news__faq-item .page-news__faq-answer {
    padding: 0 20px 20px;
    font-size: 15px;
  }

  /* About ss88 Section */
  .page-news__about-ss88 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .page-news__text-block p {
    font-size: 16px;
  }
  .page-news__image-block {
    padding: 0 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-news__about-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  /* Generic image and container responsiveness */
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-news__section,
  .page-news__container,
  .page-news__articles-grid,
  .page-news__article-card,
  .page-news__cta-section,
  .page-news__cta-content,
  .page-news__faq-section,
  .page-news__faq-list,
  .page-news__about-ss88,
  .page-news__content-wrapper,
  .page-news__text-block,
  .page-news__image-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-news__container { padding: 0; }
  .page-news__section { padding: 40px 0; }
}