/**
 * Elementor Breadcrumbs Styles
 */

.elementor-breadcrumb {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 10px 0;
}

.elementor-breadcrumb a {
    color: #0073aa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.elementor-breadcrumb a:hover {
    color: #005177;
    text-decoration: underline;
}

.elementor-breadcrumb .sep {
    color: #999;
    margin: 0 5px;
    font-weight: normal;
}

.elementor-breadcrumb .current {
    color: #333;
    font-weight: 600;
}

.elementor-breadcrumb .home {
    font-weight: 500;
}

/* Responsive styles */
@media (max-width: 768px) {
    .elementor-breadcrumb {
        font-size: 13px;
    }
    
    .elementor-breadcrumb .sep {
        margin: 0 3px;
    }
}

@media (max-width: 480px) {
    .elementor-breadcrumb {
        font-size: 12px;
        word-break: break-word;
    }
}

/* Schema.org microdata styling */
.elementor-breadcrumb [typeof="v:Breadcrumb"] {
    display: inline;
}

/* Accessibility improvements */
.elementor-breadcrumb a:focus {
    outline: 2px solid #005177;
    outline-offset: 2px;
}

/* Dark theme support */
.elementor-breadcrumb.dark-theme {
    color: #ccc;
}

.elementor-breadcrumb.dark-theme a {
    color: #4da6ff;
}

.elementor-breadcrumb.dark-theme a:hover {
    color: #66b3ff;
}

.elementor-breadcrumb.dark-theme .current {
    color: #fff;
}

.elementor-breadcrumb.dark-theme .sep {
    color: #999;
}
