.news-wrapper {
    padding: 80px 0;
    background: #f8f9fc;
}

.category-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap; /* supaya responsive */
}

.category-card {
    width: 450px;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

.category-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}

.category-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.category-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #6f42c1;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.category-btn:hover {
    background: #4e2a99;
}

.pagination-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}
