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

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

.page-index-latest-news-highlights__hero-section {
    background: linear-gradient(135deg, #0A2E36, #1A4F5B);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.page-index-latest-news-highlights__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    line-height: 1.2;
}

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

.page-index-latest-news-highlights__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #0A2E36; /* Deep Sea Blue */
    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;
}

.page-index-latest-news-highlights__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-index-latest-news-highlights__section-title {
    font-size: 2.2em;
    color: #0A2E36;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.page-index-latest-news-highlights__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-index-latest-news-highlights__section-description {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-latest-news-highlights__news-grid {
    padding: 60px 0;
    background-color: #fff;
}

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

.page-index-latest-news-highlights__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;
}

.page-index-latest-news-highlights__article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-latest-news-highlights__article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-index-latest-news-highlights__article-content {
    padding: 25px;
}

.page-index-latest-news-highlights__article-title {
    font-size: 1.5em;
    color: #0A2E36;
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-index-latest-news-highlights__article-date {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 15px;
}

.page-index-latest-news-highlights__article-excerpt {
    font-size: 1em;
    color: #444;
    margin-bottom: 20px;
}

.page-index-latest-news-highlights__read-more {
    display: inline-block;
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-index-latest-news-highlights__read-more:hover {
    color: #0A2E36;
}

.page-index-latest-news-highlights__featured-content {
    background-color: #f0f4f7;
    padding: 80px 0;
}

.page-index-latest-news-highlights__featured-article {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.page-index-latest-news-highlights__featured-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.page-index-latest-news-highlights__featured-text {
    padding: 30px;
}

.page-index-latest-news-highlights__call-to-action {
    background-color: #0A2E36;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-index-latest-news-highlights__cta-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-index-latest-news-highlights__cta-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

.page-index-latest-news-highlights__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-index-latest-news-highlights__main-cta-button,
.page-index-latest-news-highlights__secondary-cta-button {
    display: inline-block;
    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, color 0.3s ease;
}

.page-index-latest-news-highlights__main-cta-button {
    background-color: #FFD700;
    color: #0A2E36;
}

.page-index-latest-news-highlights__main-cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-index-latest-news-highlights__secondary-cta-button {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
}

.page-index-latest-news-highlights__secondary-cta-button:hover {
    background-color: #FFD700;
    color: #0A2E36;
    transform: translateY(-3px);
}

.page-index-latest-news-highlights__faq {
    padding: 80px 0;
    background-color: #fff;
}

.page-index-latest-news-highlights__faq-items {
    display: grid;
    gap: 25px;
    margin-top: 40px;
}

.page-index-latest-news-highlights__faq-item {
    background-color: #f9f9f9;
    border-left: 5px solid #FFD700;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-latest-news-highlights__faq-question {
    font-size: 1.3em;
    color: #0A2E36;
    margin-bottom: 10px;
}

.page-index-latest-news-highlights__faq-answer {
    font-size: 1em;
    color: #555;
}

@media (min-width: 768px) {
    .page-index-latest-news-highlights__featured-article {
        flex-direction: row;
    }
    .page-index-latest-news-highlights__featured-image {
        width: 50%;
        height: auto;
    }
    .page-index-latest-news-highlights__featured-text {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .page-index-latest-news-highlights__hero-title {
        font-size: 2em;
    }
    .page-index-latest-news-highlights__hero-subtitle {
        font-size: 1em;
    }
    .page-index-latest-news-highlights__section-title {
        font-size: 1.8em;
    }
    .page-index-latest-news-highlights__articles {
        grid-template-columns: 1fr;
    }
    .page-index-latest-news-highlights__featured-image {
        height: 250px;
    }
    .page-index-latest-news-highlights__cta-buttons {
        flex-direction: column;
    }
    .page-index-latest-news-highlights__main-cta-button,
    .page-index-latest-news-highlights__secondary-cta-button {
        width: 100%;
        text-align: center;
    }
}