/* CSS for Blog flexible section */ 
/* Import main style */

.blog__card-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: var(--border-radius-xl);
}
    .blog__card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: var(--border-radius-xl);
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .blog__card-image img:hover {
        transform: scale(1.05);
    }

    .blog__card-date {
        border: 1px solid var(--color-primary);
        padding: 5px 10px;
        border-radius: var(--border-radius-xl);
        color: var(--color-primary);
        font-size: 14px;
        font-weight: 500;
        line-height: 1.5;
    }

.blog__link {
    width: fit-content;
}

@media (max-width: 767px) {
    .blog-row .col-md-8, .blog-row .col-md-4 {
        flex-direction: column!important;
        align-items: center!important;
        justify-content: center!important;
        text-align: center;
    }
}