/* Breadcrumbs */
.breadcrumbs {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.breadcrumbs a {
    color: #E63946;
    /* Red color for links */
    text-decoration: none;
    font-weight: 600;
}

.breadcrumbs a:hover {
    color: #E63946;
    text-decoration: none;
}

.breadcrumbs span {
    color: var(--text-muted);
}

.breadcrumbs span:last-child {
    color: var(--text-primary);
    font-weight: 400;
}