#blog-section{
    padding-top: 100px;
}
.section-title{
    font-size: 32px;
    font-family: 'Poppins';
    font-weight: 700;
    color: #D68200;
    border-bottom: 5px solid #D68200;
    padding: 0px 38px;
    padding-bottom: 10px;
    width: fit-content;
    text-transform: uppercase;
}
.article-card{
    box-shadow: 0px 0px 6px 6px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
}
.article-image{
    border-radius: 10px 10px 0px 0px;
    border-bottom: 7px solid #D68200;
    object-fit: cover;
    height: 250px;
}
.article-name{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
    text-align: center;
    color: #D68200;
}

@media screen and (max-width: 992px) {
    .article-card{
        box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.08);
    }
    .article-image{
        border-bottom: 6px solid #D68200;
        height: 240px;
    }
    .article-name{
        font-size: 20px;
    }
    .section-title{
        font-size: 28px;
        border-bottom: 4px solid #D68200;
        padding: 0px 34px;
        padding-bottom: 2px;
    }
}

@media screen and (max-width: 768px) {
    .article-card{
        box-shadow: 0px 0px 4px 4px rgba(0, 0, 0, 0.08);
    }
    .article-image{
        border-bottom: 4px solid #D68200;
        height: 230px;
    }
    .article-name{
        font-size: 18px;
    }
    .section-title{
        font-size: 20px;
        border-bottom: 3px solid #D68200;
        padding: 0px 5px;
    }
}