

/* Start:/bitrix/templates/aspro_next/components/bitrix/news.list/catalog-sections-1/style.css?17773141145147*/
.item-views.catalog.sections .item .info {
    line-height: 18px;
    padding-left: 60px!important;
}

/* Базовые стили для секции */
.item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    transition: all 0.3s ease;
}

/* Вертикальная оранжевая черта */
.vertical-line {
    width: 5px;
    height: auto;
    min-height: 80px;
    background-color: #ff7e00;
    border-radius: 3px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.item:hover .vertical-line {
    background-color: #ff5500;
    transform: scaleX(1.2);
    box-shadow: 0 0 8px rgba(255, 126, 0, 0.5);
}

/* Анимация для всей карточки при наведении */
.animate-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.animate-item:hover {
    transform: translateY(-3px);
}

/* Ссылка раздела */
.section-link {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
}

.section-link:hover {
    color: #ff7e00 !important;
    transform: translateX(5px);
}

/* Подчеркивание для ссылки раздела */
.section-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff7e00;
    transition: width 0.3s ease;
}

.section-link:hover::after {
    width: 100%;
}

/* Стили для списка PDF */
.pdf-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.pdf-item {
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.pdf-item:hover {
    transform: translateX(5px);
}

/* Ссылки PDF */
.pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.pdf-link i {
    font-size: 18px;
    color: #ff4444;
    transition: all 0.3s ease;
}

.pdf-link:hover i {
    transform: scale(1.1);
    color: #ff0000;
}

.pdf-name {
    transition: all 0.3s ease;
}

.pdf-link:hover .pdf-name {
    color: #ff7e00;
    padding-left: 3px;
}

/* Обычные ссылки */
.default-link {
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.default-link:hover {
    color: #ff7e00;
    transform: translateX(3px);
}

/* Кнопка "Подробнее" */
.more-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.more-link:hover {
    transform: translateX(5px);
    gap: 10px;
}

.more-link i {
    transition: transform 0.3s ease;
}

.more-link:hover i {
    transform: translateX(3px);
}

/* Альтернативная анимация - пульсация для PDF иконок */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.pdf-link:hover i {
    animation: pulse 0.5s ease;
}

/* Эффект появления элементов списка */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.pdf-item {
    animation: fadeInLeft 0.3s ease forwards;
    opacity: 0;
}

.pdf-item:nth-child(1) { animation-delay: 0.05s; }
.pdf-item:nth-child(2) { animation-delay: 0.1s; }
.pdf-item:nth-child(3) { animation-delay: 0.15s; }
.pdf-item:nth-child(4) { animation-delay: 0.2s; }
.pdf-item:nth-child(5) { animation-delay: 0.25s; }

/* Эффект свечения для оранжевой черты */
@keyframes glow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 126, 0, 0.3);
    }
    100% {
        box-shadow: 0 0 0 5px rgba(255, 126, 0, 0);
    }
}

.item:hover .vertical-line {
    animation: glow 0.8s ease;
}

/* Адаптивность */
@media (max-width: 768px) {
    .item {
        flex-direction: column;
    }
    
    .vertical-line {
        width: 100%;
        height: 5px;
        min-height: auto;
    }
    
    .item:hover .vertical-line {
        transform: scaleY(1.2);
    }
}
/* Анимация для всей секции при загрузке */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.item {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

/* Задержки для последовательного появления */
.col-md-12:nth-child(1) .item { animation-delay: 0.05s; }
.col-md-12:nth-child(2) .item { animation-delay: 0.1s; }
.col-md-12:nth-child(3) .item { animation-delay: 0.15s; }
.col-md-12:nth-child(4) .item { animation-delay: 0.2s; }
.col-md-12:nth-child(5) .item { animation-delay: 0.25s; }
.col-md-12:nth-child(6) .item { animation-delay: 0.3s; }

/* Hover эффект для всей карточки */
.item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
/* End */
/* /bitrix/templates/aspro_next/components/bitrix/news.list/catalog-sections-1/style.css?17773141145147 */
