.news-page {
    padding-top: 120px;
    min-height: calc(100vh - 200px);
}

.news-section {
    padding: 50px 0 100px;
}

.page-header {
    text-align: center;
    margin-bottom: 54px;
}

.page-title {
    font-size: 3.3rem;
    margin-bottom: 14px;
}

.page-description {
    max-width: 760px;
    margin: 0 auto;
    color: var(--gray);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.news-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.news-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.news-title {
    font-size: 1.5rem;
}

.news-excerpt {
    color: var(--gray);
}

.news-meta {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(26, 54, 93, 0.08);
    padding-top: 18px;
}

.news-date {
    color: var(--gray);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--gradient-primary);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.pagination {
    margin-top: 42px;
}

.empty-state {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    padding: 70px 26px;
}

.empty-state-icon {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.empty-state-text {
    max-width: 560px;
    margin: 0 auto;
    color: var(--gray);
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.4rem;
    }

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

    .news-meta {
        flex-direction: column;
        align-items: stretch;
    }
}
