/* style/resources-latest-news.css */
.page-resources-latest-news {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-resources-latest-news__hero {
    background: linear-gradient(135deg, #0A246A 0%, #3a5c9f 100%); /* Dark blue gradient */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-resources-latest-news__hero-title {
    font-size: 3.2em;
    margin-bottom: 15px;
    font-weight: 700;
    color: #FFD700; /* Gold for emphasis */
}

.page-resources-latest-news__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.page-resources-latest-news__hero-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A246A;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-resources-latest-news__hero-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-resources-latest-news__article-section {
    padding: 60px 0;
}

.page-resources-latest-news__article-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-latest-news__article-content article {
    max-width: 750px;
    margin: 0 auto;
}

.page-resources-latest-news__article-heading {
    font-size: 2.5em;
    color: #0A246A;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.page-resources-latest-news__article-meta {
    text-align: center;
    color: #666;
    font-size: 0.9em;
    margin-bottom: 30px;
}

.page-resources-latest-news__article-image {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-resources-latest-news__article-subheading {
    font-size: 1.8em;
    color: #0A246A;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-resources-latest-news__article-content p {
    margin-bottom: 1.2em;
    font-size: 1.05em;
    color: #444;
}

.page-resources-latest-news__call-to-action {
    text-align: center;
    background-color: #f0f4f7;
    padding: 40px 20px;
    border-radius: 8px;
    margin-top: 50px;
    border: 1px dashed #0A246A;
}

.page-resources-latest-news__call-to-action p {
    font-size: 1.4em;
    color: #0A246A;
    margin-bottom: 25px;
    font-weight: 600;
}

.page-resources-latest-news__cta-button {
    display: inline-block;
    background-color: #0A246A;
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    margin: 0 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-resources-latest-news__cta-button:hover {
    background-color: #1a3c7e;
    transform: translateY(-2px);
}

.page-resources-latest-news__cta-button--secondary {
    background-color: #FFD700;
    color: #0A246A;
}

.page-resources-latest-news__cta-button--secondary:hover {
    background-color: #e6c200;
}

.page-resources-latest-news__back-link {
    text-align: center;
    margin-top: 40px;
}

.page-resources-latest-news__back-link a {
    color: #0A246A;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.page-resources-latest-news__back-link a:hover {
    color: #FFD700;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-resources-latest-news__hero-title {
        font-size: 2.5em;
    }

    .page-resources-latest-news__hero-subtitle {
        font-size: 1.1em;
    }

    .page-resources-latest-news__hero-button,
    .page-resources-latest-news__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-resources-latest-news__article-heading {
        font-size: 2em;
    }

    .page-resources-latest-news__article-subheading {
        font-size: 1.5em;
    }

    .page-resources-latest-news__article-content {
        padding: 25px;
    }

    .page-resources-latest-news__call-to-action p {
        font-size: 1.2em;
    }

    .page-resources-latest-news__cta-button {
        margin: 5px;
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .page-resources-latest-news__hero-title {
        font-size: 2em;
    }

    .page-resources-latest-news__hero-subtitle {
        font-size: 1em;
    }

    .page-resources-latest-news__article-heading {
        font-size: 1.8em;
    }

    .page-resources-latest-news__article-subheading {
        font-size: 1.3em;
    }

    .page-resources-latest-news__article-content {
        padding: 15px;
    }

    .page-resources-latest-news__hero-button,
    .page-resources-latest-news__cta-button {
        width: 100%;
        max-width: 280px;
    }
}