

/* Start:/local/templates/main/components/bitrix/news.detail/.default/style.css?178643826211447*/
/* ============================================================
   НОВОСТНАЯ СТАТЬЯ - СТИЛИ
   ============================================================ */

.news-detail {
    
       display: flex;
    flex-direction: column;
    gap: 30px;
    
    color: #1a1a1a;
    line-height: 1.7;
    font-size: 17px;
}

/* ============================================================
   ЗАГОЛОВОК
   ============================================================ */
.news-detail-header {
    background: #ffffff;
    padding: 20px;
    border-radius: 30px;
}

/* ДАТА С БЕЙДЖЕМ */
.news-detail-date {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
    font-size: 17px;
    color: #2E333D;
}

/* БЕЙДЖ "НОВОЕ" */
.new-pl {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 14px;
    background: rgba(39, 174, 96, 0.3);
    color: #27AE60;
    font-size: 13px;
    font-weight: 700;
    line-height: 24px;
    border-radius: 20px;
    
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

/* ЗАГОЛОВОК */
.news-detail-title {
    margin: 0;
    padding: 0;
    font-size: 35px;
    font-weight: 700;
    line-height: 52px;
    color: #2E333D;
    letter-spacing: -0.3px;
}

/* ============================================================
   ИЗОБРАЖЕНИЕ
   ============================================================ */

.news-detail-img {
   border-radius:15px;
    background: #f5f5f5;
    overflow: hidden;
	margin-bottom:50px;
}

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

/* ============================================================
   ВИДЕО
   ============================================================ */

.news-detail-video {
    position: relative;
    margin: 0 -20px 25px -20px;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000000;
}

.news-detail-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================================
   АУДИО
   ============================================================ */

.news-detail-audio {
    margin: 0 -20px 25px -20px;
}

.news-detail-audio iframe {
    display: block;
    width: 100%;
    border: none;
}

/* ============================================================
   СЛАЙДЕР
   ============================================================ */

.news-detail-slider {
    position: relative;
    margin: 0 -20px 25px -20px;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #f0f0f0;
}

.news-detail-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    transition: left 0.4s ease;
    will-change: left;
}

.news-detail-slider-slide {
    flex: 0 0 100%;
    height: 100%;
}

.news-detail-slider-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Стрелки слайдера */
.news-detail-slider-arrow-container-left,
.news-detail-slider-arrow-container-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.3s ease;
}

.news-detail-slider-arrow-container-left {
    left: 15px;
}

.news-detail-slider-arrow-container-right {
    right: 15px;
}

.news-detail-slider:hover .news-detail-slider-arrow-container-left,
.news-detail-slider:hover .news-detail-slider-arrow-container-right {
    opacity: 1;
}

.news-detail-slider-arrow-container-left:hover,
.news-detail-slider-arrow-container-right:hover {
    background: rgba(0, 0, 0, 0.6);
}

.news-detail-slider-arrow {
    color: #ffffff;
    font-size: 24px;
    font-weight: 300;
    user-select: none;
    line-height: 1;
}

/* Точки управления */
.news-detail-slider-control {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.news-detail-slider-control li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.news-detail-slider-control li.current {
    background: #ffffff;
    transform: scale(1.15);
}

.news-detail-slider-control li:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   ТЕКСТ СТАТЬИ
   ============================================================ */

.news-detail-content {
	    background: #ffffff;
    padding: 20px;
    border-radius: 30px;
    font-size: 17px;
    line-height: 1.7;
    color: #2E333D;
}

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

.news-detail-content p:last-child {
    margin-bottom: 0;
}

.news-detail-content strong,
.news-detail-content b {
    font-weight: 700;
    color:#2E333D;
}

.news-detail-content em,
.news-detail-content i {
    font-style: italic;
}

.news-detail-content h2,
.news-detail-content h3,
.news-detail-content h4 {
    margin: 28px 0 14px 0;
    font-weight: 600;
    color: #2E333D;
}

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

.news-detail-content h3 {
    font-size: 20px;
}

.news-detail-content h4 {
    font-size: 18px;
}

.news-detail-content ul,
.news-detail-content ol {
    margin: 0 0 18px 0;
    padding-left: 28px;
}

.news-detail-content li {
    margin-bottom: 6px;
}

.news-detail-content blockquote {
    margin: 0 0 18px 0;
    padding: 0 0 0 20px;
    border-left: 4px solid #e0e0e0;
    color: #555555;
    font-style: italic;
}

.news-detail-content a {
    color: #0066cc;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.news-detail-content a:hover {
    border-bottom-color: #0066cc;
}

.news-detail-content img {
    max-width: 100%;
    height: auto;
}

.news-detail-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 18px;
}

