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

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

.page-news__hero-section {
    background: linear-gradient(135deg, #007bff, #28a745);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.page-news__hero-content {
    max-width: 800px;
}

.page-news__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.2;
}

.page-news__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-news__hero-cta-button {
    display: inline-block;
    background-color: #ff8400; /* Contrast color for CTA */
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1em;
    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__hero-cta-button:hover {
    background-color: #e07200;
    transform: translateY(-2px);
}

.page-news__hero-image-wrapper {
    max-width: 600px;
    margin-top: 40px;
}

.page-news__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-news__latest-articles,
.page-news__deeper-insights {
    padding: 60px 0;
}

.page-news__latest-articles {
    background-color: #fff;
}

.page-news__section-title {
    font-size: 2.2em;
    color: #007bff;
    text-align: center;
    margin-bottom: 20px;
}

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

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

.page-news__article-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px 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__article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-news__article-image {
    width: 100%;
    height: 200px;
    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.5em;
    margin-top: 0;
    margin-bottom: 15px;
    color: #007bff;
    line-height: 1.3;
}

.page-news__article-title a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-news__article-title a:hover {
    color: #0056b3;
}

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

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

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

.page-news__cta-banner {
    background: linear-gradient(90deg, #007bff, #28a745);
    color: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-news__cta-title {
    font-size: 2em;
    margin-bottom: 15px;
    color: #fff;
}

.page-news__cta-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-news__cta-button {
    display: inline-block;
    background-color: #ff8400;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1em;
    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: #e07200;
    transform: translateY(-2px);
}

.page-news__deeper-insights {
    background-color: #f0f2f5;
}

.page-news__deeper-insights h2 {
    color: #007bff;
    margin-bottom: 30px;
}

.page-news__deeper-insights h3 {
    color: #28a745;
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-news__deeper-insights p {
    font-size: 1.05em;
    margin-bottom: 20px;
    color: #444;
}

.page-news__deeper-insights ul,
.page-news__deeper-insights ol {
    margin-left: 25px;
    margin-bottom: 20px;
    color: #444;
}

.page-news__deeper-insights li {
    margin-bottom: 10px;
    font-size: 1.0em;
}

.page-news__cta-button--bottom {
    margin-top: 40px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-news__hero-title {
        font-size: 2.2em;
    }
    .page-news__section-title {
        font-size: 1.8em;
    }
    .page-news__article-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-news__cta-title {
        font-size: 1.7em;
    }
}

@media (max-width: 768px) {
    .page-news__hero-section {
        flex-direction: column;
        padding: 60px 15px;
    }
    .page-news__hero-title {
        font-size: 1.8em;
    }
    .page-news__hero-description {
        font-size: 1em;
    }
    .page-news__latest-articles,
    .page-news__deeper-insights {
        padding: 40px 0;
    }
    .page-news__section-title {
        font-size: 1.6em;
    }
    .page-news__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-news__article-content {
        padding: 20px;
    }
    .page-news__article-title {
        font-size: 1.3em;
    }
    .page-news__cta-banner {
        padding: 30px;
    }
    .page-news__cta-title {
        font-size: 1.5em;
    }
    .page-news__cta-description {
        font-size: 1em;
    }
    .page-news__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-news__hero-title {
        font-size: 1.5em;
    }
    .page-news__hero-cta-button {
        font-size: 0.9em;
        padding: 10px 20px;
    }
    .page-news__section-title {
        font-size: 1.4em;
    }
    .page-news__article-grid {
        grid-template-columns: 1fr;
    }
    .page-news__cta-title {
        font-size: 1.3em;
    }
    .page-news__cta-button {
        font-size: 0.9em;
        padding: 10px 20px;
    }
    .page-news__deeper-insights h3 {
        font-size: 1.4em;
    }
    .page-news__deeper-insights p,
    .page-news__deeper-insights li {
        font-size: 0.9em;
    }
}