/* Дополнительные кастомные штрихи к стилям Bootstrap */
body {
    background-color: #f8fafc;
}

/* Ограничение инпута на десктопе с плавной анимацией расширения */
.search-input {
    width: 150px;
    transition: width 0.3s ease;
}
.search-input:focus {
    width: 200px;
}

/* Стилизация главного экрана (Hero) */
.hero-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-bottom: 4px solid #0d6efd;
}

/* Линия-подчеркивание под заголовками блоков (как на joomla.center) */
.block-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #0d6efd;
}

/* Активный пункт в левом сайдбаре */
.sidebar-nav .nav-link.active {
    background-color: #e7f1ff;
    color: #0d6efd !important;
    font-weight: 600;
}
.sidebar-nav .nav-link:hover:not(.active) {
    background-color: #f1f5f9;
}

/* Плавный эффект смещения ссылок в футере при наведении */
.footer-menu a {
    transition: all 0.2s ease;
}
.footer-menu a:hover {
    color: #fff !important;
    padding-left: 6px;
}

/* Кастомизация рамки заглушки */
.border-dashed {
    border-style: dashed !important;
}