

/* Start:/local/templates/matilda_s1/components/bitrix/news/materials.1/bitrix/catalog.section.list/section.material/style.css?17809646562030*/
.main-sections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

/* Карточка раздела */
.section-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
    display: block;
    position: relative;
    overflow: hidden;
}

.section-card:hover {
    transform: translateY(-4px);
    border-color: #d0d0d0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    text-decoration: none;
}

/* Название */
.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.section-card:hover .section-title {
    color: #2e4d8f;
}

/* Количество */
.section-count {
    font-size: 14px;
    color: #999;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.count-number {
    font-weight: 600;
    color: #666;
}

/* Описание */
.section-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Стрелка */
.section-arrow {
    position: absolute;
    bottom: 24px;
    right: 24px;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
}

.section-card:hover .section-arrow {
    opacity: 1;
    transform: translateX(0);
}

.section-arrow svg {
    width: 20px;
    height: 20px;
    stroke: #2e4d8f;
    stroke-width: 2;
    fill: none;
}

/* Адаптив */
@media (max-width: 768px) {
    .main-sections-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .section-card {
        padding: 20px;
    }

    .section-icon {
        width: 48px;
        height: 48px;
    }

    .section-icon svg {
        width: 24px;
        height: 24px;
    }

    .section-title {
        font-size: 18px;
    }
}
/* End */
/* /local/templates/matilda_s1/components/bitrix/news/materials.1/bitrix/catalog.section.list/section.material/style.css?17809646562030 */
