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

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

/* Hero Section */
.page-latest-news-hero {
    background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Dark blue gradient */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-latest-news-hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFCC00; /* Gold for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-latest-news-hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-latest-news-btn-primary {
    display: inline-block;
    background-color: #FFCC00; /* Gold button */
    color: #003366; /* Dark blue text on gold */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-latest-news-btn-primary:hover {
    background-color: #e6b800; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

/* General Section Styling */
.page-latest-news-intro, .page-latest-news-articles, .page-latest-news-value, .page-latest-news-cta-bottom {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-latest-news-intro {
    background-color: #fff;
}

.page-latest-news-section-title {
    font-size: 2.5em;
    color: #003366; /* Dark blue for titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-latest-news-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #FFCC00; /* Gold underline */
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-latest-news-intro p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #444;
}

.page-latest-news-intro strong {
    color: #003366;
}

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

.page-latest-news-image-margin-top {
    margin-top: 50px;
}

/* Articles Grid */
.page-latest-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-latest-news-article-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-latest-news-article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-latest-news-article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

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

.page-latest-news-article-title {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #003366;
    line-height: 1.3;
}

.page-latest-news-article-title a {
    text-decoration: none;
    color: #003366;
    transition: color 0.3s ease;
}

.page-latest-news-article-title a:hover {
    color: #FFCC00;
}

.page-latest-news-article-description {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-latest-news-btn-secondary {
    display: inline-block;
    background-color: #003366; /* Dark blue button */
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.page-latest-news-btn-secondary:hover {
    background-color: #001a33; /* Darker blue on hover */
}

/* Value Section */
.page-latest-news-value {
    background-color: #f0f4f8;
}

.page-latest-news-value-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-latest-news-value-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-latest-news-value-item:hover {
    transform: translateY(-5px);
}

.page-latest-news-value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-latest-news-value-item h3 {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 15px;
}

.page-latest-news-value-item p {
    font-size: 1em;
    color: #666;
}

/* CTA Bottom Section */
.page-latest-news-cta-bottom {
    background: linear-gradient(135deg, #003366 0%, #FFCC00 100%); /* Blue to Gold gradient */
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-latest-news-cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #fff;
    font-weight: bold;
}

.page-latest-news-cta-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-latest-news-hero-title {
        font-size: 2.8em;
    }
    .page-latest-news-hero-subtitle,
    .page-latest-news-cta-description {
        font-size: 1.2em;
    }
    .page-latest-news-section-title {
        font-size: 2em;
    }
    .page-latest-news-article-title {
        font-size: 1.4em;
    }
    .page-latest-news-cta-title {
        font-size: 2.2em;
    }
    .page-latest-news-intro p {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-latest-news-hero {
        padding: 60px 0;
    }
    .page-latest-news-hero-title {
        font-size: 2.2em;
    }
    .page-latest-news-hero-subtitle {
        font-size: 1em;
    }
    .page-latest-news-btn-primary {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-latest-news-intro, .page-latest-news-articles, .page-latest-news-value, .page-latest-news-cta-bottom {
        padding: 40px 0;
    }
    .page-latest-news-section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-latest-news-grid {
        grid-template-columns: 1fr;
    }
    .page-latest-news-article-card {
        margin-bottom: 20px;
    }
    .page-latest-news-value-points {
        grid-template-columns: 1fr;
    }
    .page-latest-news-cta-title {
        font-size: 1.8em;
    }
    .page-latest-news-cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-latest-news-hero-title {
        font-size: 1.8em;
    }
    .page-latest-news-btn-primary {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-latest-news-section-title {
        font-size: 1.5em;
    }
    .page-latest-news-article-title {
        font-size: 1.2em;
    }
    .page-latest-news-cta-title {
        font-size: 1.6em;
    }
}