.blogs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0 ;

    h2 {
        font-size: 26px;
    }
}

.view-all {
    color: #000000;
    text-decoration: none;
}

.blog-cards {
    display: flex;
    gap: 46px;
}

.blog-card {

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;




    img {
        width: 487px;
        height: 285px;
        border-radius: 10px;
    }
}

.blog-content {
    margin-top: -71px;
    background: #ffffff;
    border: 1px solid #E2E2E2;
    border-radius: 8px;
    width: 437px;
    height: 140px;
    display: flex;
    flex-direction: column;
    padding: 27px;
    z-index: 99 !important;

    h3 {
        font-size: 20px !important;
        color: #000000;
    }

    p {
        font-size: 14px !important;
        color: #8E8E8E ;
    }

}
.read-more {
    text-decoration: none;
}
