.Blogs {}

.Blogs .blog_cards_section {
    margin-top: 5%;
}

.Blogs .blog_cards_section .blog_card {
    position: relative;
    margin-bottom: 15%;
    cursor: pointer;
}

.Blogs .blog_cards_section .blog_card .blog_img_wrapper {}



.Blogs .blog_cards_section .blog_card .blog_img_wrapper .blog_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.Blogs .blog_cards_section .blog_card .blog_overlay {
    background: #EFF4FF 0% 0% no-repeat padding-box;
    border-radius: 10px;
    padding: 15px;
    color: #202020;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    transform: translateY(30px);
    width: 380px;
    margin: auto;
    transition: all 0.3s;
}

 .Blogs .blog_cards_section .blog_card:hover .blog_overlay {

    background: #6b4182 0% 0% no-repeat padding-box;
    color: #ffffff !important;
   
} 




/* .Blogs .blog_cards_section .blog_card .blog_overlay {
    background: #EFF4FF;
    border-radius: 10px;
    padding: 15px;
    color: #202020;
    position: relative;   
    width: 90%;          
    margin: -40px auto 0; 
    transition: all 0.3s;
} */

.Blogs .blog_cards_section .blog_card:hover .blog_link {
    color: #fff !important;
    text-decoration: underline;
}

.Blogs .About_Banner_holder .about_us {
    font-size: 13px;
    color: #202020;
    padding-top: 10px;
}

.Blogs .blog_cards_section .blog_card .blog_overlay .blog_title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}
.Blogs .blog_cards_section .blog_card .blog_overlay .blog_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.Blogs .blog_cards_section .blog_card .blog_overlay .blog_footer .blog_date {
    font-size: 12px;
    font-weight: 600;
}

.Blogs .blog_cards_section .blog_card .blog_overlay .blog_footer .blog_link {
    font-size: 12px;
    font-weight: 600;
    color: #6b4182;
}

/* Pagination */
.pagination_wrapper {
    display: flex;
    justify-content: end;
    align-items: center;
    margin: 20px 0;
    gap: 5px;
}

.page_btn {
    width: 35px;
    height: 35px;
    border: 1px solid #cfcfcf;
    background: #f3f3f3;
    color: #333;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.page_btn:hover {
    background: #F28720;
    color: #fff;
    border-color: #F28720;
}

.page_btn.active {
    background: #2c4e73;
    color: #fff;
    border-color: #2c4e73;
}

.arrow_btn {
    font-size: 18px;
}


/* ================ Media Queries =============== */

@media (min-width:0px) and (max-width:574px) {
    .Blogs .blog_cards_section .blog_card .blog_overlay {
        width: 250px;
    }

 .Blogs .blog_cards_section .blog_card .blog_overlay .blog_title {
    font-size: 14px;
    margin-bottom: 10px;
}
}

@media (min-width:575px) and (max-width:767px) {
    .Blogs .blog_cards_section .blog_card .blog_overlay {
        width: 200px;
    }

    .Blogs .blog_cards_section .blog_card .blog_overlay .blog_title {
        font-size: 13px;
        margin-bottom: 10px;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .Blogs .blog_cards_section .blog_card .blog_overlay {
        width: 300px;
    }

    .Blogs .blog_cards_section .blog_card .blog_overlay .blog_title {
        font-size: 15px;
        margin-bottom: 10px;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .Blogs .blog_cards_section .blog_card .blog_overlay {
        width: 250px;
    }

    .Blogs .blog_cards_section .blog_card .blog_overlay .blog_title {
        font-size: 14px;
    }
}

@media (min-width:1200px) and (max-width:1399px) {
    .Blogs .blog_cards_section .blog_card .blog_overlay {
        width: 300px;
    }
}