section:first-child {
    margin: 0;
    justify-content: space-between;
}

.news-container {
    width: 75%;
}

.container__list {
    width: 100%;
}

.news-container__popular {
    width: 23%;
}

.article-container {
    cursor: pointer;
    transition: .2s;
    margin-bottom: 15px;
    width: 100%;
    height: 220px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
}

.article-container:hover {
    transform: translateX(3px);
    box-shadow: rgba(149, 157, 165, 0.15) 0px 8px 24px;
}

.article-container__image {
    width: 30%;
    height: 100%;
    background-color: #eee;
}

.article-container__image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.article-container__content {
    padding: 20px;
    width: 70%;
    height: 100%;
}

.article-container__content h5 {
    font-family: 'Futura PT Book', sans-serif;
    text-transform: uppercase;
}

.article-container__content h2 {
    width: 100%;
    overflow: hidden;
    font-family: 'Futura PT Book', sans-serif;
    text-transform: uppercase;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 24px;
    color: #34333B;
    margin-top: 15px;
}

.article-container__content p {
    margin-top: 15px;
    color: #8C8C8C;
    font-family: 'Circe', sans-serif;
    font-weight: 300;
    height: 52px;
    line-height: 26px;
    font-size: 16px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.article-container__content__date-n-tags {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.article-container__content__date-n-tags span {
    color: #8C8C8C;
    font-family: 'Circe', sans-serif;
    font-size: 15px;
    font-weight: 300;
    margin-right: 20px;
}

.article-container__content__date-n-tags div {
    display: flex;
}

.article-container__content__date-n-tags div .article-tag {
    margin-left: 5px;
    color: #8C8C8C;
    font-family: 'Circe', sans-serif;
    font-size: 15px;
    font-weight: 300;
    background-color: #F3F3F3;
    padding: 3px 8px;
    border-radius: 4px;
}

.popular-news__item {
    margin-bottom: 5px;
    padding: 20px;
    transition: .2s;
    width: 100%;
    height: 258px;
    background-color: #fff;
}

.popular-news__item:hover{
    transform: translateX(3px);
    box-shadow: rgba(149, 157, 165, 0.15) 0px 8px 24px;
}

.popular-news__item h5 {
    font-family: 'Circe', sans-serif;
    font-size: 14px;
    color: #8C8C8C;
}

.popular-news__item h2 {
    margin-top: 15px;
    font-family: 'Circe', sans-serif;
    font-size: 18px;
    color: #34333B;
    height: 72px;
    line-height: 24px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.popular-news__item span {
    margin-top: 15px;
    font-family: 'Circe', sans-serif;
    font-size: 17px;
    color: #8C8C8C;
    height: 88px;
    line-height: 22px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.news-container__title {
    height: 100px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #E1E1E1;
    margin-bottom: 20px;
}

.news-container__title h1 {
    text-transform: uppercase;
    display: flex;
    align-items: center;
    font-size: 40px;
    font-family: 'Futura PT Book', sans-serif;
    color: #34333B
}

.news-container__popular__title {
    height: 100px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #E1E1E1;
    margin-bottom: 20px;
}

.news-container__popular__title h1 {
    text-transform: uppercase;
    display: flex;
    align-items: center;
    font-size: 30px;
    margin-top: 15px;
    font-family: 'Futura PT Book', sans-serif;
    color: #34333B
}

@media (max-width: 790px) {
    section:first-child {
        margin: 0;
        justify-content: unset;
        flex-direction: column;
    }

    .news-container {
        width: 100%;
    }
    
    .container__list {
        width: 100%;
    }

    .news-container__popular {
        width: 100%;
    }
    
    .news-container__popular .container__list {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .news-container__title {
        padding-bottom: 15px;
        height: unset;
    }
    
    .news-container__title h1 {
        font-size: 28px;
    }
    
    .news-container__popular__title {
        margin-top: 20px;
        padding-bottom: 15px;
        height: unset;
    }
    
    .news-container__popular__title h1 {
        font-size: 28px;
        margin-top: 0;
    }

    .news-container__popular .container__list a {
        display: inline-block;
        width: calc(100%/2 - 2.5px);
    }

    .popular-news__item:hover {
        transform: unset;
    }
}

@media (max-width: 590px) {
    .article-container {
        height: auto;
        flex-direction: column;
        justify-content: unset;
    }

    .article-container:hover {
        transform: unset;
        box-shadow: unset;
    }
    
    .article-container__image {
        order: -1;
        width: 100%;
        height: 300px;
    }

    .article-container__content {
        padding: 20px 20px 30px 20px;
        width: 100%;
    }

    .article-container__content h5 {
        font-size: 14px;
    }
    
    .article-container__content h2 {
        font-size: 19px;
    }
    
    .article-container__content p {
        height: 120px;
        line-height: 24px;
        font-size: 16px;
        -webkit-line-clamp: 5;
    }

    .article-container__content__date-n-tags {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .article-container__content__date-n-tags div .article-tag {
        margin-left: 0;
        margin-right: 5px;
        margin-top: 5px;
    }
    
    .article-container__content__date-n-tags span {
        font-size: 14px;
        white-space: nowrap;
        margin-right: 10px;
    }
}

@media (max-width: 450px) {
    .news-container__popular .container__list {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .news-container__popular .container__list a {
        display: inline-block;
        width: calc(100%);
    }
}