.page-news {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Hero Section */
.page-news__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 60px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: #08160F; /* Ensure background color */
}

.page-news__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

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

.page-news__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 40px 20px 0;
    box-sizing: border-box;
}

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

.page-news__description {
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
}

.page-news__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.page-news__btn-primary,
.page-news__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons don't overflow */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow text to break words */
}

.page-news__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
    color: #F2FFF6; /* Text Main for contrast */
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-news__btn-secondary {
    background: transparent;
    color: #2AD16F; /* Main color for contrast */
    border: 2px solid #2AD16F; /* Main color for contrast */
}

.page-news__btn-secondary:hover {
    background: rgba(42, 209, 111, 0.1);
    transform: translateY(-2px);
}

/* General Section Styling */
.page-news__latest-news-section,
.page-news__platform-updates-section,
.page-news__promotions-highlights-section,
.page-news__industry-insights-section,
.page-news__faq-section,
.page-news__cta-bottom-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
    background-color: #08160F; /* Background */
}

.page-news__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem); /* Responsive font size */
    font-weight: 700;
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

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

.page-news__news-card {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-news__news-card:hover {
    transform: translateY(-5px);
}

.page-news__card-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

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

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

.page-news__card-date {
    font-size: 0.9rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 10px;
}

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

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

.page-news__card-title a:hover {
    color: #2AD16F; /* Lighter green for hover */
}

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

.page-news__card-readmore {
    color: #2AD16F; /* Lighter green */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    align-self: flex-start;
    transition: color 0.3s ease;
}

.page-news__card-readmore:hover {
    text-decoration: underline;
    color: #57E38D; /* Glow for hover */
}

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

/* Update List */
.page-news__update-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-news__update-item {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-news__update-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
}

.page-news__update-date {
    font-size: 0.9rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 15px;
    display: block;
}

.page-news__update-description {
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
}

/* Promotions Highlight */
.page-news__promo-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.page-news__promo-item {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    padding-bottom: 25px;
    text-align: center;
}

.page-news__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
}

.page-news__promo-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #F2FFF6; /* Text Main */
    padding: 0 20px;
    margin-bottom: 15px;
}

.page-news__promo-description {
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    padding: 0 20px;
    margin-bottom: 25px;
}

/* Article List */
.page-news__article-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-news__article-item {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-news__article-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.page-news__article-title a {
    color: #F2FFF6; /* Text Main */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-news__article-title a:hover {
    color: #2AD16F;
}

.page-news__article-date {
    font-size: 0.9rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 15px;
    display: block;
}

.page-news__article-excerpt {
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
}

/* FAQ Section */
.page-news__faq-list {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 20px;
}

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

.page-news__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 600;
    color: #F2FFF6; /* Text Main */
    background-color: #0A4B2C; /* Deep Green for question background */
    transition: background-color 0.3s ease;
}

.page-news__faq-item[open] .page-news__faq-question {
    background-color: #13994A; /* Darker green when open */
}

.page-news__faq-question:hover {
    background-color: #13994A;
}

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

.page-news__faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    margin-left: 15px;
    color: #F2C14E; /* Gold */
}

.page-news__faq-answer {
    padding: 20px 25px;
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    background-color: #11271B; /* Card BG */
    border-top: 1px solid #2E7A4E; /* Border */
}

/* Call to Action Bottom */
.page-news__cta-bottom-section {
    text-align: center;
    padding-top: 40px;
}

.page-news__cta-bottom-section .page-news__description {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.page-news__btn-large {
    padding: 18px 40px;
    font-size: 1.15rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-news__hero-content {
        padding: 30px 15px 0;
    }
    .page-news__main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .page-news__description {
        font-size: 1rem;
    }
    .page-news__section-title {
        font-size: clamp(1.6rem, 4vw, 2.5rem);
    }
    .page-news__promo-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-news__hero-section {
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

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

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

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

    .page-news__description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .page-news__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px; /* Add padding to container */
    }

    .page-news__btn-primary,
    .page-news__btn-secondary {
        width: 100% !important; /* Force full width on mobile */
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-news__latest-news-section,
    .page-news__platform-updates-section,
    .page-news__promotions-highlights-section,
    .page-news__industry-insights-section,
    .page-news__faq-section,
    .page-news__cta-bottom-section {
        padding: 40px 15px;
    }

    .page-news__section-title {
        font-size: clamp(1.5rem, 5.5vw, 2.2rem);
        margin-bottom: 30px;
    }

    .page-news__news-grid,
    .page-news__update-list,
    .page-news__article-list {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

    .page-news__card-content,
    .page-news__update-item,
    .page-news__article-item {
        padding: 20px;
    }

    .page-news__card-title,
    .page-news__update-title,
    .page-news__promo-title,
    .page-news__article-title {
        font-size: 1.15rem;
    }

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

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

    /* Mobile image/video/container force rules */
    .page-news img {
        max-width: 100% !important;
        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__news-card,
    .page-news__update-item,
    .page-news__promo-item,
    .page-news__article-item,
    .page-news__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .page-news__video-section {
        padding-top: 10px !important; /* body already handles --header-offset */
    }
}