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

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

.page-news__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    background-color: #0A4B2C; /* Deep Green for hero section background */
}

.page-news__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    margin-bottom: 30px; /* Space between image and content */
}

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

.page-news__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

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

.page-news__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Ensure buttons wrap on small screens */
}

.page-news__btn {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Ensure long words break */
    box-sizing: border-box;
    max-width: 100%;
    text-align: center;
}

.page-news__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom Button Gradient */
    color: #ffffff;
    border: none;
}

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

.page-news__btn-secondary {
    background: transparent;
    color: #57E38D; /* Glow color for border and text */
    border: 2px solid #57E38D; /* Glow color for border */
}

.page-news__btn-secondary:hover {
    background: #57E38D; /* Glow color */
    color: #08160F; /* Background color for text on hover */
    transform: translateY(-2px);
}

.page-news__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    padding-top: 40px;
}

.page-news__section-description {
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-news__sub-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #F2FFF6; /* Text Main */
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-news__text-block {
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
}

/* News Grid */
.page-news__latest-news-section {
    padding: 60px 0;
    background-color: #11271B; /* Card BG */
}

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

.page-news__news-card {
    background-color: #0A4B2C; /* Deep Green for card background */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px 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 {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

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

.page-news__card-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: bold;
    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: #57E38D; /* Glow */
}

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

.page-news__card-date {
    font-size: 0.85rem;
    color: #2E7A4E; /* Border color for date */
    margin-bottom: 15px;
    display: block;
}

.page-news__read-more-btn {
    display: inline-block;
    padding: 8px 15px;
    background-color: #2E7A4E; /* Border color for read more button */
    color: #F2FFF6; /* Text Main */
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.page-news__read-more-btn:hover {
    background-color: #57E38D; /* Glow */
    color: #08160F; /* Background color */
}

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

.page-news__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-news__list-item {
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.page-news__list-item::before {
    content: '•';
    color: #57E38D; /* Glow */
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1;
}

/* Deep Dive Section */
.page-news__deep-dive-section {
    padding: 60px 0;
    background-color: #08160F; /* Background */
}

/* Strategy Section */
.page-news__strategy-section {
    padding: 60px 0;
    background-color: #11271B; /* Card BG */
}

/* FAQ Section */
.page-news__faq-section {
    padding: 60px 0;
    background-color: #08160F; /* Background */
}

.page-news__faq-list {
    max-width: 900px;
    margin: 0 auto;
    border-top: 1px solid #1E3A2A; /* Divider */
}

.page-news__faq-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-news__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 1.15rem;
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    cursor: pointer;
    list-style: none; /* Remove default marker */
}

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

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

.page-news__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    margin-left: 15px;
    color: #57E38D; /* Glow */
    transition: transform 0.3s ease;
}

.page-news__faq-item[open] .page-news__faq-toggle {
    transform: rotate(45deg); /* Rotate for 'x' or '-' effect */
}

.page-news__faq-answer {
    padding-bottom: 20px;
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    padding-left: 0; /* Align with question text */
}

.page-news__faq-answer p {
    margin-bottom: 10px;
    color: #A7D9B8; /* Text Secondary */
}

.page-news__faq-answer a {
    color: #57E38D; /* Glow */
    text-decoration: underline;
}

/* Conclusion CTA Section */
.page-news__conclusion-cta-section {
    padding: 60px 0;
    text-align: center;
    background-color: #11271B; /* Card BG */
}

.page-news__cta-wrapper {
    text-align: center;
    margin-top: 30px;
}


/* Responsive styles */
@media (max-width: 1024px) {
    .page-news__hero-image {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .page-news__container {
        padding: 0 15px;
    }

    .page-news__hero-section {
        padding-bottom: 40px;
    }

    .page-news__hero-image {
        height: 300px;
        margin-bottom: 20px;
    }

    .page-news__main-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

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

    .page-news__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-news__btn {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
    }

    .page-news__section-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 20px;
        padding-top: 30px;
    }

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

    .page-news__sub-title {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
        margin-top: 30px;
    }

    .page-news__text-block,
    .page-news__list-item,
    .page-news__faq-answer {
        font-size: 0.9rem;
    }

    .page-news__news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

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

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

    .page-news__faq-item summary {
        font-size: 1rem;
        padding: 15px 0;
    }
    
    /* Mobile image, video, button responsive requirements */
    .page-news img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-news video,
    .page-news__video { /* If video is added */
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-news__section,
    .page-news__card,
    .page-news__container,
    .page-news__video-section, /* If video is added */
    .page-news__video-container, /* If video is added */
    .page-news__video-wrapper, /* If video is added */
    .page-news__cta-buttons,
    .page-news__button-group,
    .page-news__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Prevent horizontal scroll */
    }

    .page-news__video-section {
        padding-top: 10px !important; /* body already has --header-offset */
    }

    .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-left: 15px;
        padding-right: 15px;
    }
    
    .page-news__cta-buttons {
        flex-wrap: wrap !important;
        gap: 10px;
        flex-direction: column; /* For vertical stacking of buttons */
    }
}