.news-item {
    transition: transform 0.3s ease;
}
.inner-page {
    background-color: #403a36 !important;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
    .news-image {
        max-width: 100%;
        height: 150px;
    }
    .news-content h2 {
        font-size: 1.2rem;
    }
    .news-content p {
        font-size: 0.9rem;
    }
}
@media (max-width: 576px) {
    .news-content {
        text-align: center;
    }
    .news-content h2 {
        font-size: 1rem;
    }
    .news-content p {
        font-size: 0.8rem;
    }
}



.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #e4e4e4;
    border-radius: 50px;
}

.page-item {
    margin: 0 5px;
    border-radius: 50px;
}

.page-link {
    display: block;
    padding: 8px 15px;
    background-color: #333;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border: 1px solid #555;
    border-radius: 50px;
    transition: background-color 0.3s, color 0.3s;
}

.page-link:hover {
    background-color: #fff;
    color: #333;
}

.page-item.active .page-link {
    background-color: #e3b86d;
    color: white;
    border: 1px solid #e3b86d;
}

.page-link.disabled {
    background-color: #555;
    color: #ddd;
    cursor: not-allowed;
    border: 1px solid #555;
}

.page-item.shadow {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.page-item.prev, .page-item.next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #333;
    color: white;
    font-size: 18px;
    border: 1px solid #555;
}

@media (max-width: 576px) {
    .page-link {
        padding: 8px 12px;
    }
}


