/* style/index-latest-news.css */

.page-index-latest-news {
    font-family: 'Arial', sans-serif;
    color: #0A1931; /* Dark blue for primary text */
    line-height: 1.6;
    background-color: #f8f9fa; /* Light background for readability */
}

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

/* Hero Section */
.page-index-latest-news__hero {
    background: linear-gradient(135deg, #0A1931 0%, #3a4760 100%); /* Dark blue gradient */
    color: #ffffff; /* White text on dark background */
    padding: 80px 0;
    text-align: center;
}

.page-index-latest-news__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #E0B400; /* Gold for emphasis */
    font-weight: bold;
}

.page-index-latest-news__hero-subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #e0e0e0; /* Lighter white for subtitle */
}

.page-index-latest-news__hero-cta-button {
    display: inline-block;
    background-color: #E0B400; /* Gold button */
    color: #0A1931; /* Dark blue text on gold button */
    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;
}

.page-index-latest-news__hero-cta-button:hover {
    background-color: #f5c73c; /* Lighter gold on hover */
    transform: translateY(-2px);
}

/* General Section Styling */
.page-index-latest-news__why-follow, .page-index-latest-news__featured-news, .page-index-latest-news__articles, .page-index-latest-news__cta-section {
    padding: 60px 0;
}

.page-index-latest-news__section-title {
    font-size: 2.2em;
    color: #0A1931; /* Dark blue for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-index-latest-news__section-description {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 50px;
    color: #333;
}

/* Why Follow Section */
.page-index-latest-news__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

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

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

.page-index-latest-news__why-item-title {
    font-size: 1.5em;
    color: #E0B400; /* Gold for item titles */
    margin-bottom: 15px;
}

.page-index-latest-news__why-item p {
    color: #555;
}

/* News Categories */
.page-index-latest-news__news-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-index-latest-news__category-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-index-latest-news__category-card:hover {
    transform: translateY(-5px);
}

.page-index-latest-news__category-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.page-index-latest-news__category-title {
    font-size: 1.4em;
    color: #0A1931;
    margin: 20px 0 10px;
    padding: 0 15px;
}

.page-index-latest-news__category-card p {
    font-size: 0.95em;
    color: #666;
    padding: 0 15px 20px;
}

/* Articles Section */
.page-index-latest-news__articles {
    background-color: #f0f2f5;
}

.page-index-latest-news__article-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.page-index-latest-news__article-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.page-index-latest-news__article-content {
    padding: 30px;
}

.page-index-latest-news__article-title {
    font-size: 1.8em;
    color: #0A1931;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-index-latest-news__article-meta {
    font-size: 0.9em;
    color: #888;
    margin-bottom: 15px;
}

.page-index-latest-news__article-summary {
    font-size: 1.05em;
    color: #444;
    margin-bottom: 20px;
}

.page-index-latest-news__article-full-content {
    font-size: 1em;
    color: #555;
    margin-bottom: 25px;
}

.page-index-latest-news__read-more-button {
    display: inline-block;
    background-color: #0A1931; /* Dark blue button */
    color: #ffffff; /* White text on dark blue button */
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-index-latest-news__read-more-button:hover {
    background-color: #1a2c4a; /* Slightly lighter dark blue on hover */
}

/* CTA Section */
.page-index-latest-news__cta-section {
    background: url('[GALLERY:bg:debet,abstract_pattern,dark_gold_texture]') no-repeat center center/cover; /* Background image for CTA */
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-index-latest-news__cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 49, 0.85); /* Dark blue overlay */
    z-index: 1;
}

.page-index-latest-news__cta-section > * {
    position: relative;
    z-index: 2;
}

.page-index-latest-news__cta-title {
    font-size: 2.5em;
    color: #E0B400; /* Gold for CTA title */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-index-latest-news__cta-description {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: #e0e0e0;
}

.page-index-latest-news__cta-image {
    max-width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (min-width: 768px) {
    .page-index-latest-news__article-card {
        flex-direction: row;
    }
    .page-index-latest-news__article-img {
        width: 40%;
        height: auto;
        max-height: 400px; /* Limit height for larger screens */
    }
    .page-index-latest-news__article-content {
        width: 60%;
    }
}

@media (max-width: 767px) {
    .page-index-latest-news__hero-title {
        font-size: 2em;
    }
    .page-index-latest-news__hero-subtitle {
        font-size: 1em;
    }
    .page-index-latest-news__section-title {
        font-size: 1.8em;
    }
    .page-index-latest-news__why-item-title {
        font-size: 1.3em;
    }
    .page-index-latest-news__article-title {
        font-size: 1.5em;
    }
    .page-index-latest-news__cta-title {
        font-size: 2em;
    }
    .page-index-latest-news__article-img {
        height: 200px; /* Adjust image height for mobile */
    }
}