 .news-section {
 
    background: #fff;
}





.content-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}


.news-main {
    flex: 3;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.news-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.news-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 15px 20px;
}

.news-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #b71a34;
    margin-bottom: 8px;
    text-transform: uppercase;
    display: none;
}

.news-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #333;
}

.news-title:hover {
    color: #b71a34;
}

.news-date {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 12px;
}

.news-readmore {
    font-weight: 600;
    color: #b71a34;
    text-decoration: none;
}

.news-readmore:hover {
    text-decoration: underline;
}


.pagination {
    margin-top: 30px;
    text-align: center;
}


.news-sidebar {
    flex: 1;
}

.sidebar-widget {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.widget-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #b71a34;
    margin-bottom: 20px;
}

.post-card {
   
    gap: 0px;
    margin-bottom: 15px;
}
.post-card .card-body{
    padding: 20px 0;
}
.post-thumb img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.post-info {
    flex: 1;
}

.post-title {
    font-weight: 600;
    color: #333;
    display: block;
}

.post-title:hover {
    color: #b71a34;
}

.post-date {
    font-size: 0.8rem;
    color: #888;
}
.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #b71a34;
    margin-bottom: 40px;
    display: inline-block;
    padding-bottom: 10px;
    text-align: center;
    width: 100%; /* Make sure it spans the full container */
}
