:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --bg-color: #08160F;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
}

.page-news {
    font-family: Arial, sans-serif;
    color: var(--text-main); /* Light text on dark background */
    background-color: var(--bg-color); /* Matches body background for overall consistency */
}

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

/* Hero Section */
.page-news__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
    background-color: var(--deep-green);
    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 {
    text-align: center;
    padding: 40px 20px 0;
    max-width: 900px;
}

.page-news__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -1px;
}

.page-news__description {
    font-size: 1.2rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Section Titles and Descriptions */
.page-news__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-news__section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Latest Articles Section */
.page-news__latest-articles-section {
    padding: 60px 0;
    background-color: var(--bg-color);
}

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

.page-news__article-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.page-news__article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-news__article-thumbnail-wrapper {
    width: 100%;
    height: 225px;
    overflow: hidden;
}

.page-news__article-thumbnail {
    width: 100%;
    height: 100%;
    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.4rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

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

.page-news__article-title a:hover {
    color: var(--gold-color);
}

.page-news__article-date {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    display: block;
}

.page-news__article-excerpt {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-news__read-more-btn {
    display: inline-block;
    background: var(--button-gradient);
    color: var(--text-main);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.3s ease;
    text-align: center;
    max-width: fit-content;
}

.page-news__read-more-btn:hover {
    opacity: 0.9;
}

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

.page-news__view-all-btn {
    display: inline-block;
    background: var(--button-gradient);
    color: var(--text-main);
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-news__view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Categories Section */
.page-news__categories-section {
    padding: 60px 0;
    background-color: var(--deep-green);
}

.page-news__categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.page-news__category-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding: 25px 15px;
    text-decoration: none;
    color: var(--text-main);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}

.page-news__category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.page-news__category-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px;
}

.page-news__category-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-main);
}

/* Featured News Section */
.page-news__featured-news-section {
    padding: 60px 0;
    background-color: var(--bg-color);
}

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

.page-news__featured-item {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.page-news__featured-item--large {
    grid-column: span 2;
}

.page-news__featured-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.page-news__featured-item--large .page-news__featured-image {
    height: 350px;
}

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

.page-news__featured-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

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

.page-news__featured-title a:hover {
    color: var(--gold-color);
}

.page-news__featured-date {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    display: block;
}

.page-news__featured-excerpt {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Call to Action Section */
.page-news__cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--deep-green);
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('[GALLERY:bg:1920x400:8day,cta,background,abstract_green_gold]');
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-news__cta-title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-news__cta-description {
    font-size: 1.2rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-news__btn-primary,
.page-news__btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-news__btn-primary {
    background: var(--button-gradient);
    color: var(--text-main);
    border: 2px solid transparent;
}

.page-news__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3), 0 0 15px var(--glow-color);
}

.page-news__btn-secondary {
    background-color: transparent;
    color: var(--gold-color);
    border: 2px solid var(--gold-color);
}

.page-news__btn-secondary:hover {
    transform: translateY(-3px);
    background-color: rgba(242, 193, 78, 0.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-news__faq-section {
    padding: 60px 0;
    background-color: var(--bg-color);
}

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

.page-news__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.page-news__faq-item[open] {
    background-color: var(--deep-green);
}

.page-news__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: bold;
    color: var(--text-main);
    transition: color 0.3s ease;
    list-style: none;
}

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

.page-news__faq-question:hover {
    color: var(--gold-color);
}

.page-news__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    color: var(--gold-color);
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-news__faq-item[open] .page-news__faq-toggle {
    transform: rotate(45deg);
}

.page-news__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-news__hero-image {
        height: 500px;
    }
    .page-news__featured-item--large {
        grid-column: span 1;
    }
    .page-news__featured-image {
        height: 200px;
    }
    .page-news__featured-item--large .page-news__featured-image {
        height: 250px;
    }
}

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

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

    .page-news__hero-image {
        height: 350px;
    }

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

    .page-news__main-title {
        font-size: 2rem;
    }

    .page-news__description {
        font-size: 1rem;
    }

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

    .page-news__section-description {
        font-size: 0.95rem;
    }

    .page-news__articles-grid,
    .page-news__categories-grid,
    .page-news__featured-grid {
        grid-template-columns: 1fr;
    }

    .page-news__article-thumbnail-wrapper {
        height: 180px;
    }

    .page-news__article-title {
        font-size: 1.2rem;
    }

    .page-news__category-icon {
        width: 80px;
        height: 80px;
    }

    .page-news__category-title {
        font-size: 1rem;
    }

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

    .page-news__featured-item--large .page-news__featured-image {
        height: 200px;
    }

    .page-news__featured-title {
        font-size: 1.3rem;
    }

    .page-news__cta-section {
        padding: 50px 0;
    }

    .page-news__cta-title {
        font-size: 1.8rem;
    }

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

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

    .page-news__btn-primary,
    .page-news__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
    }

    .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-section,
    .page-news__latest-articles-section,
    .page-news__categories-section,
    .page-news__featured-news-section,
    .page-news__cta-section,
    .page-news__faq-section,
    .page-news__cta-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden !important; /* Prevent horizontal scroll */
    }
    .page-news__hero-section { padding-left: 0; padding-right: 0; } /* Hero content has its own padding */

    /* Ensure all images within content areas are responsive */
    .page-news .page-news__article-thumbnail,
    .page-news .page-news__category-icon,
    .page-news .page-news__featured-image {
        max-width: 100% !important;
        height: auto !important;
    }
}

@media (max-width: 480px) {
    .page-news__hero-image {
        height: 250px;
    }
    .page-news__main-title {
        font-size: 1.6rem;
    }
    .page-news__section-title {
        font-size: 1.5rem;
    }
    .page-news__article-thumbnail-wrapper {
        height: 150px;
    }
    .page-news__article-title {
        font-size: 1.1rem;
    }
    .page-news__read-more-btn {
        width: 100%;
    }
    .page-news__category-icon {
        width: 60px;
        height: 60px;
    }
    .page-news__featured-image {
        height: 150px;
    }
    .page-news__featured-item--large .page-news__featured-image {
        height: 180px;
    }
    .page-news__featured-title {
        font-size: 1.1rem;
    }
    .page-news__cta-title {
        font-size: 1.6rem;
    }
    .page-news__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-news__faq-answer {
        padding: 0 20px 15px;
    }
}