.page-news__hero-section {
    padding-top: 10px;
    padding-bottom: 40px;
    background-color: #F4F7FB;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-news__hero-image-wrapper {
    width: 100%;
    max-width: 1390px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-news__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-news__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-news__main-title {
    color: #000000;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    max-width: 100%;
}

.page-news__description {
    color: #1F2D3D;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.page-news__button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 25px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-news__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-news__latest-news-section {
    padding: 60px 20px;
    background-color: #F4F7FB;
    max-width: 1390px;
    margin: 0 auto;
}

.page-news__section-title {
    color: #000000;
    font-weight: 700;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 50px;
}

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

.page-news__news-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid #D6E2FF;
}

.page-news__news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

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

.page-news__card-content {
    padding: 20px;
}

.page-news__card-title {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.page-news__card-title a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-news__card-title a:hover {
    color: #2F6BFF;
}

.page-news__card-date {
    font-size: 0.9em;
    color: #1F2D3D;
    margin-bottom: 15px;
}

.page-news__card-summary {
    font-size: 1em;
    color: #1F2D3D;
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-news__card-link {
    display: inline-block;
    color: #2F6BFF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-news__card-link:hover {
    color: #6FA3FF;
}

.page-news__view-all-wrapper {
    text-align: center;
    margin-top: 50px;
}

.page-news__button--secondary {
    background: none;
    border: 2px solid #2F6BFF;
    color: #2F6BFF;
    box-shadow: none;
}

.page-news__button--secondary:hover {
    background: #2F6BFF;
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-news__cta-section {
    background-color: #2F6BFF;
    padding: 80px 20px;
    text-align: center;
    color: #FFFFFF;
    border-radius: 12px;
    margin: 40px auto;
    max-width: 1390px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-news__cta-title {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 2.2em;
    margin-bottom: 20px;
    line-height: 1.3;
}

.page-news__cta-description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-news__button--cta {
    background: #FFFFFF;
    color: #2F6BFF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-news__button--cta:hover {
    background: #F0F0F0;
    color: #1F2D3D;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .page-news__main-title {
        font-size: 2em;
    }

    .page-news__description {
        font-size: 1em;
    }

    .page-news__section-title {
        font-size: 2em;
    }

    .page-news__news-grid {
        grid-template-columns: 1fr;
    }

    .page-news__card-image {
        height: 180px;
    }

    .page-news__card-title {
        font-size: 1.1em;
    }

    .page-news__cta-title {
        font-size: 1.8em;
    }

    .page-news__cta-description {
        font-size: 1em;
    }

    .page-news__hero-image-wrapper img, .page-news__news-card img {
        max-width: 100%;
        height: auto;
    }
}