.news-detail-content table th,
.news-detail-content table td {
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
}

.news-detail-content table th {
    background: #f5f5f5;
    font-weight: 600;
}

/* ============================================================
   МЕТА-ДАННЫЕ (просмотры, автор, теги и т.д.)
   ============================================================ */

.news-detail-meta {
    margin-top: 6px;
    font-size: 14px;
    color: #999999;
}

.news-detail-meta i {
    margin-right: 5px;
    color: #bbbbbb;
    width: 16px;
    display: inline-block;
    text-align: center;
}

.news-detail-meta a {
    color: #999999;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.news-detail-meta a:hover {
    border-bottom-color: #999999;
}

/* ============================================================
   ПОДВАЛ СТАТЬИ (рейтинг + шеринг)
   ============================================================ */

.news-detail-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
    padding-top: 22px;
    border-top: 1px solid #eeeeee;
    flex-wrap: wrap;
    gap: 15px;
}

.news-detail-rating {
    display: flex;
    align-items: center;
}

.news-detail-share {
    display: flex;
    align-items: center;
}

/* ============================================================
   АДАПТИВНОСТЬ
   ============================================================ */

/* Планшеты */
@media (max-width: 820px) {
    .news-detail {
        padding: 25px 18px 40px;
    }

    .news-detail-title {
        font-size: 28px;
    }

    .news-detail-img,
    .news-detail-video,
    .news-detail-audio,
    .news-detail-slider {
        margin: 0 -18px 22px -18px;
    }

    .news-detail-img img {
        max-height: 400px;
    }
}

/* Мобильные устройства */
@media (max-width: 600px) {
    .news-detail {
        padding: 20px 15px 35px;
        font-size: 16px;
    }

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

    .news-detail-date {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .news-detail-img,
    .news-detail-video,
    .news-detail-audio,
    .news-detail-slider {
        margin: 0 -15px 20px -15px;
    }

    .news-detail-img img {
        max-height: 300px;
    }

    .news-detail-content {
        font-size: 16px;
        line-height: 1.65;
    }

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

    .news-detail-slider-arrow-container-left,
    .news-detail-slider-arrow-container-right {
        width: 36px;
        height: 36px;
        opacity: 0.6;
    }

    .news-detail-slider-arrow {
        font-size: 20px;
    }

    .news-detail-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-top: 28px;
        padding-top: 18px;
    }
}

/* Маленькие телефоны */
@media (max-width: 400px) {
    .news-detail {
        padding: 15px 12px 30px;
        font-size: 15px;
    }

    .news-detail-title {
        font-size: 20px;
    }

    .news-detail-img,
    .news-detail-video,
    .news-detail-audio,
    .news-detail-slider {
        margin: 0 -12px 18px -12px;
    }

    .news-detail-img img {
        max-height: 220px;
    }

    .news-detail-content {
        font-size: 15px;
        line-height: 1.6;
    }

    .news-detail-content p {
        margin-bottom: 14px;
    }

    .news-detail-slider-arrow-container-left,
    .news-detail-slider-arrow-container-right {
        width: 30px;
        height: 30px;
    }

    .news-detail-slider-arrow {
        font-size: 16px;
    }

    .news-detail-meta {
        font-size: 13px;
    }
}

/* ============================================================
   ПЕЧАТНАЯ ВЕРСИЯ
   ============================================================ */

@media print {
    .news-detail {
        padding: 20px 0;
        max-width: 100%;
    }

    .news-detail-img,
    .news-detail-video,
    .news-detail-audio,
    .news-detail-slider {
        margin: 0 0 20px 0;
    }

    .news-detail-footer {
        border-top-color: #cccccc;
    }

    .news-detail-slider-arrow-container-left,
    .news-detail-slider-arrow-container-right {
        display: none;
    }
}

@media (max-width: 600px) {
    .news-detail-date {
        font-size: 14px;
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .new-pl {
        font-size: 11px;
        padding: 1px 10px;
        line-height: 20px;
    }
    
    .news-detail-title {
        font-size: 24px;
        line-height: 34px;
    }
}

@media (max-width: 400px) {
    .news-detail-date {
        font-size: 13px;
        gap: 6px;
    }
    
    .new-pl {
        font-size: 10px;
        padding: 1px 8px;
        line-height: 18px;
    }
    
    .news-detail-title {
        font-size: 20px;
        line-height: 28px;
    }
}
/* End */
/* /local/templates/main/components/bitrix/news.detail/.default/style.css?178643826211447 */
