.page-news {
    background-color: #08160F; /* Nền tối theo tùy chỉnh */
    color: #F2FFF6; /* Chữ sáng trên nền tối */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

.page-news__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Nhỏ hơn so với --header-offset */
    padding-bottom: 60px;
    overflow: hidden;
}

.page-news__hero-image-wrapper {
    width: 100%;
    max-height: 675px;
    overflow: hidden;
}

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

.page-news__hero-content {
    width: 100%;
    padding: 40px 20px;
    text-align: center;
    background-color: #0A4B2C; /* Deep Green */
    color: #F2FFF6;
    box-sizing: border-box;
}

.page-news__main-title {
    font-weight: bold;
    color: #F2FFF6;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow */
}

.page-news__intro-text {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #A7D9B8; /* Text Secondary */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-news__btn-primary {
    display: inline-block;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-news__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(87, 227, 141, 0.4); /* Glow */
}

.page-news__btn-secondary {
    display: inline-block;
    background: transparent;
    color: #57E38D; /* Glow */
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #2E7A4E; /* Border */
    cursor: pointer;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-news__btn-secondary:hover {
    background-color: rgba(87, 227, 141, 0.1); /* Glow with transparency */
    color: #F2FFF6;
}

.page-news__section-title {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    color: #11A84E; /* Main color */
    text-shadow: 0 0 8px rgba(17, 168, 78, 0.3);
}

.page-news__section-title--light {
    color: #F2FFF6;
    text-shadow: 0 0 8px rgba(242, 255, 246, 0.2);
}

.page-news__section-description {
    font-size: 1.05em;
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #333333;
}

.page-news__section-description--light {
    color: #A7D9B8;
}

.page-news__light-bg {
    background-color: #F2FFF6; /* Text Main as light background */
    color: #333333;
    padding: 60px 0;
}

.page-news__dark-bg {
    background-color: #08160F; /* Background */
    color: #F2FFF6;
    padding: 60px 0;
}

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

.page-news__article-card {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #F2FFF6;
}

.page-news__article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(87, 227, 141, 0.3); /* Glow */
}

.page-news__article-image {
    width: 100%;
    height: 225px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

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

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

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

.page-news__card-title a:hover {
    color: #57E38D; /* Glow */
}

.page-news__card-meta {
    font-size: 0.9em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 15px;
}

.page-news__card-excerpt {
    font-size: 1em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
}

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

.page-news__read-more:hover {
    color: #F2C14E; /* Gold */
}

.page-news__read-more--light {
    color: #57E38D;
}

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

.page-news__article-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.page-news__list-item {
    display: flex;
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2E7A4E; /* Border */
    color: #F2FFF6;
}

.page-news__list-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(87, 227, 141, 0.25); /* Glow */
}

.page-news__list-image {
    width: 200px;
    height: 150px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.page-news__list-content {
    padding: 20px;
    flex-grow: 1;
}

.page-news__list-title {
    font-size: 1.2em;
    margin-bottom: 8px;
    font-weight: bold;
    line-height: 1.3;
}

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

.page-news__list-title a:hover {
    color: #57E38D; /* Glow */
}

.page-news__list-meta {
    font-size: 0.85em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 10px;
}

.page-news__list-excerpt {
    font-size: 0.95em;
    color: #A7D9B8; /* Text Secondary */
}

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

.page-news__faq-section {
    padding: 60px 0;
    background-color: #F2FFF6;
    color: #333333;
}

.page-news__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-news__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-news__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15em;
    font-weight: bold;
    color: #11A84E; /* Main color */
    cursor: pointer;
    background-color: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
    user-select: none;
    list-style: none; /* For details/summary */
}

.page-news__faq-question::-webkit-details-marker {
    display: none;
}

.page-news__faq-item[open] .page-news__faq-question {
    border-bottom-color: #11A84E;
}

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

.page-news__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #13994A; /* Slightly darker green */
}

.page-news__faq-answer {
    padding: 20px 25px;
    font-size: 1em;
    color: #333333;
    line-height: 1.7;
    background-color: #ffffff;
}

.page-news__faq-answer p {
    margin-bottom: 1em;
}

.page-news__faq-answer p:last-child {
    margin-bottom: 0;
}

.page-news__cta-section {
    text-align: center;
    padding: 80px 0;
    background-color: #0A4B2C; /* Deep Green */
    color: #F2FFF6;
}

.page-news__cta-title {
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 20px;
    color: #F2FFF6;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow */
}

.page-news__cta-description {
    font-size: 1.1em;
    color: #A7D9B8;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

@media (max-width: 768px) {
    .page-news__container {
        padding: 0 15px;
    }
    .page-news__hero-content {
        padding: 30px 15px;
    }
    .page-news__main-title {
        font-size: 2.2em;
        line-height: 1.2;
    }
    .page-news__intro-text {
        font-size: 1em;
    }
    .page-news__section-title {
        font-size: 1.8em;
    }
    .page-news__section-description {
        font-size: 0.95em;
    }
    .page-news__article-grid {
        grid-template-columns: 1fr;
    }
    .page-news__list-item {
        flex-direction: column;
    }
    .page-news__list-image {
        width: 100%;
        height: 200px;
    }
    .page-news__list-content {
        padding: 15px;
    }
    .page-news__list-title {
        font-size: 1.1em;
    }
    .page-news__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-news__faq-answer {
        padding: 15px 20px;
    }
    .page-news__cta-title {
        font-size: 1.8em;
    }
    .page-news__cta-description {
        font-size: 1em;
    }
    .page-news__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-news__btn-primary, .page-news__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Mobile image and video responsiveness */
    .page-news img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-news__section, .page-news__card, .page-news__container, .page-news__hero-image-wrapper, .page-news__hero-content, .page-news__article-card, .page-news__list-item, .page-news__faq-item, .page-news__cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden;
    }
    .page-news__hero-section, .page-news__featured-articles, .page-news__latest-articles, .page-news__faq-section, .page-news__cta-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .page-news__hero-section {
        padding-top: 10px !important;
    }
}

@media (max-width: 480px) {
    .page-news__main-title {
        font-size: 1.8em;
    }
    .page-news__section-title {
        font-size: 1.5em;
    }
    .page-news__cta-title {
        font-size: 1.6em;
    }
    .page-news__hero-content {
        padding: 20px 10px;
    }
    .page-news__faq-question {
        padding: 12px 15px;
        font-size: 0.95em;
    }
    .page-news__faq-answer {
        padding: 12px 15px;
    }
}