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

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

.page-news__hero {
    background-color: #003366; /* Deep Sea Blue */
    color: #FFFFFF; /* White text for contrast */
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.page-news__hero-content {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-news__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFCC00; /* Golden Yellow for emphasis */
    line-height: 1.2;
}

.page-news__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-news__hero-btn {
    display: inline-block;
    background-color: #FFCC00; /* Golden Yellow */
    color: #003366; /* Deep Sea Blue for contrast */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid #FFCC00;
}

.page-news__hero-btn:hover {
    background-color: #e6b800; /* Darker yellow on hover */
    color: #001a33; /* Darker blue on hover */
    border-color: #e6b800;
}

.page-news__hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-news__hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-news__introduction,
.page-news__featured-articles,
.page-news__categories,
.page-news__in-depth-analysis,
.page-news__cta-banner,
.page-news__conclusion {
    padding: 60px 0;
}

.page-news__introduction {
    background-color: #f9f9f9;
}

.page-news__section-title {
    font-size: 2.5em;
    color: #003366; /* Deep Sea Blue */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-news__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFCC00; /* Golden Yellow */
    border-radius: 2px;
}

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

.page-news__introduction p,
.page-news__in-depth-analysis p,
.page-news__conclusion p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
}

.page-news__featured-articles {
    background-color: #eaf2f8; /* Light blue tint */
}

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

.page-news__featured-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news__featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

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

.page-news__featured-body {
    padding: 25px;
}

.page-news__featured-title {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 15px;
}

.page-news__featured-description {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
}

.page-news__btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-align: center;
}

.page-news__btn--primary {
    background-color: #FFCC00; /* Golden Yellow */
    color: #003366; /* Deep Sea Blue */
    border: 2px solid #FFCC00;
}

.page-news__btn--primary:hover {
    background-color: #e6b800;
    color: #001a33;
    border-color: #e6b800;
}

.page-news__btn--secondary {
    background-color: #003366; /* Deep Sea Blue */
    color: #FFCC00; /* Golden Yellow */
    border: 2px solid #003366;
}

.page-news__btn--secondary:hover {
    background-color: #001a33;
    color: #FFCC00;
    border-color: #001a33;
}

.page-news__btn--block {
    display: block;
    width: fit-content;
    margin: 30px auto 0 auto;
    padding: 15px 30px;
    font-size: 1.1em;
}

.page-news__categories {
    background-color: #FFFFFF;
}

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

.page-news__article-card {
    background-color: #f0f8ff; /* Very light blue */
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news__article-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

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

.page-news__article-content {
    padding: 20px;
}

.page-news__article-title {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-news__article-title a {
    color: #003366; /* Deep Sea Blue */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-news__article-title a:hover {
    color: #0055aa;
    text-decoration: underline;
}

.page-news__article-excerpt {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 15px;
}

.page-news__in-depth-analysis {
    background-color: #f9f9f9;
}

.page-news__sub-section-title {
    font-size: 2em;
    color: #003366;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFCC00;
    padding-left: 15px;
}

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

.page-news__cta-banner {
    background-color: #003366; /* Deep Sea Blue */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.page-news__cta-title {
    font-size: 2.8em;
    color: #FFCC00; /* Golden Yellow */
    margin-bottom: 20px;
}

.page-news__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-news__cta-buttons .page-news__btn {
    padding: 15px 30px;
    font-size: 1.1em;
}

.page-news__conclusion {
    background-color: #FFFFFF;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-news__hero {
        flex-direction: column;
        text-align: center;
    }

    .page-news__hero-content {
        order: 2;
    }

    .page-news__hero-image {
        order: 1;
        margin-bottom: 40px;
    }

    .page-news__hero-title {
        font-size: 2.5em;
    }

    .page-news__hero-description {
        font-size: 1.1em;
    }

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

    .page-news__sub-section-title {
        font-size: 1.7em;
    }

    .page-news__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-news__hero,
    .page-news__introduction,
    .page-news__featured-articles,
    .page-news__categories,
    .page-news__in-depth-analysis,
    .page-news__cta-banner,
    .page-news__conclusion {
        padding: 40px 0;
    }

    .page-news__hero-title {
        font-size: 2em;
    }

    .page-news__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-news__section-title::after {
        width: 60px;
        height: 3px;
    }

    .page-news__featured-grid,
    .page-news__article-list {
        grid-template-columns: 1fr;
    }

    .page-news__featured-body,
    .page-news__article-content {
        padding: 15px;
    }

    .page-news__featured-title {
        font-size: 1.5em;
    }

    .page-news__article-title {
        font-size: 1.3em;
    }

    .page-news__sub-section-title {
        font-size: 1.5em;
    }

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

    .page-news__cta-buttons .page-news__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-news__hero {
        padding: 50px 0;
    }

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

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

    .page-news__hero-btn {
        padding: 12px 25px;
        font-size: 1em;
    }

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

    .page-news__sub-section-title {
        font-size: 1.3em;
    }

    .page-news__cta-title {
        font-size: 1.6em;
    }

    .page-news__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-news__cta-buttons .page-news__btn {
        width: 80%;
    }
}