.news-section {
    padding-top: 160px;
    margin-bottom: 200px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /*grid-template-rows: repeat(2, 1fr);*/
    gap: 0 30px;
}

.news-section .news {
    grid-column: span 8 / span 8;
    grid-column-start: 3;
}

.news__title {
    font-family: YouthMedium, sans-serif;
    font-size: 36px;
    letter-spacing: calc(1em / 20);
    line-height: 49.75px;
    margin-bottom: 30px;
}

.news-section .news__text img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.news-section .news__text .news__preview-image {
    margin-bottom: 60px;
    margin-top: 0;
}

.news__text {
    font-family: JostRegular, sans-serif;
    font-size: 18px;
    letter-spacing: calc(1em / 20);
    line-height: 24.87px;
    color: #292929;
}

.news__info {
    display: flex;
    align-items: center;
    font-family: JostRegular, sans-serif;
    font-size: 14px;
    color: #999999;
    margin-bottom: 35px;
}

.news__interpunct {
    margin-left: 29px;
    margin-right: 29px;
    width: 3px !important;
    height: 3px !important;
}

.news__content {
    border-top: 1px solid #DCDCDC;
    border-bottom: 1px solid #DCDCDC;
    padding-top: 30px;
    padding-bottom: 80px;
}

@media screen and (max-width: 1200px) {
    .news-section .news {
        grid-column: span 10 / span 10;
        grid-column-start: 2;
    }
}

@media screen and (max-width: 768px) {
    .news-section {
        padding-top: 126px;
        margin-bottom: 100px;
        gap: 0;
    }

    .news-section .news {
        grid-column: span 12 / span 12;
        grid-column-start: 1;
    }

    .news-section .news__text img {
        height: 300px;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .news-section .news__text .news__preview-image {
        margin-top: 0;
        margin-bottom: 40px;
    }

    .news__title {
        font-size: 24px;
        line-height: 33.16px;
        margin-bottom: 35px;
    }

    .news__content {
        padding-top: 28px;
        padding-bottom: 60px;
    }
}

@media screen and (max-width: 620px) {
    .news-section .news__text img {
        height: 200px;
    }
}

.news__share {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 15px 50px;
    justify-content: start;
    margin-top: 30px;
}

.news__share-name {
    display: flex;
    font-family: JostMedium, sans-serif;
    font-size: 14px;
    letter-spacing: 0;
    text-transform: uppercase;
    line-height: initial;
    color: #292929;
    height: 14px;
    align-items: baseline;
}

.news__share-name img {
    width: 14px;
    height: 13px;
    margin-right: 9px;
}

.news__share-item {
    font-family: JostRegular, sans-serif;
    font-size: 14px;
    letter-spacing: calc(1em / 20);
    color: #999999;
}

/*typography*/
.news__text ul {

}

.news__text ul li {
    display: list-item;
}

.news__text ol,
.news__text ul {
    list-style: disc;
    margin: 0;
    padding: revert;
}

.news__text ul li::before {
    content: inherit;
}

.news__text a {
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-skip-ink: none
}

.news__text a:hover {
    opacity: 70%;
}

.news__text h1 {
    font-family: JostMedium, sans-serif;
    font-size: 2.5rem;
    line-height: normal;
}

.news__text h2 {
    font-family: JostMedium, sans-serif;
    font-size: 2rem;
    line-height: normal;
}

.news__text h3 {
    font-family: JostMedium, sans-serif;
    font-size: 1.75rem;
    line-height: normal;
}

.news__text h4 {
    font-family: JostMedium, sans-serif;
    font-size: 1.5rem;
    line-height: normal;
}

.news__text h5 {
    font-family: JostMedium, sans-serif;
    font-size: 1.25rem;
    line-height: normal;
}

.news__text h6 {
    font-family: JostMedium, sans-serif;
    line-height: normal;
}



.socializer {
    gap: 5px 0;
}

.socializer .sr-text-in a {
    padding-left: 0;
    padding-right: 50px;
}

@media screen and (max-width: 768px) {
    .news__share {
        margin-top: 20px;
    }

    .socializer .sr-text-in a {
        padding-left: 0;
        padding-right: 24px;
    }
}

/*article-section*/
.article-section {
    margin-bottom: 200px;
}

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

.article-section__button {
    height: 50px;
    width: 234px;
}

.article-section__button_mobile {
    display: none;
}

.article-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    margin-top: 65px;
}

.article-card img {
    height: 293px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.article-card .article-card__date {
    font-family: YouthRegular, sans-serif;
    font-size: 14px;
    letter-spacing: calc(1rem / 20);
    color: #393939;
    margin-top: 10px;
}

.article-card .article-card__title {
    font-family: YouthMedium, sans-serif;
    font-size: 20px;
    letter-spacing: calc(1rem / 20);
    color: #292929;
    margin-top: 7px;
    line-height: 27.64px;
}

@media screen and (max-width: 1200px) {
    .article-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 850px) {
    .article-section__head .article-section__button {
        display: none;
    }

    .article-section__button_mobile {
        display: flex;
        margin: 60px auto 0;
    }

    .article-list {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 60px;
    }

    .article-card .article-card__date {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .article-section {
        margin-bottom: 100px;
    }

    .article-card img {
        height: 228px;
    }
}
