.news-page {
    background: #f7f8fa;
    color: #172033;
}

.news-page .container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.news-hero {
    padding: 110px 0 80px;
    background: #102a43;
    color: #ffffff;
}

.news-hero .section-label {
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #74c0fc;
}

.news-hero h1 {
    margin: 0 0 20px;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1;
}

.news-hero p {
    max-width: 720px;
    margin: 0;
    font-size: 19px;
    line-height: 1.7;
    color: #d9e7f5;
}

.news-section {
    padding: 80px 0 100px;
}

.news-featured {
    margin-bottom: 45px;
    padding: 55px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(16, 42, 67, 0.1);
}

.news-featured-content {
    max-width: 850px;
}

.news-date {
    margin: 0 0 15px;
    font-size: 14px;
    font-weight: 700;
    color: #61758a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-featured h2,
.news-card h2 {
    margin: 0 0 20px;
    color: #102a43;
}

.news-featured h2 {
    font-size: clamp(30px, 4vw, 46px);
}

.news-featured p,
.news-card p {
    font-size: 17px;
    line-height: 1.75;
    color: #526579;
}

.news-button {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 25px;
    border-radius: 8px;
    background: #1479c9;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s ease,
                transform 0.2s ease;
}

.news-button:hover {
    background: #0d65ac;
    transform: translateY(-2px);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.news-card {
    display: flex;
    flex-direction: column;
    padding: 32px;
    border: 1px solid #e0e6ec;
    border-radius: 18px;
    background: #ffffff;
    transition: transform 0.2s ease,
                box-shadow 0.2s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(16, 42, 67, 0.1);
}

.news-card h2 {
    font-size: 24px;
    line-height: 1.3;
}

.news-card p {
    flex-grow: 1;
}

.news-link {
    display: inline-block;
    margin-top: 10px;
    color: #1479c9;
    font-weight: 700;
    text-decoration: none;
}

.news-link:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-featured {
        padding: 38px;
    }
}

@media (max-width: 600px) {
    .news-hero {
        padding: 80px 0 60px;
    }

    .news-section {
        padding: 55px 0 75px;
    }

    .news-featured {
        padding: 28px;
    }

    .news-card {
        padding: 26px;
    }
}