.articles-sec {
    margin: 30px 0;
}
.articles-head {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 30px;
}
.articles-head a {
    font-weight: 500;
}
.articles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.articles-card-title a {
    color: #2c2e35;
}
.articles-card {
    min-height: 222px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 30px;
    background-color: #f9f9f9;
}
.articles-footer {
    padding-top: 30px;
    color: #203f6f;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.articles-card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .articles-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }
    .articles-card {
        min-height: 100px;
        padding: 20px;
    }
}
@media (min-width: 767px) and (max-width: 1500px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .articles-card {
        min-height: 100px;
        padding: 20px;
    }
}