body {
    font-family: 'Poppins';
}

main {
    margin-top: 150px;
}
h1.heading {
    color: black;
    font-weight: bold;
    text-align: center;
}

.primary_color {
    color: #010483 !important;
}

.filters {
    display: flex;
    flex-direction: row;
    margin-left: auto;
    margin-right: auto;
}

.filter {
    padding: 10px 15px;
    background: #f4f6f5;
    color: black;
    margin: 10px;
}

.filters > .active {
    background: #17b57d !important;
    color: white;
}

/* BLOG ARTICLES GRID */
.blog-articles .article-card {
    border: none;
}

.article .text {
    font-size: 17px;
    line-height: 1.8em;
}

.article-date {
    color: #1e2230;
    font-size: 18px;
    font-weight: 500;
    padding: 0px 5px;
    margin-bottom: 14px;
    display: inline-block;
    background-color: #f9f19a;
}

h1.article-title {
    text-transform: uppercase;
    line-height: 1.7em;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #010483;
}

h3.article-title {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.7em;
    font-family: 'Poppins', sans-serif;
    color: #010483;
}

.article-card .title:hover {
    color: #17b57d;
}

.article-card .text {
    color: #878788;
    font-size: 17px;
    line-height: 1.8em;
}

.article-author-name {
    font-size: 16px;
}

.article-author-avatar {
    width: 60px;
    /* height: 60px; */
    overflow: hidden;
    /* border-radius: 50%; */
}

.article-list-card .image {
    width: 100px;
}

/* MOBILE */

@media (max-width: 992px) {
    main {
        margin-top: 50px;
    }

    .blog-articles-container {
        flex-direction: column;
    }
}
