.news-detail h1 {
    margin-bottom: 20px;
}

.news-detail .detail_picture {
    margin: 20px 0;
    width: 100%;
}

.news-detail img:not([class]) {
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

.news-detail .detail_text {
    margin-bottom: 40px;
    border-bottom: 3px solid var(--yellow);
    padding-bottom: 40px;
    padding-top: 25px;
}

.news-detail .detail_text .row {
    margin-top: 20px;
    margin-bottom: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    align-items: center;
    border-bottom: 1px solid var(--bggray);
}

.news-detail .detail_text ol,
.news-detail .detail_text ul {
    padding-left: 15px;
}

.news-detail .detail_text li {
    margin: 10px 0;
}

.news-detail {
    background-color: var(--bgblack);
    padding: 40px;
    border-radius: 10px;
}


.news-date-time {
    font-size: 14px;
    font-weight: 500;
    color: #9c9c9c;
}

.fancylink {
    padding: 20px;
    background: var(--bggray);
    display: table;
    border-radius: 4px;
    border: 2px solid var(--yellow);
    position: relative;
    margin: 20px auto;
}

.fancylink:after {
    content: 'нажмите для увеличения';
    position: absolute;
    left: 0;
    bottom: -25px;
    width: 100%;
    text-align: center;
    font-size: 12px;
    white-space: nowrap;
}

html[lang="en"] .fancylink:after {
    content: 'Tap to zoom';
}

@media screen and (max-width: 575px){
    .news-detail {
        width: calc(100% + 30px);
        margin: 0 -15px;
        margin-top: -40px;
        border-radius: 0;
        padding-top: 30px;
        padding-left: 15px;
        padding-right: 15px;
        font-size: 14px;
    }
}