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

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

.page-index-news-updates__hero {
    background: linear-gradient(135deg, #0056B3, #FFC107);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-index-news-updates__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #fff;
    font-weight: bold;
}

.page-index-news-updates__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #eee;
}

.page-index-news-updates__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 1em;
}

.page-index-news-updates__btn--primary {
    background-color: #FFC107;
    color: #0056B3;
}

.page-index-news-updates__btn--primary:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

.page-index-news-updates__btn--secondary {
    background-color: #0056B3;
    color: #fff;
    border: 1px solid #0056B3;
}

.page-index-news-updates__btn--secondary:hover {
    background-color: #003f8c;
    transform: translateY(-2px);
}

.page-index-news-updates__articles-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-index-news-updates__section-title {
    font-size: 2.5em;
    color: #0056B3;
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
}

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

.page-index-news-updates__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;
    display: flex;
    flex-direction: column;
}

.page-index-news-updates__article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

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

.page-index-news-updates__article-title {
    font-size: 1.6em;
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-index-news-updates__article-title a {
    color: #0056B3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-index-news-updates__article-title a:hover {
    color: #FFC107;
}

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

.page-index-news-updates__article-excerpt {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-index-news-updates__article-subtitle {
    font-size: 1.2em;
    color: #0056B3;
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-index-news-updates__article-list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #555;
}

.page-index-news-updates__article-list li {
    margin-bottom: 5px;
}

.page-index-news-updates__article-text {
    margin-bottom: 20px;
    color: #555;
}

.page-index-news-updates__cta-section {
    background-color: #0056B3;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-index-news-updates__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFC107;
    font-weight: bold;
}

.page-index-news-updates__cta-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #eee;
}

.page-index-news-updates__newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.page-index-news-updates__newsletter-input {
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    width: 100%;
    max-width: 350px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
}

.page-index-news-updates__newsletter-input::placeholder {
    color: #999;
}

.page-index-news-updates__cta-small-text {
    font-size: 0.9em;
    color: #ccc;
}

.page-index-news-updates__cta-link {
    color: #FFC107;
    text-decoration: none;
    font-weight: bold;
}

.page-index-news-updates__cta-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-news-updates__hero-title {
        font-size: 2.8em;
    }
    .page-index-news-updates__section-title {
        font-size: 2em;
    }
    .page-index-news-updates__article-title {
        font-size: 1.4em;
    }
    .page-index-news-updates__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-index-news-updates__hero {
        padding: 60px 0;
    }
    .page-index-news-updates__hero-title {
        font-size: 2.2em;
    }
    .page-index-news-updates__hero-description {
        font-size: 1em;
    }
    .page-index-news-updates__articles-section {
        padding: 40px 0;
    }
    .page-index-news-updates__section-title {
        font-size: 1.8em;
    }
    .page-index-news-updates__article-grid {
        grid-template-columns: 1fr;
    }
    .page-index-news-updates__article-image {
        height: 180px;
    }
    .page-index-news-updates__article-content {
        padding: 20px;
    }
    .page-index-news-updates__article-title {
        font-size: 1.2em;
    }
    .page-index-news-updates__cta-section {
        padding: 40px 0;
    }
    .page-index-news-updates__cta-title {
        font-size: 1.8em;
    }
    .page-index-news-updates__newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    .page-index-news-updates__newsletter-input {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .page-index-news-updates__hero-title {
        font-size: 1.8em;
    }
    .page-index-news-updates__section-title {
        font-size: 1.5em;
    }
    .page-index-news-updates__cta-title {
        font-size: 1.5em;
    }
    .page-index-news-updates__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}