.news-content__container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [12];
    grid-template-columns: repeat(12, 1fr);
    -webkit-column-gap: 32px;
    -moz-column-gap: 32px;
    column-gap: 32px;
}
.news-content__left-block {
    -ms-grid-column-span: 8;
    grid-column: 8 span;
}
.news-content__right-block {
    -ms-grid-column-span: 4;
    grid-column: 4 span;
}
.news-content__text p {
    max-width: 77.9rem;
    font-size: 1.6rem;
    line-height: 2.5rem;
    margin-bottom: 1.5rem;
}
.news-content__text p:nth-last-of-type(1) {
    margin-bottom: 0;
}
.news-content__text b, .news-content__text strong {
    font-weight: 700;
}

.news-content__text ul, .news-content__text ol{
    list-style: square;
    margin: 0.5ex 0 2em 2em;
    padding: 0;
}
.news-content__text ul li, .news-content__text ol li{
    margin: 0 0 0.5em 0;
}
.news-content__text ul li:last-child, .news-content__text ul ol:last-child{
    margin: 0;
}

.news-content__text a, .news-content__text .link{
    color: var(--color-green);
}
.news-content__text a:hover{
    text-decoration: underline;
}

.news-content__back-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 4.8rem 0 0;
    font-weight: 500;
    font-size: 2rem;
    line-height: 2.4rem;
    color: var(--color-green);
}
.news-content__back-link:hover {
    text-decoration: underline;
}
.news-content__back-link-icon {
    display: block;
    margin-right: 0.5rem;
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: var(--color-grey4);
}
.news-content__block-legend {
    display: block;
    margin-bottom: 2.4rem;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 2.1rem;
    letter-spacing: 0.02em;
}
.news-content__news-item {
    margin-bottom: 3.2rem;
}
.news-content__news-item:nth-last-of-type(1) {
    margin-bottom: 0;
}

.text-block__title{
	margin-bottom: 3.2rem;
}

.news-content__text{

}

@media screen and (max-width: 991px) {
    .news-content__container {
        -webkit-column-gap: 0;
        -moz-column-gap: 0;
        column-gap: 0;
        row-gap: 60px;
    }
    .news-content__left-block,
    .news-content__right-block {
        -ms-grid-column-span: 12;
        grid-column: 12 span;
    }
    .news-content__text {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .news-content__text p {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .news-content__back-link {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        margin-top: 0;
        margin-bottom: 3.2rem;
    }
    .news-content__news-item {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        margin-bottom: 0;
        margin-right: 1.6rem;
        width: 25.8rem;
    }
    .news-content__news-item:last-child {
        margin-right: 0;
    }
    .news-content__news-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        overflow: auto;
        margin-right: -44px;
        padding-right: 44px;
        margin-left: -44px;
        padding-left: 44px;
    }
    .news-content__news-list::-webkit-scrollbar {
        display: none;
    }
    .news-detail__intro {
        margin-bottom: 4rem;
    }
}
@media screen and (max-width: 767px) {
    .news-content__container {
        row-gap: 40px;
    }
    .news-content__text p {
        font-size: 1.4rem;
        line-height: 2.4rem;
    }
}
