

/* Start:/local/templates/sora/components/bitrix/news/news-list/style.css?17847152667754*/
/* ===== НОВОСТИ ===== */
.news-page {
    padding: 40px 0;
}

/* ===== КАТЕГОРИИ (ФИЛЬТР) ===== */
.news-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    border-bottom: 2px solid #eef2f7;
    padding-bottom: 15px;
}

.news-cat-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 30px;
    color: var(--color-primary-blue, #2F415E);
    background: #f5f6fa;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.news-cat-link:hover {
    background: var(--color-orange, #E87722);
    color: #fff;
}

.news-cat-link.active {
    background: var(--color-orange, #E87722);
    color: #fff;
}

.news-cat-count {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    padding: 0 8px;
    font-size: 12px;
    min-width: 20px;
    text-align: center;
}

.news-cat-link.active .news-cat-count {
    background: rgba(255, 255, 255, 0.3);
}

.news-cat-link:not(.active) .news-cat-count {
    background: rgba(0, 0, 0, 0.08);
    color: #666;
}

/* ===== СЕТКА КАРТОЧЕК ===== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* ===== КАРТОЧКА НОВОСТИ ===== */
.news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.news-card-img {
    display: block;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-img img {
    transform: scale(1.03);
}

.news-card-body {
    padding: 24px;
}

.news-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 10px;
}

.news-card-category {
    background: #f0f2f5;
    color: var(--color-primary-blue, #2F415E);
    padding: 2px 12px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 12px;
}

.news-card-title {
    font-size: 20px;
    line-height: 1.3;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.news-card-title a {
    color: var(--color-primary-blue, #2F415E);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-card-title a:hover {
    color: var(--color-orange, #E87722);
}

.news-card-text {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-link {
    display: inline-block;
    margin-top: 14px;
    font-weight: 500;
    font-size: 14px;
    color: var(--color-orange, #E87722);
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-card-link:hover {
    color: var(--color-orange-dark, #d06b00);
    transform: translateX(4px);
}

/* ===== ПАГИНАЦИЯ ===== */
.news-pagination {
    margin-top: 40px;
    text-align: center;
}

.news-pagination .modern-page-navigation {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.news-pagination a,
.news-pagination span {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
}

.news-pagination a {
    color: var(--color-primary-blue, #2F415E);
    background: #f5f6fa;
}

.news-pagination a:hover {
    background: var(--color-orange, #E87722);
    color: #fff;
}

.news-pagination .modern-page-current {
    background: var(--color-orange, #E87722);
    color: #fff;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-categories {
        gap: 8px;
    }

    .news-cat-link {
        font-size: 13px;
        padding: 6px 14px;
    }

    .news-card-title {
        font-size: 18px;
    }
}

/* ===== ДЕТАЛЬНАЯ СТРАНИЦА НОВОСТИ ===== */
.news-detail-page {
    display: flex;
    gap: 40px;
    padding: 40px 0;
}

/* ===== САЙДБАР ===== */
.news-sidebar {
    flex: 0 0 240px;
}

.news-sidebar h4 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary-blue, #2F415E);
    border-bottom: 2px solid var(--color-orange, #E87722);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.sidebar-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-categories li {
    margin-bottom: 8px;
}

.sidebar-cat-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #f5f6fa;
    border-radius: 8px;
    color: var(--color-primary-blue, #2F415E);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.sidebar-cat-link:hover {
    background: var(--color-orange, #E87722);
    color: #fff;
}

.sidebar-cat-link.active {
    background: var(--color-orange, #E87722);
    color: #fff;
}

.sidebar-cat-count {
    background: rgba(0, 0, 0, 0.08);
    padding: 0 8px;
    border-radius: 20px;
    font-size: 12px;
    color: #666;
}

.sidebar-cat-link.active .sidebar-cat-count {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
}

/* ===== ОСНОВНОЙ КОНТЕНТ ===== */
.news-detail-content {
    flex: 1;
    min-width: 0;
}

.detail-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.detail-category {
    background: var(--color-orange, #E87722);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.detail-date {
    color: #999;
    font-size: 14px;
}

.detail-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary-blue, #2F415E);
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.detail-image {
    margin: 20px 0 30px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.detail-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

.detail-text {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}

.detail-text p {
    margin-bottom: 16px;
}

/* ===== СЛАЙДЕР "ЧИТАЙТЕ ТАКЖЕ" ===== */
.related-news {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #eef2f7;
}

.related-news h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-primary-blue, #2F415E);
    margin-bottom: 20px;
}

.related-slider {
    overflow: hidden;
    padding: 10px 0;
    position: relative;
}

.related-slider .swiper-button-next,
.related-slider .swiper-button-prev {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    color: #fff;
}

.related-slider .swiper-button-next::after,
.related-slider .swiper-button-prev::after {
    font-size: 16px;
}

.related-slider .swiper-button-next:hover,
.related-slider .swiper-button-prev:hover {
    background: var(--color-orange);
}

/* ===== АДАПТИВ ===== */
@media (max-width: 768px) {
    .news-detail-page {
        flex-direction: column;
        gap: 20px;
    }

    .news-sidebar {
        flex: 1;
        order: 2;
    }

    .news-detail-content {
        order: 1;
    }

    .detail-title {
        font-size: 24px;
    }

    /* .related-slider {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 14px;
    }

    .related-slide img {
        height: 120px;
    } */
}
/* End */


/* Start:/local/templates/sora/components/bitrix/news/news-list/bitrix/news.list/.default/style.css?1784703512150*/
div.news-list
{
	word-wrap: break-word;
}
div.news-list img.preview_picture
{
	float:left;
	margin:0 4px 6px 0;
}
.news-date-time {
	color:#486DAA;
}

/* End */
/* /local/templates/sora/components/bitrix/news/news-list/style.css?17847152667754 */
/* /local/templates/sora/components/bitrix/news/news-list/bitrix/news.list/.default/style.css?1784703512150 */
