body {
    background-color: #f8f9fa;
}

.news-header {
    margin-top: 40px;
    margin-bottom: 40px;
}

.news-grid-card {
    background: #ffffff;
    overflow: hidden;
    height: 100%;
    border: 1px solid #f0f0f0;
    cursor: pointer;
}

.grid-img-wrapper {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.grid-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-content {
    padding: 25px;
}

.grid-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 15px;
}

.grid-title a {
    color: #212529;
    text-decoration: none;
    transition: color 0.3s ease;
}

.grid-content .fa-clock {
    color: #d9251c;
}

.news-grid-card .grid-title a:hover {
    color: #d9251c;
}

.read-more-link {
    color: #d9251c;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.read-more-link i {
    transition: transform 0.3s ease;
}

.read-more-link:hover {
    color: #0e2970;
}

.custom-pagination .page-item.active .page-link {
    background-color: #d9251c !important;
    border-color: #d9251c !important;
    color: #ffffff !important;
}

.custom-pagination .page-link:hover {
    background-color: #d9251c;
    color: #ffffff !important;
    border-color: #d9251c;
}

.custom-pagination .page-item.disabled .page-link {
    color: #6c757d;
    background-color: #e9ecef;
    border-color: #dee2e6;
}