.page-news {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #FFF1E8; /* Main text color for dark body background */
    background-color: #140C0C; /* Body background from shared.css */
}

.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, assuming shared.css handles body padding-top */
    margin-bottom: 40px;
}

.page-news__hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.page-news__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-news__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    background: rgba(42, 18, 18, 0.8); /* Card BG with transparency */
    margin-top: -100px; /* Overlap image slightly for visual effect, but text is below image in DOM */
    border-radius: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-news__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Use clamp for H1 */
    font-weight: 700;
    color: #F3C54D; /* Gold color for main title */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-news__description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #FFF1E8;
}

.page-news__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #F3C54D; /* Gold color for section titles */
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-news__section-description {
    font-size: 1.05rem;
    color: #FFF1E8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Buttons */
.page-news__btn-primary,
.page-news__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure button responsiveness */
    white-space: normal;
    word-wrap: break-word;
}

.page-news__btn-primary {
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    color: #FFF1E8; /* White text for contrast */
    border: none;
    margin: 10px;
}

.page-news__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-news__btn-secondary {
    background: #2A1212; /* Card BG */
    color: #F3C54D; /* Gold text */
    border: 1px solid #6A1E1E; /* Border color */
    margin: 10px;
}

.page-news__btn-secondary:hover {
    background: #6A1E1E; /* Deep Red border */
    color: #FFF1E8;
    transform: translateY(-2px);
}

.page-news__view-all-button-wrapper,
.page-news__cta-buttons {
    text-align: center;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping for multiple buttons */
    gap: 20px; /* Space between buttons */
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

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

.page-news__article-card {
    background: #2A1212; /* Card BG */
    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;
}

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

.page-news__article-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.page-news__article-image-wrapper {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    position: relative;
}

.page-news__article-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-news__article-content {
    padding: 20px;
}

.page-news__article-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #F3C54D; /* Gold color */
    margin-bottom: 10px;
    line-height: 1.4;
}

.page-news__article-meta {
    font-size: 0.9rem;
    color: #6A1E1E; /* Border color for meta info */
    margin-bottom: 15px;
}

.page-news__article-summary {
    font-size: 1rem;
    color: #FFF1E8;
}

/* CTA Section */
.page-news__cta-section {
    background: #C61F1F; /* Main brand color */
    padding: 80px 0;
    text-align: center;
    border-radius: 10px;
    margin: 60px auto;
    max-width: 1200px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-news__cta-section .page-news__section-title {
    color: #FFF1E8; /* White text for main color background */
    margin-bottom: 25px;
}

.page-news__cta-section .page-news__section-description {
    color: #FFF1E8;
    margin-bottom: 40px;
}

/* FAQ Section */
.page-news__faq-list {
    margin-top: 40px;
}

details.page-news__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #6A1E1E; /* Border color */
  overflow: hidden;
  background: #2A1212; /* Card BG */
}
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: #6A1E1E; /* Deep Red */
}
.page-news__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F3C54D; /* Gold color */
}
.page-news__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #F3C54D; /* Gold color */
  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(106, 30, 30, 0.5); /* Semi-transparent Deep Red */
  border-radius: 0 0 5px 5px;
  color: #FFF1E8;
}
.page-news__faq-answer p {
    margin: 0;
    padding-top: 10px;
}


/* --- Mobile Responsive Styles --- */
@media (max-width: 1024px) {
    .page-news__hero-content {
        margin-top: -80px;
        padding: 30px 15px;
    }
    .page-news__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-news__section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }
    .page-news__articles-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-news__article-title {
        font-size: 1.2rem;
    }
    .page-news__faq-qtext {
        font-size: 1rem;
    }
}


@media (max-width: 768px) {
    /* HERO 主图区域 */
    .page-news__hero-section {
        padding-top: 10px;
    }
    .page-news__hero-image {
        object-fit: contain !important;
        aspect-ratio: unset !important;
        position: relative;
        height: auto;
        padding-bottom: 0;
    }
    .page-news__hero-image-wrapper {
        padding-bottom: 0;
        height: auto;
    }
    .page-news__hero-content {
        margin-top: 20px; /* Adjust overlap for better mobile layout */
        padding: 25px 15px;
        max-width: 100%;
        box-sizing: border-box;
    }
    .page-news__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    .page-news__description {
        font-size: 0.95rem;
    }

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