.blog-box {
    gap: 30px;
    display: grid;
    grid-template-columns: 31.5% 31.5% 31.5%;
}
.blog-box-item{
    position: relative;
}
.blog-label {
    top: 10px;
    right: 10px;
    font-size: 14px;
    line-height: 14px;
    position: absolute;
    padding: 5px 10px 5px 11px;
    background: var(--white-color);
    color: var(--primary--color);
}
.blog-box-item figure img{
    width: 100%;
    transition: all 0.5s ease-in-out;
}
.blog-box-item:hover figure img{
    transform: translateY(-8px);
}
.blog-box-item{
    border-radius: 10px 10px 0 0;
}
.blog-box-content {
    z-index: 1;
    width: 91.53%;
    margin-top: -40px;
    position: relative;
    padding: 29px 30px 24px;
    background: var(--white-color);
    box-shadow: 5px 5px 30px rgb(204 204 204 / 20%);
}
.date{
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.blog-box-content h3 {
    margin-bottom: 0;
    font-weight: 800;
    line-height: 26px;
    position: relative;
    padding-left: 21px;
}
.blog-box-content h3 a{
    text-decoration: none;
    display: inline-block;
    color: var(--primary--color);
}
.blog-box-content h3 a:hover{
    color: var(--accent-color);
}
.blog-box-content h3::after {
    left: 0;
    top: 50%;
    width: 2px;
    content: "";
    height: 100%;
    position: absolute;
    background: #f49674;
    transform: translateY(-50%);
}
.blog-con .generic-title h2{
    margin-bottom: 52px;
}
/* ************ responsive *************** */
@media only screen and (max-width: 1440px) {
    .blog-con .generic-title h2 {
        margin-bottom: 42px;
    }
}
@media only screen and (max-width: 1199px) {
    .blog-box {
        gap: 25px;
    }
    .blog-box-content {
        width: 95.53%;
        padding: 24px 27px;
    }
}
@media only screen and (max-width: 991px) {
    .blog-box-content h3 {
        line-height: 20px;
        padding-left: 11px;
    }
    .blog-box {
        gap: 18px;
    }
    .blog-box-content {
        width: 96.53%;
        padding: 22px 14px 22px;
    }
    .date {
        font-size: 12px;
        line-height: 12px;
        margin-bottom: 9px;
    }
    .blog-label {
        font-size: 10px;
        line-height: 10px;
    }
}
@media only screen and (max-width: 767px) {
    .testimonials-box-content {
        padding: 26px 20px;
    }
    .blog-box {
        gap: 20px;
        justify-content: center;
        grid-template-columns: 48% 48%;
    }
    .blog-box-content h3 {
        line-height: 20px;
    }
}
@media only screen and (max-width: 575px) {
    .blog-box-content h3 {
        padding-left: 11px;
    }
    .blog-box {
        grid-template-columns: 100%;
    }
}