.news-article-page {
    background: #f7f7f7;
    color: #101010;
    font-family: "Inter", "Roboto", sans-serif;
}

.news-article {
    padding: 32px 0 82px;
}

.news-article__container {
    max-width: 1320px;
}

.news-article__breadcrumbs {
    margin: 0 0 24px;
}

.news-article__breadcrumbs .breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    background: transparent;
}

.news-article__breadcrumbs .breadcrumb_unit {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #8a8a8a;
    font-size: 14px;
    line-height: 1.2;
    text-decoration: none;
}

.news-article__breadcrumbs .breadcrumb_unit:not(:last-child):after {
    content: "";
    width: 8px;
    height: 8px;
    margin-left: 10px;
    border-top: 2px solid #df0014;
    border-right: 2px solid #df0014;
    transform: rotate(45deg);
}

.news-article__breadcrumbs .breadcrumb_unit.active {
    color: #df0014;
    font-weight: 700;
    pointer-events: none;
}

.news-article__layout {
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .08);
}

.news-article__header {
    padding: 42px 56px 28px;
}

.news-article__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 18px;
}

.news-article__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: #f2f2f2;
    color: #777;
    font-size: 13px;
    line-height: 1;
}

.news-article__title {
    max-width: 980px;
    margin: 0;
    color: #101010;
    font-size: 48px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: 0;
}

.news-article__author {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    max-width: 520px;
    margin: 24px 0 0;
    color: #101010;
    text-decoration: none;
}

.news-article__author:hover {
    color: #df0014;
}

.news-article__author img {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
}

.news-article__author span,
.news-article__author strong,
.news-article__author small {
    display: block;
}

.news-article__author strong {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
}

.news-article__author small {
    margin-top: 3px;
    color: #777;
    font-size: 13px;
    line-height: 1.25;
}

.news-article__image {
    margin: 0;
    background: #f1f1f1;
}

.news-article__image img {
    display: block;
    width: 100%;
    max-height: 450px;
    object-fit: cover;
}

.news-article__content {
    padding: 42px 56px 18px;
    color: #242424;
    font-size: 17px;
    line-height: 1.65;
}

.news-article__content > *:first-child {
    margin-top: 0;
}

.news-article__content p {
    margin: 0 0 18px;
}

.news-article__content h2,
.news-article__content h3,
.news-article__content h4 {
    margin: 34px 0 16px;
    color: #101010;
    line-height: 1.18;
    font-weight: 800;
}

.news-article__content h2 {
    font-size: 30px;
}

.news-article__content h3 {
    font-size: 24px;
}

.news-article__content ul,
.news-article__content ol {
    margin: 0 0 22px;
    padding-left: 24px;
}

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

.news-article__content ul li::marker {
    color: #df0014;
}

.news-article__content a {
    color: #df0014;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.news-article__content img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.news-article__toc {
    margin: 0 0 28px;
    padding: 22px 24px;
    border-radius: 18px;
    background: #f7f7f7;
}

.news-article__footer {
    max-width: 920px;
    padding: 0 56px 48px;
}

.news-article__like {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid #df0014;
    border-radius: 999px;
    background: #fff;
    color: #df0014;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    transition: background-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.news-article__like:hover {
    background: #df0014;
    color: #fff;
    box-shadow: 0 8px 18px rgba(223, 0, 20, .2);
}

.news-article__like img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.news-article__like-result {
    display: none;
    margin: 14px 0 0;
    color: #555;
    font-size: 15px;
    line-height: 1.35;
}

.news-article__like-result.active {
    display: block;
}

.news-article-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 34px 0 10px;
}

.news-article-gallery a {
    display: block;
    overflow: hidden;
    border-radius: 16px;
    background: #f1f1f1;
}

.news-article-gallery img {
    display: block;
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 0;
    transition: transform .25s ease;
}

.news-article-gallery a:hover img {
    transform: scale(1.04);
}

.news-article-doctors {
    position: relative;
    margin: 46px 0 0;
    border-radius: 24px;
}

.news-article-doctors__inner {
    max-width: none;
}

.clinic_doctors .about_block.news-article-doctors__inner .title_block {
    margin-bottom: 24px;
}

.clinic_doctors .about_block.news-article-doctors__inner .title_block h2 {
    margin: 0 0 24px;
    color: #101010;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 700;
}

