.news-section {
    margin-top: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.news-section::before{
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/background.png") no-repeat center center;
    background-size: 60%;
    opacity: 0.08;
    filter: blur(2px);
    z-index: 0;
}

.news-section > * {
    position: relative;
    z-index: 1;
}
.title-section {
    background-color: #f1f1f1;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    width: 100%;
    position: relative;
    left: 0;
    right: 0;
}

.page-title {
    font-family: 'Baloo 2';
    font-weight: 700;
    font-size: 1.5rem;
    color: #333;
    margin: 0;
}

.breadcrumb-nav {
    font-size: 1rem;
    color: #333;
}

.breadcrumb-nav a {
    color: #174DAF;
    text-decoration: none;
    margin-left: 0.5rem;
}

.breadcrumb-nav a:hover {
    text-decoration: underline;
}

.breadcrumb-nav span {
    color: #333;
}

.pagination {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination .page-link {
    color: #174DAF;
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 12px;
    border-radius: 5px;
    transition: color 0.3s, background-color 0.3s;
}

.pagination .page-link:hover {
    color: #0056b3;
    background-color: #e9ecef;
    text-decoration: none;
}

.pagination .page-item.active .page-link {
    background-color: #174DAF;
    border-color: #174DAF;
    color: #fff;
    font-weight: 600;
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #f8f9fa;
}

.pagination .page-item .page-link {
    display: flex;
    align-items: center;
    gap: 5px; 
    margin-right: 10px;
}

.pagination .page-item#prevPage .page-link::before {
    content: "\e900"; 
    font-family: 'boxicons' !important;
}

.pagination .page-item#nextPage .page-link::after {
    content: "\e901"; 
    font-family: 'boxicons' !important;
}

.news-card .card-img-top,
.news-card img {
    transform: none !important;
    transition: none !important;
    scale: 1 !important;
}

.news-card:hover .card-img-top,
.news-card:hover img {
    transform: none !important;
    scale: 1 !important;
    opacity: 1 !important;
    filter: none !important;
}

.news-title-link {
    color: #333 !important; 
    text-decoration: none;
    transition: color 0.3s ease;
    display: block; 
}

.news-title-link:hover {
    color: #174DAF !important; 
    text-decoration: none;
}