.blog-cards{
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
}
.blog-cards .blog-card{
    flex-shrink: 0;
    padding: 0px 8px;
    margin-bottom: 42px;
}
.blog-card>a{
    display: flex;
    flex-direction: column;
    height: 100%;
}
.blog-card>a:focus{
    outline: none;
}
/* .blog-cards .blog-card:nth-last-child(-n+3){
    margin-bottom: 0;
} */
.blog-cards figure img{
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    margin-bottom: 24px;
}
.blog-cards .blog-card>a small{
    font-size: 12px;
    text-transform: uppercase;
    color: var(--yellow-dark);
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}
.blog-cards .blog-card>a h3{
    font-family: 'Warnock Pro';
    font-size: 20px;
    text-overflow: ellipsis;
    overflow-x: hidden;
    overflow-y: hidden;
    text-wrap: nowrap;
    font-weight: 400;
    margin-bottom: 20px;
}
.blog-cards .blog-card>a p{
    font-size: 12px;
    color: var(--body-text);
    line-height: 20px;
    margin-bottom: 20px;
}
.blog-cards .blog-card>a .read-more{
    display: flex;
    font-weight: 600;
    gap: 8px;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--primary-color);
    transition: var(--transition);
}
.blog-cards .blog-card>a .read-more div >svg>g>path{
    transition: var(--transition);
    /* letter-spacing: 0.5px; */
    stroke: var(--primary-color);
}
/* .blog-cards .blog-card>a:hover .read-more{
    text-decoration: underline;
}  */
.blog-card .more-btn{
    position: relative;
}
.blog-card .more-btn::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--primary-color);
    bottom: 12px;
    left: 0;
    transition: var(--transition);
    opacity: 0;
}
.blog-card>a:hover .more-btn::after{
    opacity: 1  ;
}
@media screen and (max-width: 992px) {
    .blog-cards figure img{
        height: 192px;
        margin-bottom: 20px;
    }
    .blog-cards .blog-card>a h3{
        font-size: 20px;
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 768px) {
    .blog-cards .blog-card{
        width: 100%;
    }
    .blog-cards .blog-card:not(:last-child){
        margin-bottom: 42px;
    }
}
.blog-list-content{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
}
@media screen and (max-width: 575px) {
    .blog-cards figure img{
        margin-bottom: 24px !important;
    }
    .blog-cards .blog-card>a h3{
        text-wrap: wrap;
        text-overflow: unset;
        overflow-x: unset;
        margin-bottom: 16px;
    }
    .blog-cards .blog-card>a p{
        margin-bottom: 16px;
    }
}