/* Стили для хлебных крошек */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 3rem 0;
    margin: 0 auto;
    list-style: none;
    background: transparent;
    font-size: 0.95rem;
    max-width: 800px;
    border-bottom: 1px solid #e5e7eb;
	margin-bottom: 3rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    color: #6b7280;
    position: relative;
}


.breadcrumb li a {
    color: #233D63;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.breadcrumb li a:hover {
    color: #0071b8;
    background: #f3f4f6;
}

.breadcrumb li:last-child a {
    color: #6b7280;
    pointer-events: none;
    font-weight: 500;
}

.breadcrumb .fa-home {
    color: #233D63;
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.breadcrumb .fa-home:hover {
    transform: scale(1.1);
}

/* Адаптивность */
@media (max-width: 768px) {
    .breadcrumb {
        font-size: 0.85rem;
        padding: 1rem 0;
        margin: 0 1rem;
    }
    
    .breadcrumb li:not(:last-child)::after {
        margin: 0 0.5rem;
    }
    
    .breadcrumb li a {
        padding: 0.2rem 0.4rem;
    }
}