body {
    background: white;
}

.section-body {
    background: white;
    max-width: 1366px;
}

.main-padding {
    padding: 20px 45px;
}

.slick-slide {
    width: 600px;
    height: 200px !important;
}

.img-banner {
    border-radius: 6px;
    height: 200px;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: scroll;
    -o-background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.section-banner .banner {
    border-radius: 6px;
    overflow: hidden;
}

.list-articles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.card-article {
    text-decoration: none;
    color: #2e2e2e;
    font-family: "Source Sans Pro";
    font-size: 11pt;
    border-radius: 2px;
    overflow: hidden;
}

.card-article:hover {
    text-decoration: none;
    color: #2e2e2e;
}

.card-article .card-img-top {
    max-height: 140px;
    object-fit: cover;
    border-radius: 0;
    object-position: center;
}

.card-article .card-body {
    display: grid;
    grid-template-columns: 1fr auto;
}

.card-article .cat-title,
.card-article .date {
    font-size: 10pt;
}

.card-article .cat-title {
    color: #ff6363;
}

.card-article .title {
    font-size: 11pt;
    font-weight: normal;
    grid-column-start: 1;
    grid-column-end: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.article-choice {
    background-color: #f37f01;
    padding: 4px;
    margin: 6px;
    border-radius: 6px;
    font-size: 9pt;
    line-height: 11pt;
    color: white;
    right: 0;
}

.section-header * {
    font-family: "Source Sans Pro";
    color: #2e2e2e;
}

.section-header .header-title {
    font-weight: bold;
    font-size: 20pt;
}

.section-header .header-subtitle {
    font-size: 10pt;
    line-height: 14pt;
    width: 50%;
}

@media only screen and (max-width: 576px) {
    .main-padding {
        padding: 12px;
    }

    .slick-slide {
        width: 300px !important;
        height: 100px !important;
    }

    .img-banner {
        height: 100px;
    }

    .list-articles {
        gap: 8px;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-header .header-subtitle {
        font-size: 10pt;
        line-height: 12pt;
        text-align: justify;
        width: 100%;
    }
}
