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

.page-index-latest-news-updates {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

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

.page-index-latest-news-updates__hero-section {
    background: linear-gradient(135deg, #1A2E44 0%, #3a5c83 100%); /* Dark blue gradient */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-latest-news-updates__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:okkinh,abstract,pattern,subtle]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-index-latest-news-updates__hero-section > * {
    position: relative;
    z-index: 1;
}

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

.page-index-latest-news-updates__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-index-latest-news-updates__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #1A2E44; /* Dark blue text on gold */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-latest-news-updates__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-index-latest-news-updates__content-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.page-index-latest-news-updates__section-title {
    font-size: 2.5em;
    color: #1A2E44; /* Dark blue for section titles */
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-index-latest-news-updates__news-article {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-index-latest-news-updates__article-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.page-index-latest-news-updates__article-title {
    font-size: 1.8em;
    color: #1A2E44;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-index-latest-news-updates__article-text {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 25px;
    max-width: 800px;
}

.page-index-latest-news-updates__read-more-button {
    display: inline-block;
    background-color: #1A2E44; /* Dark blue button */
    color: #FFD700; /* Gold text */
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-latest-news-updates__read-more-button:hover {
    background-color: #3a5c83; /* Lighter blue on hover */
    transform: translateY(-2px);
}

.page-index-latest-news-updates__cta-bottom {
    background-color: #1A2E44;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-index-latest-news-updates__cta-bottom .page-index-latest-news-updates__section-title {
    color: #FFD700;
}

.page-index-latest-news-updates__cta-bottom .page-index-latest-news-updates__subtitle {
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-index-latest-news-updates__main-title {
        font-size: 2.5em;
    }

    .page-index-latest-news-updates__subtitle {
        font-size: 1.1em;
    }

    .page-index-latest-news-updates__section-title {
        font-size: 2em;
    }

    .page-index-latest-news-updates__article-title {
        font-size: 1.5em;
    }

    .page-index-latest-news-updates__article-text {
        font-size: 1em;
    }

    .page-index-latest-news-updates__news-article {
        padding: 20px;
    }
}

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

    .page-index-latest-news-updates__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-index-latest-news-updates__section-title {
        font-size: 1.8em;
    }

    .page-index-latest-news-updates__article-title {
        font-size: 1.3em;
    }
}