@charset "UTF-8";
.news {
    margin-top: 24px;
    margin-bottom: 80px;
}

.news__caption {
    margin-bottom: 24px;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.news-item {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 24px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e6e6e6;
    position: relative;
    margin-bottom: 40px;
}

.news-item::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #e6e6e6;
    position: absolute;
    bottom: 0;
    left: 0;
}

.news-item__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
}

.news-item__title {
    font-size: 26px;
    font-weight: 700;
    margin: 0;
}

.news-item__title a {
    text-decoration: none;
    color: #1c1b22;
}

.news-item__title a:hover {
    color: #dd2542;
}

.news-item__image-box {
    width: 360px;
    height: auto;
}

.news-item__image {
    display: block;
    width: 100%;
    border-radius: 6px;
}

.news-item__text {
    font-size: 16px;
    color: #333;
    margin: 0;
}

.news-item__date {
    font-size: 14px;
    color: #6e6e6e;
}

.news-item h2 {
    margin-bottom: 8px;
    font-size: 22px;
    line-height: 28px;
}

.news-item h2 a {
    text-decoration: none;
}

.news-item h2 a:hover {
    color: #dd2542;
}

.news-item p {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 18px;
}

.news-item small {
    display: block;
    color: #6e6e6e;
    font-size: 12px;
    line-height: 15px;
}

.news_single .news__caption {
    margin-bottom: 16px;
}

.news__date {
    margin-bottom: 24px;
    color: #6e6e6e;
    font-size: 12px;
    line-height: 15px;
}

.news h1.title {
    margin-bottom: 24px;
}

.news__text {
    font-size: 18px;
    line-height: 25px;
    color: #1c1b22;
    margin-top: 16px;
}

.news__text p {
    margin-bottom: 12px;
}

.news__text h2 {
    margin: 32px 0 16px;
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
}

.news__text h3 {
    margin: 24px 0 12px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
}

.news__text ul,
.news__text ol {
    margin: 0 0 16px;
    padding-left: 24px;
}

.news__text ul {
    list-style-type: disc;
}

.news__text ol {
    list-style-type: decimal;
}

.news__text a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0;
    text-underline-position: under;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    cursor: pointer;
    color: #1846a8 !important;
}

.news__text a:hover {
    color: #3d7df3 !important;
    text-decoration-color: #3d7df3;
}

.news__text img {
    margin: 16px 0;
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

.news__text table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 14px;
    line-height: 18px;
}

.news__text th,
.news__text td {
    border: 1px solid #e0e0e0;
    padding: 8px 10px;
}

.news__text th {
    background-color: #f5f5f5;
    font-weight: 600;
}

.news__text blockquote {
    margin: 16px 0;
    padding: 12px 16px;
    border-left: 3px solid #dd2542;
    background-color: #f9f9f9;
}

@media (max-width: 950px) {
    .news {
        margin-top: 16px;
        margin-bottom: 60px;
    }

    .news__caption {
        margin-bottom: 16px;
    }

    .news-list {
        gap: 32px;
    }

    .news-item {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .news__image {
        max-width: 100%;
    }
}

@media (max-width: 520px) {
    .news-item {
        padding-bottom: 24px;
    }

    .news-item h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

.news__image,
.news-gallery {
    max-width: 800px;
    margin: 0 auto 32px;
}

.news-gallery__viewport {
    overflow: hidden;
}

.news-gallery__image {
    display: none;
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.news-gallery__image.is-active {
    display: block;
}

.news-gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.news-gallery__nav--prev {
    left: 8px;
}

.news-gallery__nav--next {
    right: 8px;
}

.news-gallery__nav:hover {
    background: rgba(0, 0, 0, 0.6);
}

@media (max-width: 520px) {
    .news-gallery {
        max-width: 100%;
    }
}

.news .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    padding: 0;
    list-style: none;
}

.news .pagination li {
    list-style: none;
}

.news .pagination a,
.news .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;

    border: 1px solid #d9d9d9;
    border-radius: 4px;

    text-decoration: none;
    color: #1c1b22;
    font-weight: 600;
    font-size: 16px;
    background-color: #fff;

    transition: border-color .2s, background-color .2s, color .2s;
}

.news .pagination a:hover {
    border-color: #1c1b22;
}

.news .pagination .active span,
.news .pagination .active a {
    background-color: #1c1b22;
    color: #fff;
    border-color: #1c1b22;
}

.news .pagination .disabled span,
.news .pagination .disabled a {
    border-color: transparent;
    background-color: transparent;
    color: #aaa;
    cursor: default;
    pointer-events: none;
}
.category__crumbs {
    margin-bottom: 24px;
}