/* Custom Breadcrumbs Styling */
.custom-breadcrumbs {
    /* Pulls from Elementor Global Typography */
    font-family: var(--e-global-typography-text-font-family, sans-serif);
    font-weight: var(--e-global-typography-text-font-weight, 400);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Style the Links (Home, Parent Pages) */
.custom-breadcrumbs a {
    /* Pulls from Elementor Global Primary Color */
    color: var(--e-global-color-primary, #0073aa);
    text-decoration: none;
    transition: 0.3s ease;
}




/* Style the Current Page text */
.custom-breadcrumbs .current-page {
    /* Pulls from Elementor Global Text Color */
    color: var(--e-global-color-text, #333);
    font-weight: bold;
}