/* style/news.css */
.page-news {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-news__hero-section {
    background: linear-gradient(135deg, #0A6847, #54957e);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-news__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    line-height: 1.2;
}

.page-news__hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #e0e0e0;
}

.page-news__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A6847;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-news__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-news__section-title {
    font-size: 2.5em;
    color: #0A6847;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 60px;
    font-weight: bold;
}

.page-news__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #555;
}

.page-news__latest-news-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.page-news__news-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-news__news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-news__news-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

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

.page-news__news-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #0A6847;
    line-height: 1.3;
}

.page-news__news-title a {
    color: #0A6847;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-news__news-title a:hover {
    color: #FFD700;
}

.page-news__news-excerpt {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-news__read-more-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A6847;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.page-news__read-more-button:hover {
    background-color: #e6c200;
}

.page-news__in-depth-analysis {
    padding: 80px 0;
    background-color: #f0f4f7;
}

.page-news__sub-title {
    font-size: 2em;
    color: #0A6847;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-news__paragraph {
    margin-bottom: 20px;
    color: #444;
    font-size: 1.05em;
    line-height: 1.7;
}

.page-news__list {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
    color: #444;
}

.page-news__list-item-strong {
    color: #0A6847;
}

.page-news__content-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-news__cta-bottom {
    background: linear-gradient(135deg, #0A6847, #3a8d6e);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-news__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-news__cta-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #e0e0e0;
}

.page-news__cta-button--large {
    padding: 18px 45px;
    font-size: 1.4em;
    margin-right: 20px;
}

.page-news__cta-link {
    color: #FFD700;
    text-decoration: underline;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.page-news__cta-link:hover {
    color: #fff;
}

.page-news__highlight {
    color: #0A6847;
    font-weight: bold;
}

.page-news__hero-section .page-news__highlight {
    color: #FFD700;
}

.page-news__cta-bottom .page-news__highlight {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-news__hero-title {
        font-size: 2.8em;
    }
    .page-news__section-title {
        font-size: 2em;
    }
    .page-news__news-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-news__cta-title {
        font-size: 2.2em;
    }
    .page-news__cta-button--large {
        margin-bottom: 20px;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .page-news__hero-section {
        padding: 80px 0;
    }
    .page-news__hero-title {
        font-size: 2.2em;
    }
    .page-news__hero-subtitle {
        font-size: 1.1em;
    }
    .page-news__section-title {
        font-size: 1.8em;
    }
    .page-news__sub-title {
        font-size: 1.6em;
    }
    .page-news__cta-button {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-news__cta-bottom {
        padding: 60px 0;
    }
    .page-news__cta-title {
        font-size: 1.8em;
    }
    .page-news__cta-description {
        font-size: 1em;
    }
    .page-news__cta-button--large {
        font-size: 1.2em;
        padding: 15px 30px;
    }
    .page-news__cta-link {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-news__hero-section {
        padding: 60px 0;
    }
    .page-news__hero-title {
        font-size: 1.8em;
    }
    .page-news__hero-subtitle {
        font-size: 0.9em;
    }
    .page-news__section-title {
        font-size: 1.5em;
    }
    .page-news__news-grid {
        grid-template-columns: 1fr;
    }
    .page-news__news-image {
        height: 180px;
    }
    .page-news__news-title {
        font-size: 1.3em;
    }
    .page-news__cta-bottom {
        padding: 40px 0;
    }
    .page-news__cta-title {
        font-size: 1.5em;
    }
    .page-news__cta-button--large {
        display: block;
        width: fit-content;
        margin: 0 auto 15px;
    }
    .page-news__cta-link {
        display: block;
        margin-top: 10px;
    }
}