.page-news {
    font-family: Arial, sans-serif;
    color: #FFF3E6; /* Text Main */
    background-color: #0D0E12; /* Background */
    line-height: 1.6;
}

/* Hero Section */
.page-news__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Small top padding, assuming shared.css handles body padding-top */
    padding-bottom: 60px;
}

.page-news__hero-image-wrapper {
    width: 100%;
    max-height: 700px; /* Limit height of hero image */
    overflow: hidden;
}

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

.page-news__hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 0;
    text-align: center;
}

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

.page-news__description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: rgba(255, 243, 230, 0.8);
}

.page-news__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-news__btn-primary,
.page-news__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text breaking */
}

.page-news__btn-primary {
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #ffffff;
    border: none;
}

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

.page-news__btn-secondary {
    background: #17191F; /* Card BG */
    color: #FF8C1A; /* Main color */
    border: 2px solid #A84F0C; /* Border color */
}

.page-news__btn-secondary:hover {
    background: #FF8C1A;
    color: #ffffff;
    border-color: #FF8C1A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* General Sections */
.page-news__featured-section,
.page-news__categories-section,
.page-news__faq-section,
.page-news__cta-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.page-news__section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF8C1A;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-news__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFA53A, #D96800);
    margin: 15px auto 0;
    border-radius: 2px;
}

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

.page-news__news-card {
    background-color: #17191F; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #A84F0C; /* Border color */
}

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

.page-news__card-image-wrapper {
    width: 100%;
    height: 220px; /* Fixed height for consistency */
    overflow: hidden;
}

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

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

.page-news__card-date {
    font-size: 0.9rem;
    color: rgba(255, 243, 230, 0.6);
    margin-bottom: 10px;
    display: block;
}

.page-news__card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.page-news__card-title a {
    color: #FFF3E6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-news__card-title a:hover {
    color: #FFA53A;
}

.page-news__card-excerpt {
    font-size: 1rem;
    color: rgba(255, 243, 230, 0.8);
    margin-bottom: 20px;
}

.page-news__read-more {
    color: #FF8C1A;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    position: relative;
    padding-bottom: 2px;
}

.page-news__read-more::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #FF8C1A;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.page-news__read-more:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

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

/* Categories Grid */
.page-news__categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.page-news__category-card {
    background-color: #17191F; /* Card BG */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    text-decoration: none;
    color: #FFF3E6;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid #A84F0C; /* Border color */
}

.page-news__category-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 140, 26, 0.1); /* Slight highlight */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-news__category-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #FFA53A;
    margin-bottom: 10px;
}

.page-news__category-description {
    font-size: 0.95rem;
    color: rgba(255, 243, 230, 0.7);
}

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

.page-news__faq-item {
    background-color: #17191F; /* Card BG */
    border: 1px solid #A84F0C; /* Border color */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-news__faq-item summary {
    list-style: none; /* Hide default marker */
    cursor: pointer;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15rem;
    font-weight: 600;
    color: #FFF3E6;
    transition: background-color 0.3s ease;
}

.page-news__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-news__faq-item summary:hover {
    background-color: rgba(255, 140, 26, 0.05);
}

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

.page-news__faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFA53A;
    margin-left: 15px;
}

.page-news__faq-item[open] .page-news__faq-toggle {
    content: '−'; /* Change to minus when open */
}

.page-news__faq-answer {
    padding: 0 20px 20px;
    font-size: 1rem;
    color: rgba(255, 243, 230, 0.8);
    line-height: 1.6;
}

/* Call to Action Section */
.page-news__cta-section {
    background: linear-gradient(90deg, #D96800 0%, #FF8C1A 100%);
    border-radius: 15px;
    padding: 60px 40px;
    text-align: center;
    margin-top: 80px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

.page-news__cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-news__cta-buttons-bottom {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-news__main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .page-news__section-title {
        font-size: 2.2rem;
    }

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

    .page-news__cta-title {
        font-size: 2.4rem;
    }
}

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

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

    .page-news__hero-content {
        padding: 30px 15px 0 !important;
    }

    .page-news__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem) !important;
        margin-bottom: 15px !important;
    }

    .page-news__description {
        font-size: 1rem !important;
        margin-bottom: 25px !important;
    }

    /* 按钮与按钮容器 */
    .page-news__cta-buttons,
    .page-news__cta-buttons-bottom {
        flex-direction: column !important;
        gap: 15px !important;
        padding: 0 15px !important;
    }

    .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: 12px 20px !important;
        font-size: 0.95rem !important;
    }

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

    .page-news__featured-section,
    .page-news__categories-section,
    .page-news__faq-section,
    .page-news__cta-section,
    .page-news__news-grid,
    .page-news__categories-grid {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* 其他内容模块 */
    .page-news__section-title {
        font-size: 1.8rem !important;
        margin-bottom: 30px !important;
    }

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

    .page-news__card-image-wrapper {
        height: 200px !important;
    }

    .page-news__card-title {
        font-size: 1.1rem !important;
    }

    .page-news__card-excerpt {
        font-size: 0.9rem !important;
    }

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

    .page-news__category-card {
        padding: 20px !important;
    }

    .page-news__category-title {
        font-size: 1.2rem !important;
    }

    .page-news__faq-item summary {
        font-size: 1rem !important;
        padding: 15px !important;
    }

    .page-news__faq-answer {
        padding: 0 15px 15px !important;
        font-size: 0.95rem !important;
    }

    .page-news__cta-section {
        padding: 40px 20px !important;
        margin-top: 60px !important;
    }

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

    .page-news__cta-description {
        font-size: 1rem !important;
        margin-bottom: 30px !important;
    }
}