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

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

.page-index-latest-news__hero {
    background: linear-gradient(135deg, #0A2239 0%, #304C63 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-index-latest-news__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 0;
}

.page-index-latest-news__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-index-latest-news__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-index-latest-news__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-index-latest-news__hero-cta {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2239;
    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__hero-cta:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-index-latest-news__section {
    padding: 60px 0;
}

.page-index-latest-news__section:nth-of-type(even) {
    background-color: #f0f0f0;
}

.page-index-latest-news__section-title {
    font-size: 2.5em;
    color: #0A2239;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.page-index-latest-news__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__section-description {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.page-index-latest-news__features-grid,
.page-index-latest-news__news-grid,
.page-index-latest-news__guide-steps,
.page-index-latest-news__commitment-grid {
    display: grid;
    gap: 30px;
    margin-top: 30px;
}

.page-index-latest-news__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-index-latest-news__feature-item,
.page-index-latest-news__guide-item,
.page-index-latest-news__commitment-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-latest-news__feature-item:hover,
.page-index-latest-news__guide-item:hover,
.page-index-latest-news__commitment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-latest-news__feature-icon,
.page-index-latest-news__guide-icon,
.page-index-latest-news__commitment-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-index-latest-news__feature-title,
.page-index-latest-news__guide-title,
.page-index-latest-news__commitment-title {
    font-size: 1.5em;
    color: #0A2239;
    margin-bottom: 15px;
}

.page-index-latest-news__feature-text,
.page-index-latest-news__guide-text,
.page-index-latest-news__commitment-text {
    color: #666;
    font-size: 1em;
}

.page-index-latest-news__news-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.page-index-latest-news__news-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-latest-news__news-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

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

.page-index-latest-news__news-title {
    font-size: 1.4em;
    color: #0A2239;
    margin-bottom: 10px;
    line-height: 1.4;
}

.page-index-latest-news__news-title a {
    color: #0A2239;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-index-latest-news__news-title a:hover {
    color: #FFD700;
}

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

.page-index-latest-news__news-excerpt {
    color: #666;
    font-size: 1em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-index-latest-news__news-link,
.page-index-latest-news__guide-cta,
.page-index-latest-news__commitment-link {
    display: inline-flex;
    align-items: center;
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    margin-top: auto;
}

.page-index-latest-news__news-link:hover,
.page-index-latest-news__guide-cta:hover,
.page-index-latest-news__commitment-link:hover {
    color: #e6c200;
}

.page-index-latest-news__arrow {
    margin-left: 8px;
    font-size: 1.2em;
    line-height: 1;
}

.page-index-latest-news__guide-steps {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-index-latest-news__guide-cta {
    background-color: #0A2239;
    color: #FFD700;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 0.95em;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-index-latest-news__guide-cta:hover {
    background-color: #FFD700;
    color: #0A2239;
}

.page-index-latest-news__commitment-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.page-index-latest-news__commitment-link {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    color: #0A2239;
}

.page-index-latest-news__commitment-link:hover {
    color: #FFD700;
}

.page-index-latest-news__cta-bottom {
    background-color: #0A2239;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

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

.page-index-latest-news__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-index-latest-news__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2239;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-latest-news__hero-title {
        font-size: 2.5em;
    }
    .page-index-latest-news__section-title {
        font-size: 2em;
    }
    .page-index-latest-news__news-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    .page-index-latest-news__commitment-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-index-latest-news__hero {
        padding: 60px 0;
    }
    .page-index-latest-news__hero-title {
        font-size: 2em;
    }
    .page-index-latest-news__hero-subtitle {
        font-size: 1.1em;
    }
    .page-index-latest-news__section {
        padding: 40px 0;
    }
    .page-index-latest-news__section-title {
        font-size: 1.8em;
    }
    .page-index-latest-news__features-grid,
    .page-index-latest-news__guide-steps {
        grid-template-columns: 1fr;
    }
    .page-index-latest-news__cta-title {
        font-size: 2.2em;
    }
    .page-index-latest-news__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-index-latest-news__hero-title {
        font-size: 1.8em;
    }
    .page-index-latest-news__hero-subtitle {
        font-size: 1em;
    }
    .page-index-latest-news__hero-cta {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-latest-news__section-title {
        font-size: 1.5em;
    }
    .page-index-latest-news__section-description {
        font-size: 0.95em;
    }
    .page-index-latest-news__news-image {
        height: 180px;
    }
    .page-index-latest-news__news-title {
        font-size: 1.2em;
    }
    .page-index-latest-news__cta-title {
        font-size: 1.8em;
    }
    .page-index-latest-news__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}