/* Breadcrumbs Rank Math - Estilos corporativos */
.rank-math-breadcrumb {
    margin: 0 0 20px 0;
    padding: 12px 0;
    font-family: inherit;
    line-height: 1.4;
}

.rank-math-breadcrumb p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #ffffff;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.rank-math-breadcrumb a {
    color: #71E4D1;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
}

.rank-math-breadcrumb a:hover {
    color: #ffffff;
    border-bottom-color: #71E4D1;
    text-decoration: none;
}

.rank-math-breadcrumb .separator {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 8px;
    font-weight: normal;
    display: inline-flex;
    align-items: center;
}

.rank-math-breadcrumb .last {
    color: #ffffff;
    font-weight: 500;
    opacity: 0.9;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .rank-math-breadcrumb p {
        font-size: 13px;
    }
    
    .rank-math-breadcrumb .separator {
        margin: 0 6px;
    }
}

/* Variante con fondo opcional */
.rank-math-breadcrumb.with-background {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(113, 228, 209, 0.2);
} 