.news-page {
    padding: 10px 0 30px;
}

.news-hero {
    background: linear-gradient(135deg, #163a86 0%, #2457b8 55%, #ff8300 100%);
    color: #ffffff;
    border-radius: 22px;
    padding: 34px 38px;
    margin-bottom: 34px;
    box-shadow: 0 16px 35px rgba(22, 58, 134, 0.18);
}

.news-kicker {
    margin: 0 0 8px;
    color: #ffdfb8;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.news-hero h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    font-weight: 800;
}

.news-hero-text {
    max-width: 760px;
    margin: 14px 0 0;
    font-size: 1.08rem;
    line-height: 1.65;
    opacity: 0.96;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    align-items: stretch;
}

.news-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(16, 36, 77, 0.11);
    border: 1px solid rgba(22, 58, 134, 0.08);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(16, 36, 77, 0.16);
}

.news-card-image-link {
    display: block;
    background: #edf4ff;
}

.news-card-image {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.news-card-placeholder {
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eaf2ff, #ffffff);
    color: #163a86;
    font-size: 1.5rem;
    font-weight: 800;
}

.news-card-body {
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-card-date {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.news-card-title {
    font-size: 1.28rem;
    line-height: 1.28;
    margin: 0 0 12px;
    font-weight: 800;
}

.news-card-title a {
    color: #17233c;
    text-decoration: none;
}

.news-card-title a:hover {
    color: #ff8300;
}

.news-card-summary {
    color: #4d5b70;
    line-height: 1.6;
    margin-bottom: 18px;
    flex-grow: 1;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 10px 16px;
    border-radius: 999px;
    background: #163a86;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.news-read-more:hover {
    background: #ff8300;
    color: #ffffff;
    transform: translateY(-1px);
}

.news-empty {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 28px rgba(16, 36, 77, 0.09);
}

.news-detail {
    max-width: 920px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 16px 40px rgba(16, 36, 77, 0.12);
}

.news-back-link {
    display: inline-flex;
    margin-bottom: 20px;
    color: #163a86;
    text-decoration: none;
    font-weight: 700;
}

.news-back-link:hover {
    color: #ff8300;
}

.news-detail-header h1 {
    color: #17233c;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.12;
    font-weight: 850;
    margin: 0 0 12px;
}

.news-detail-date {
    color: #6c757d;
    margin-bottom: 18px;
}

.news-detail-summary {
    font-size: 1.18rem;
    line-height: 1.7;
    color: #40506a;
    background: #f4f7fc;
    border-left: 5px solid #ff8300;
    padding: 16px 18px;
    border-radius: 14px;
    margin: 18px 0 24px;
}

.news-detail-image-wrap {
    margin: 24px 0;
    border-radius: 20px;
    overflow: hidden;
    background: #edf4ff;
}

.news-detail-image {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

.news-detail-content {
    color: #26344d;
    font-size: 1.08rem;
    line-height: 1.85;
}

.news-detail-content p {
    margin-bottom: 1.1rem;
}

.news-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid #e8edf5;
}

@media (max-width: 991px) {
    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .news-hero {
        padding: 26px 22px;
        border-radius: 18px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-card-image,
    .news-card-placeholder {
        height: 220px;
    }

    .news-detail {
        padding: 24px 18px;
        border-radius: 18px;
    }
}
