.container {
            width: 87%;
            max-width: 1200px;
            margin: auto;
        }

.blog-content-wrapper {
    display: flex; 
    align-items:center; 
    gap: 25px; 
    flex-wrap: wrap; 
}


.blog-thumbnail-wrapper {
    flex: 0 0 250px; 
    max-width: 250px;
    border-radius: 8px; 
    overflow: hidden; 
}
.blog-thumbnail-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}


.blog-text-content {
    flex: 1; 
    min-width: 200px;
}


@media (max-width: 768px) {
    .blog-content-wrapper {
        flex-direction: column; 
        align-items: center; 
    }

    .blog-thumbnail-wrapper {
        flex: none;
        width: 100%; 
        max-width: 400px; 
        margin-bottom: 20px; 
    }

    .blog-text-content {
        min-width: unset; 
        width: 100%;
    }
}



.blog-wrapper {
    padding: 60px 0;
    background: #f8f9fc;
}

.blog-card {
    background: #fff;
    border: 1px solid #ab0000; 
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(47,128,237,0.15);
}

.blog-category {
    display: inline-block;
    background: #2f80ed;
    color: #fff;
    font-size: 13px;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.blog-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.blog-title a {
    text-decoration: none;
    color: #222;
    transition: 0.3s;
}

.blog-title a:hover {
    color: #2f80ed;
}

.blog-meta {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
}

.blog-excerpt {
    color: #555;
    line-height: 1.9;
    margin-bottom: 25px;
}

.read-more-btn {
    display: inline-block;
    padding: 10px 22px;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
}

.read-more-btn:hover {
    background: #1c5ec9;
}


.blog-wrapper {
    padding: 60px 0;
    background: #f8f9fc;
}
@media (max-width: 768px) {
    .blog-content-wrapper {
        flex-direction: column; 
        align-items: center;
    }

    .blog-thumbnail-wrapper {
        flex: none; 
        width: 100%; 
        max-width: 400px;
        margin-bottom: 20px; 
        order: 1;
    }

    .blog-text-content {
        min-width: unset; 
        width: 100%; 
        order: 2; 
    }
}