

/* Start:/local/templates/seo_lev/components/bitrix/menu/seo_lev_sitemap/style.css?17857482233569*/
/* =====================================================================
   СТРАНИЦА: КАРТА САЙТА
   ===================================================================== */
.sitemap-section {
    padding: 60px 0 80px 0;
    font-family: 'Inter', var(--montserrat-alternates), sans-serif;
}

/* Сетка колонок */
.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* Карточка колонки */
.sitemap-col {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    align-self: start; /* Чтобы карточки не растягивались в высоту */
}

.sitemap-col:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Заголовок блока */
.sitemap-title {
    font-size: 20px;
    font-weight: 700;
    color: #222222;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #d4af37; /* Фирменная линия */
}

/* Главный список */
.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-list > li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 18px;
}

.sitemap-list > li::before {
    content: "■";
    position: absolute;
    left: 0;
    top: 1px;
    color: #d4af37;
    font-size: 10px;
}

/* Вложенный список (2-й уровень) */
.sitemap-sublist {
    list-style: none;
    padding-left: 15px;
    margin-top: 10px;
    margin-bottom: 5px;
    border-left: 1px dashed #e9ecef;
}

/* Обновляем отступы для 3-го уровня */
.sitemap-sublist li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 18px; /* Добавляем воздух, чтобы текст не прилипал к маркеру */
}

/* Заменяем текстовое тире на стильную золотую линию */
.sitemap-sublist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px; /* Сдвигаем вниз, чтобы линия встала ровно по центру первой строки текста */
    width: 10px;
    height: 2px;
    background-color: #d4af37; /* Фирменный золотой цвет */
    border-radius: 1px; /* Чуть смягчаем края */
}

/* Ссылки */
.sitemap-col a {
    color: #444444;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.sitemap-sublist a {
    font-weight: 400;
    font-size: 14px;
    color: #666666;
}

/* Эффект наведения (текст чуть сдвигается и золотеет) */
.sitemap-col a:hover {
    color: #d4af37;
    padding-left: 4px;
}

/* Адаптив */
@media (max-width: 1024px) {
    .sitemap-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 колонки на планшетах */
    }
}

@media (max-width: 768px) {
    .sitemap-section {
        padding: 30px 0;
    }
    .sitemap-grid {
        grid-template-columns: 1fr; /* 1 колонка на телефонах */
        gap: 20px;
    }
    .sitemap-col {
        padding: 25px 20px;
    }
}
/* End */
/* /local/templates/seo_lev/components/bitrix/menu/seo_lev_sitemap/style.css?17857482233569 */
