

/* Start:/local/templates/fgup/components/bitrix/news.list/files.list/style.css?17700398932088*/
/* Стили для сетки файлов и ссылок */
.files-grid {
    display: grid;
    gap: 15px;
    margin-bottom: 40px;
}

/* Карточка файла/ссылки */
.file-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.file-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border-left-color: #336eac;
}

.file-card:active {
    transform: translateY(0);
}

.file-content {
    flex: 1;
}

.file-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.file-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.file-icon {
    width: 32px;
    height: 32px;
    margin-left: 15px;
    flex-shrink: 0;
}

/* SVG иконки с цветом #336eac */
.file-icon svg {
    width: 100%;
    height: 100%;
    fill: #336eac;
}

/* Иконка для ссылок */
.link-icon {
    /* Иконка внешней ссылки */
}

/* Иконка для файлов */
.download-icon {
    /* Иконка скачивания */
}

/* Настольные устройства (≥ 800px) */
@media (min-width: 800px) {
    .files-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Мобильные устройства (< 800px) */
@media (max-width: 799px) {
    .files-grid {
        grid-template-columns: 1fr;
    }

    .file-card {
        padding: 18px;
    }
}

/* Дополнительная адаптация для очень маленьких экранов */
@media (max-width: 480px) {
    .file-card {
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
    }

    .file-icon {
        margin-left: 0;
        margin-top: 10px;
        align-self: flex-end;
    }

    .file-title {
        font-size: 1.1rem;
    }
}
/* End */
/* /local/templates/fgup/components/bitrix/news.list/files.list/style.css?17700398932088 */
