/**
 * Styles pour le fil d'Ariane
 *
 * @package GASQUY_SEO
 */

.gasquy-seo-breadcrumbs {
    padding: 10px 0;
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: "›";
    margin-left: 8px;
    color: #666;
    font-weight: 400;
}

.breadcrumb-item a {
    color: #2271b1;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: #135e96;
    text-decoration: underline;
}

.breadcrumb-item.active span {
    color: #3c434a;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .gasquy-seo-breadcrumbs {
        font-size: 13px;
    }
}
