.page-news {
    font-family: Arial, sans-serif;
    color: var(--text-main, #FFF3E6); /* Text Main */
    background: var(--background, #0D0E12); /* Background */
    line-height: 1.6;
    padding-bottom: 40px;
}

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

/* Hero Section */
.page-news__hero-section {
    position: relative;
    padding-top: 10px; /* Fixed header spacing */
    padding-bottom: 40px;
    background: var(--background, #0D0E12);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-news__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.page-news__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 675px; /* Limit height for aesthetic */
}

.page-news__hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.page-news__main-title {
    font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size for H1 */
    color: var(--text-main, #FFF3E6);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.page-news__hero-description {
    font-size: 1.1em;
    color: var(--text-main, #FFF3E6);
    margin-bottom: 30px;
}

/* Section Titles & Descriptions */
.page-news__section-title {
    font-size: 2.5em;
    color: var(--text-main, #FFF3E6);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-news__section-description {
    font-size: 1.1em;
    color: var(--text-main, #FFF3E6);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

/* Buttons */
.page-news__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-news__btn-primary {
    background: linear-gradient(180deg, var(--auxiliary-color, #FFA53A) 0%, var(--deep-orange, #D96800) 100%); /* Button gradient */
    color: #ffffff;
    border: none;
}

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

.page-news__btn-secondary {
    background: transparent;
    color: var(--primary-color, #FF8C1A);
    border: 2px solid var(--primary-color, #FF8C1A);
}

.page-news__btn-secondary:hover {
    background: var(--primary-color, #FF8C1A);
    color: #ffffff;
}

/* General Card Styles */
.page-news__card {
    background: var(--card-bg, #17191F); /* Card BG */
    border: 1px solid var(--border, #A84F0C); /* Border */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-main, #FFF3E6);
}

.page-news__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-news__card-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-bottom: 15px;
    object-fit: cover;
}

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

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

.page-news__card-title a:hover {
    color: var(--primary-color, #FF8C1A);
}

.page-news__card-date {
    font-size: 0.9em;
    color: #888;
    margin-bottom: 10px;
    display: block;
}

.page-news__card-summary {
    font-size: 1em;
    margin-bottom: 15px;
}

.page-news__read-more-link {
    color: var(--primary-color, #FF8C1A);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

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

/* Latest News Section */
.page-news__latest-news-section {
    padding: 60px 0;
}

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

.page-news__button-container {
    text-align: center;
    margin-top: 20px;
}

/* Categories Section */
.page-news__categories-section {
    padding: 60px 0;
    background: var(--card-bg, #17191F); /* Darker background for contrast */
}

.page-news__dark-section .page-news__section-title,
.page-news__dark-section .page-news__section-description {
    color: #ffffff; /* Ensure white text on dark background */
}

.page-news__category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.page-news__category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    padding: 25px;
    background: var(--card-bg, #17191F);
    border: 1px solid var(--border, #A84F0C);
    border-radius: 10px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-news__category-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 165, 58, 0.1); /* Slight highlight on hover */
}

.page-news__category-title {
    font-size: 1.3em;
    color: var(--primary-color, #FF8C1A);
    margin-bottom: 10px;
}

.page-news__category-description {
    font-size: 0.95em;
    color: var(--text-main, #FFF3E6);
}

/* FAQ Section */
.page-news__faq-section {
    padding: 60px 0;
}

.page-news__faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.page-news__faq-item {
    padding: 0; /* Override default card padding for details */
    overflow: hidden;
}

.page-news__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.1em;
    font-weight: bold;
    color: var(--text-main, #FFF3E6);
    cursor: pointer;
    list-style: none; /* Hide default details marker */
    -webkit-tap-highlight-color: transparent; /* Prevent tap highlight on mobile */
}

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

.page-news__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 10px;
    color: var(--primary-color, #FF8C1A);
    transition: transform 0.3s ease;
}

.page-news__faq-item[open] .page-news__faq-toggle {
    transform: rotate(45deg); /* Rotate + to become X or - */
}

.page-news__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1em;
    color: var(--text-main, #FFF3E6);
    line-height: 1.6;
}

/* CTA Section */
.page-news__cta-section {
    padding: 60px 0;
    text-align: center;
}

.page-news__cta-container {
    padding: 40px 20px;
    background: var(--card-bg, #17191F);
    border: 1px solid var(--border, #A84F0C);
    border-radius: 10px;
}

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

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

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

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

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

    .page-news__hero-image-wrapper {
        max-height: 400px; /* Adjust hero image height for mobile */
    }

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

    .page-news__main-title {
        font-size: clamp(1.8em, 8vw, 2.5em);
    }

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

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

    .page-news__section,
    .page-news__card,
    .page-news__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* 按钮与按钮容器 */
    .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: 12px 20px !important; /* Adjust padding for mobile buttons */
        font-size: 1em !important;
    }
    
    .page-news__button-container,
    .page-news__cta-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    /* 产品展示图区域 (News Grid in this case) */
    .page-news__news-grid {
        grid-template-columns: 1fr; /* Single column for news cards */
        gap: 20px;
    }

    .page-news__category-grid {
        grid-template-columns: 1fr; /* Single column for categories */
        gap: 15px;
    }

    /* 其他内容模块 (FAQ, etc.) */
    .page-news__section-title {
        font-size: 1.8em;
        margin-bottom: 15px;
    }

    .page-news__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    .page-news__card-title {
        font-size: 1.2em;
    }

    .page-news__faq-question {
        font-size: 1em;
        padding: 15px;
    }

    .page-news__faq-answer {
        padding: 0 15px 15px 15px;
    }
}