.article-module__item{display:flex;flex-direction:column;margin:0 0 20px;padding:0}
.article-module__image img{max-height:200px;border-radius:var(--border-radius-1-1-0-0);cursor:pointer;object-fit:cover}
.article-module__category-date-viewed {display:flex;align-items:center;margin:0 0 10px;color:#888;font-size:.85em}
.article-module__description{display:flex;flex-direction:column;flex:1 1 auto;padding:15px}
.article-module__date, .article-module__viewed{margin:0 15px 0 0}
.article-module__viewed {flex:0 0 auto}
.article-module__date .fa, .article-module__viewed .fa {margin:0 5px 0 0;font-size:.9em}
.article-module__name{display:block;margin:0 0 10px;font-weight:500}
.article-module__text{font-size:.95em}

.article-list {
    display: flex;
    flex-flow: row wrap;
    gap: 12px;
}

.article-list .item {
    width: calc(100% / 4 - 9px);
    border-radius: 8px;
    background: var(--white, rgba(255, 255, 255, 1));
    overflow: hidden;
}

.article-list .item__image {
    width: 100%;
}

.article-list .item__info {
    padding: 16px;
}

.article-list .item__name {
    font-weight: 500;
    line-height: 19px;
    margin-bottom: 16px;
    min-height: 38px;
}

.article-list .item__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.article-list .item__bottom .url {
    font-size: 14px;
}

.article-list .item__bottom .url svg {
    width: 18px;
    height: 18px;
}

.article-list .item__date {
    color: var(--inactive, rgba(148, 153, 166, 1));
    font-size: 12px;
}


/*article page*/
.article__wrap {
    display: flex;
    align-items: flex-start;
    gap: 36px;
}

.article__left {
    flex: 1;
}

.article__right {
    width: 420px;
    max-width: 100%;
    position: sticky;
    top: 0;
}

.article__title {
    font-size: 28px;
    font-weight: 500;
    line-height: 38px;
    margin-bottom: 20px;
}

.article__image {
    width: 100%;
    display: block;
    margin-bottom: 20px;
    border-radius: 16px;
}

.article__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
}

.article__share-links,
.article__share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.article__description {
    font-size: 17px;
    line-height: 148%;
}

.article__description img {
    display: block;
    width: 100% !important;
    border-radius: 16px;
}

.article__description :is(h2,h3,h4,h5) {
    font-size: 21px;
    font-weight: 500;
}

.side__title {
    font-size: 21px;
    font-weight: 500;
    line-height: 29px;
    margin-bottom: 20px;
}

.article__latest {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.article__latest .item {
    border-radius: 8px;
    background: var(--white, rgba(255, 255, 255, 1));
    padding: 16px;
}

.article__latest .item__name {
    color: var(--black, rgba(25, 35, 58, 1));
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
    display: block;
}

.article__latest .item__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.article__latest .item__bottom .url {
    font-size: 14px;
}


@media (max-width: 1199px) {
    .article-list .item {
        width: calc(100% / 3 - 8px);
    }

    .article__wrap {
        flex-direction: column;
    }

    .article__right {
        width: 100%;
    }

    .article__latest {
        position: static;
        flex-flow: row wrap;
    }

    .article__latest .item {
        width: calc(100% / 3 - 8px);
    }
}

@media (max-width: 991px) {
    .article-list .item {
        width: calc(100% / 2 - 8px);
    }
}

@media (max-width: 650px) {

    .article-list .item {
        width: 100%;
    }

    .article__title {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .article__right {
        display: none;
    }

    .article__left {
        flex: unset;
        width: 100%;
    }

    .article__share span,
    .article__date {
        font-size: 12px;
    }

    .article__share-links {}

    .article__share-links img {
        width: 36px;
        height: 36px;
    }

    .article__description :is(h2,h3,h4,h5) {
        font-size: 18px;
    }

    .article__description {
        font-size: 16px;
        line-height: 1.3;
    }
}