.clinic_doctors .about_block.news-article-doctors__inner .group_doctors {
    padding-bottom: 0;
}

.news-article-related {
    padding: 62px 0 0;
}

.news-article-related__head {
    margin-bottom: 22px;
}

.news-article-related__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.news-article-related__card.home-news-card {
    display: flex;
    flex-direction: column;
    min-height: 380px;
    overflow: hidden;
    border-radius: 14px;
    background: #fff;
    color: #111;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .1);
    transition: transform .2s ease, box-shadow .2s ease;
}

.news-article-related__card.home-news-card:hover {
    transform: translateY(-3px);
    color: #111;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .14);
}

.news-article-related__card .home-news-card__image img {
    transition: transform .25s ease;
}

.news-article-related__card:hover .home-news-card__image img {
    transform: scale(1.04);
}

.news-rubric {
    padding: 32px 0 82px;
    background: #f7f7f7;
    font-family: "Inter", "Roboto", sans-serif;
}

.news-rubric__container {
    max-width: 1320px;
}

.news-rubric__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 0 0 28px;
}

.news-rubric__head h1 {
    margin: 0;
    color: #101010;
    font-size: 44px;
    line-height: 1.05;
    font-weight: 800;
}

.news-rubric__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 22px;
    border-radius: 999px;
    background: #df0014;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.news-rubric__action:hover {
    background: #c90012;
    color: #fff;
}

.news-rubric__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.news-rubric__card.home-news-card {
    display: flex;
    flex-direction: column;
    min-height: 380px;
    overflow: hidden;
    border-radius: 14px;
    background: #fff;
    color: #111;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .1);
    transition: transform .2s ease, box-shadow .2s ease;
}

.news-rubric__card.home-news-card:hover {
    transform: translateY(-3px);
    color: #111;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .14);
}

.news-rubric__card .home-news-card__image img {
    transition: transform .25s ease;
}

.news-rubric__card:hover .home-news-card__image img {
    transform: scale(1.04);
}

.news-rubric__pagination {
    margin-top: 34px;
}

.news-rubric__empty,
.news-rubric-review {
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

.news-rubric__empty {
    padding: 28px;
    color: #777;
    text-align: center;
}

.news-rubric-review {
    overflow: hidden;
}

.news-rubric-review h2 {
    margin: 0 0 12px;
    color: #111;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.news-rubric-review__text {
    color: #555;
    font-size: 14px;
    line-height: 1.45;
}

.news-rubric__comments {
    max-width: 1320px;
    margin-top: -46px;
    margin-bottom: 72px;
    padding: 28px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

@media (max-width: 1199px) {
    .news-article__title {
        font-size: 40px;
    }

    .news-article-related__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-rubric__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .news-article {
        padding: 18px 0 54px;
    }

    .news-article__layout {
        border-radius: 18px;
    }

    .news-article__header,
    .news-article__content,
    .news-article__footer {
        padding-right: 18px;
        padding-left: 18px;
    }

    .news-article__header {
        padding-top: 26px;
    }

    .news-article__title {
        font-size: 30px;
    }

    .news-article__content {
        padding-top: 26px;
        font-size: 15px;
        line-height: 1.58;
    }

    .news-article__content h2 {
        font-size: 24px;
    }

    .news-article__content h3 {
        font-size: 21px;
    }

    .news-article__footer {
        padding-bottom: 30px;
    }

    .news-article-gallery {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .news-article-gallery img {
        height: 210px;
    }

    .news-article-doctors {
        margin-top: 34px;
        padding: 22px 18px;
        border-radius: 18px;
    }

    .clinic_doctors .about_block.news-article-doctors__inner .title_block h2 {
        font-size: 26px;
    }

    .news-article__like {
        width: 100%;
        justify-content: center;
    }

    .news-article-related {
        padding-top: 42px;
    }

    .news-article-related__grid {
        grid-template-columns: 1fr;
    }

    .news-rubric {
        padding: 18px 0 54px;
    }

    .news-rubric__head {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 20px;
    }

    .news-rubric__head h1 {
        font-size: 30px;
    }

    .news-rubric__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-rubric__action {
        width: 100%;
    }

    .news-rubric__comments {
        margin-top: -28px;
        margin-bottom: 48px;
        padding: 18px;
    }
}


@media (max-width: 550px) {
  .news-rubric__grid {
        grid-template-columns: 1fr;
    }
}