img {
    max-width: 100%;
    object-fit: contain;
}

.blog-navbar {
    margin-top: 86px;
}

.blog-container {
    padding-block: 25px;
}

.news-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.blog-post {
    .blog-header {
        margin-bottom: 20px;
    }

    .blog-hero-image {
        margin: 0 auto 20px;
        max-width: 100%;
        max-height: 800px;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }
}

.article-title,
.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
}

.blog-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card .card-body {
    padding: 20px;
}

.blog-card .card-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.blog-card .card-title a {
    color: #333;
    text-decoration: none;
}

.blog-card .card-title a:hover {
    color: #007bff;
}

.blog-card .card-text {
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    color: #666;
}

.pagination .page-item .page-link {
    color: #007bff;
}

.pagination .page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
}


