

/* Start:/local/templates/main/components/bitrix/news.list/slider/style.css?1590991377150*/
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 */


/* Start:/local/templates/main/components/bitrix/news.list/catalog-index/style.css?1590991376150*/
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 */


/* Start:/local/templates/main/components/bitrix/news.list/gallery/style.css?1590991377150*/
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 */


/* Start:/local/templates/main/components/bitrix/news.list/news-main-slider/style.css?17709954174586*/
/* ============================================
   СТИЛИ ДЛЯ БЛОКА НОВОСТЕЙ
   Используем #novosti для изоляции от других блоков
   ============================================ */

/* Заголовок "НОВОСТИ" */
#novosti h3 {
    color: #FFF;
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    font-family: 'Roboto-Bold', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Карточка новости - улучшенный дизайн */
#novosti .product__slide {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

#novosti .product__slide:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 169, 1, 0.5);
}

/* Эффект увеличения при наведении */
#novosti .product__slide:hover img {
    transform: scale(1.05);
}

/* Изображение новости */
#novosti .product__slide img {
    width: 100%;
    height: 250px;  /* Увеличена высота */
    object-fit: cover;  /* Заполняет весь контейнер */
    object-position: center;
    border-bottom: 2px solid rgba(255, 169, 1, 0.3);
    transition: transform 0.3s ease;
}

/* Контейнер описания */
#novosti .slide__description {
    padding: 20px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.2);
}

/* ЗАГОЛОВОК НОВОСТИ - яркий акцент */
#novosti .slide__description--name {
    font-size: 18px;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 75px;
    font-family: 'Roboto-Bold', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Дата публикации - стильное оформление */
#novosti .slide__description--size {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #FFA901;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 169, 1, 0.2);
    font-family: 'Roboto-Medium', sans-serif;
}

#novosti .slide__description--size div:first-child {
    font-weight: 500;
    opacity: 0.8;
}

#novosti .slide__description--size div:last-child {
    font-weight: 600;
}

/* ОПИСАНИЕ НОВОСТИ - выделенный стиль */
#novosti .slide__description--price.retail {
    margin-top: auto;
    background: rgba(255, 169, 1, 0.08);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #FFA901;
}

#novosti .slide__description--price div {
    font-size: 14px;
    color: #E0E0E0;
    line-height: 1.6;
    font-family: 'Roboto-Light', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Ссылка-обёртка на всю карточку */
#novosti .slide--link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
}

/* Кнопка "Все новости" */
#novosti .product__link {
    text-align: center;
    margin-top: 40px;
}

#novosti .product__link a {
    display: inline-block;
    padding: 14px 40px;
    background-color: #FFA901;
    color: #2C2C2C;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Roboto-Bold', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 169, 1, 0.3);
}

#novosti .product__link a:hover {
    background-color: #FFB920;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 169, 1, 0.5);
}

/* Адаптив для мобильных устройств */
@media screen and (max-width: 768px) {
    #novosti h3 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    #novosti .product__slide img {
        height: 180px;
    }
    
    #novosti .slide__description {
        min-height: 200px;
        padding: 15px;
    }
    
    #novosti .slide__description--name {
        font-size: 16px;
        min-height: 45px;
    }
    
    #novosti .product__link a {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* End */
/* /local/templates/main/components/bitrix/news.list/slider/style.css?1590991377150 */
/* /local/templates/main/components/bitrix/news.list/catalog-index/style.css?1590991376150 */
/* /local/templates/main/components/bitrix/news.list/gallery/style.css?1590991377150 */
/* /local/templates/main/components/bitrix/news.list/news-main-slider/style.css?17709954174586 */
