
.blog-card{
    width: 50%;
    padding: 48px 0;
    text-align: center;
}
.blog-card .heading-sm{
    max-width: 80%;
    text-align: left;
    color: #666;
    margin: 0 auto;
    margin-bottom: 18px;
}
.article{
    display: flex;
    flex-direction: column;
    border-bottom:1px solid #E7E7E7;
    padding: 14px 0;
    align-items: baseline;

}
.tag{
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
    line-height: 130.5%; /* 15.66px */
    text-transform: uppercase;
    color: #A1A1A1;
}
.article-title{
    font-family: var(--font);
    font-size: 18px;
    font-weight: 700;
    line-height: 130.5%;
    text-align: left;
    padding-top: 14px;
    white-space: break-spaces;

}
.article-link{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    margin: 0 auto;
    width: 80%;
    padding: 14px 0;
    color: #FFF;
    font-size: 14px;
    background-color: #1F1F1F;
    font-style: normal;
    font-weight: 700;

}
.articles-list{
    padding: 0 0 35px 0;
    width: 80%;
    text-align: center;
    margin: 0 auto;
}
.article:last-child {
    border-bottom: 0 ;
}
@media (max-width:768px){
    .blog-card{
        width: -webkit-fill-available;
        padding: 38px 23px;
    }

    .article{
        padding: 10px 10;
        width: -webkit-fill-available;
    }
    .tag{
       
        font-size: 10px;
        font-style: normal;
        font-weight: 900;
        line-height: 130.5%; /* 15.66px */
        text-transform: uppercase;
    }
    .article-title{
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        padding-top: 10px;
    }
    .article-link{
        padding: 13px 12px;
        font-size: 12px;
        width: unset;
    }
    .blog-card .heading-sm{
        margin: 0 auto;
        width: 100%;
        margin-bottom: 18px;
        max-width: unset;
    }
    .articles-list{
        padding: 0 0 26px 0;
        width: -webkit-fill-available;
    }
}