.news-page {
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #222;
}

/* HEADER */
.news-hero {
    background: linear-gradient(135deg, #0d47a1, #1565c0);
    padding: 60px 20px;
    text-align: center;
    color: #fff;
}

.news-hero h1 {
    font-size: 38px;
    font-weight: 700;
}

.news-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* CONTAINER */
.news-container {
    max-width: 1200px;
    margin: auto;
    padding: 70px 20px;
}

/* GRID 3x3 */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

/* ITEM */
.news-item {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: 0.3s;
}

.news-item:hover {
    transform: translateY(-6px);
}

.news-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.news-body {
    padding: 20px;
}

/* CATEGORY */
.news-category {
    display: inline-block;
    background: #e3ecff;
    color: #0d47a1;
    font-size: 14px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

/* TITLE */
.news-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* DATE */
.news-date {
    font-size: 14px;
    color: #777;
}

/* PAGINATION */
.news-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.news-pagination a {
    padding: 10px 16px;
    border-radius: 8px;
    background: #f1f4fb;
    text-decoration: none;
    color: #0d47a1;
    font-weight: 600;
}

.news-pagination a.active,
.news-pagination a:hover {
    background: #0d47a1;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}
