.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;
}
.featured_blog_section{
    padding-bottom: 20px;
}
.featured_blog_section .blog-row .blog-col {
    width: 100%;
}

.featured_blog_section .blog-row .blog-col .blog-box {
    min-height: 458px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: end;
    flex-grow: unset;
    flex-direction: unset;
    overflow: hidden;
}

.featured_blog_section .blog-row .blog-col .blog-box .blog-items {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
    padding-bottom: 0;
}

.featured_blog_section .blog-row .blog-col .blog-box .blog-content {
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(7.25px);
}

.featured_blog_section .blog-row .blog-col .blog-box .blog-content h2 {
    font-size: 20px;
    line-height: 22px;
}
@media only screen and (max-width:991px){
   .featured_blog_section .blog-row .blog-col .blog-box {
        min-height: 440px;
} 
}
@media only screen and (max-width:767px){
    .featured_blog_section .blog-row .blog-col .blog-box {
        min-height: 360px;
    }
}