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

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

/* Hero Section */
.page-news__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Enforce image on top, content below */
    align-items: center;
    padding: 10px 0 60px; /* Small top padding, more bottom padding */
    background-color: #08160F;
    text-align: center;
    overflow: hidden; /* Ensure no overflow */
}

.page-news__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 30px; /* Space between image and content */
}

.page-news__hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    width: 100%; /* Ensure image takes full width of its wrapper */
}

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

.page-news__main-title {
    font-size: clamp(2.2em, 4vw, 3.5em); /* Use clamp for H1 */
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

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

/* General Section Styling */
.page-news__section-title {
    font-size: 2.5em;
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-news__section-subtitle {
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
    text-align: center;
    margin-bottom: 40px;
}

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

.page-news__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

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

.page-news__btn-secondary:hover {
    background-color: #2AD16F;
    color: #ffffff;
}

/* Categories Section */
.page-news__categories-section {
    padding: 80px 0;
    background-color: #08160F;
}

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

.page-news__category-card {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    color: #F2FFF6; /* Text Main */
    border: 1px solid #2E7A4E; /* Border color */
}

.page-news__card-title {
    font-size: 1.5em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
    font-weight: bold;
}

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

.page-news__card-link {
    color: #57E38D; /* Glow color for links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-news__card-link:hover {
    color: #F2C14E; /* Gold on hover */
}

/* Articles Section */
.page-news__articles-section {
    padding: 80px 0;
    background-color: #08160F;
}

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

.page-news__article-card {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    border: 1px solid #2E7A4E; /* Border color */
}

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

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

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

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

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

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

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

.page-news__read-more {
    color: #57E38D; /* Glow color for links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    align-self: flex-start;
}

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

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

/* Highlights Section */
.page-news__highlights-section {
    padding: 80px 0;
    background-color: #11271B; /* Card BG for dark section */
}

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

.page-news__highlight-item {
    text-align: center;
    padding: 30px;
    background-color: rgba(17, 168, 78, 0.1); /* Subtle background for items */
    border-radius: 12px;
    border: 1px solid #2E7A4E; /* Border color */
    color: #F2FFF6; /* Text Main */
}

.page-news__highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: block;
    object-fit: contain;
}

.page-news__item-title {
    font-size: 1.4em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-news__item-text {
    color: #A7D9B8; /* Text Secondary */
}

.page-news__cta-wrapper {
    text-align: center;
}

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

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

.page-news__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border color */
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #F2FFF6; /* Text Main */
}

.page-news__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    color: #F2FFF6; /* Text Main */
    background-color: #11271B; /* Card BG */
    list-style: none; /* For details/summary */
}

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

.page-news__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    color: #57E38D; /* Glow color */
}

.page-news__faq-answer {
    padding: 0 25px 20px;
    color: #A7D9B8; /* Text Secondary */
    font-size: 1em;
    line-height: 1.5;
}

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

/* CTA Bottom Section */
.page-news__cta-bottom-section {
    padding: 80px 0;
    text-align: center;
    background-color: #11271B; /* Card BG for dark section */
}

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

@media (max-width: 768px) {
    .page-news {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-news__container {
        padding: 0 15px;
    }

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

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

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

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

    .page-news__category-grid,
    .page-news__article-grid,
    .page-news__highlights-grid {
        grid-template-columns: 1fr;
    }

    .page-news__category-card,
    .page-news__article-card,
    .page-news__highlight-item {
        padding: 20px;
    }

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

    .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,
    .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;
      flex-wrap: wrap !important;
      gap: 10px;
    }
    
    .page-news__cta-buttons {
      display: flex;
      flex-direction: column;
    }

    .page-news__hero-image,
    .page-news__article-image,
    .page-news__highlight-icon,
    .page-news img {
        max-width: 100% !important;
        width: 100% !important; /* ensure width is 100% */
        height: auto !important;
        display: block !important;
    }
    
    .page-news__hero-image-wrapper,
    .page-news__article-card,
    .page-news__highlight-item,
    .page-news__categories-section,
    .page-news__articles-section,
    .page-news__highlights-section,
    .page-news__faq-section,
    .page-news__cta-bottom-section,
    .page-news__category-card,
    .page-news__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important; /* Ensure no overflow on containers */
        padding-left: 15px;
        padding-right: 15px;
    }
    /* Specific adjustment for sections that might not have padding from container */
    .page-news__categories-section > .page-news__container,
    .page-news__articles-section > .page-news__container,
    .page-news__highlights-section > .page-news__container,
    .page-news__faq-section > .page-news__container,
    .page-news__cta-bottom-section > .page-news__container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    /* No video section in this page, but if there was, padding-top would be 10px */
    /* .page-news__video-section { padding-top: 10px !important; } */
}