.blog-section {
    padding-bottom: 120px;
}
.blog-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px -20px;
}
.blog-row .blog-col {
    width: 33.33%;
    padding: 0 10px;
    margin-bottom: 20px;
    overflow: hidden;
}
.blog-row .blog-col .blog-box {
    display: block;
    height: 100%;
    border-radius: 7.924px;
    border: 0.967px solid rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(2.1105449199676514px);
    display: flex;
    flex-direction: column;
    justify-content: start;
}
.blog-row .blog-col .blog-box .blog-items {
    position: relative;
    padding-bottom: 86%;
    border-radius: 7.92px 7.92px;
    overflow: hidden;
}
.blog-row .blog-col .blog-box .blog-items:before {
    content: "";
    display: block;
    border-radius: 7.92px 7.92px 0 0;
    border: 0.704px solid rgba(255, 255, 255, 0.20);
    background:  lightgray 50% / cover no-repeat;
    backdrop-filter: blur(32.63705062866211px);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
.blog-row .blog-col .blog-box .blog-items img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.blog-row .blog-col .blog-box .blog-content {
    padding: 26px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.blog-row .blog-col .blog-box .blog-content h2 {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 19px;
}
.author-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}
.author-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.author-info .author-pic {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}
.author-info .author-pic img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.author-info .author-name {
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #FFF;
}
.author-info .author-name {
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #FFF;
}
.author-details .time {
    display: flex;
    align-items: center;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #FFF;
}
.author-details .time svg {
    margin-right: 8px;
}
@media only screen and (max-width:991px){
    .blog-row .blog-col .blog-box .blog-content {
        padding: 16px;
    }
    .blog-section {
        padding-bottom: 40px;
    }
}
@media only screen and (max-width:767px){
    .blog-row .blog-col {
        width: 50%;
    }
    .blog-section {
        padding-bottom: 40px;
    }
}
@media only screen and (max-width:575px){
   .blog-row .blog-col {
         width: 100%;
    }
 
}