/**
 * Custom Breadcrumb Styles and Improvements
 * 
 * Configuration Instructions:
 * 1. Go to Admin > Theme Settings > Breadcrumbs tab
 * 2. Set parent pages for each content type:
 *    - Newsletter Archive Parent
 *    - Gazette Archive Parent
 *    - Vacancy Archive Parent
 * 3. For vacancies, select a custom Vacancy Archive Page if you're using one
 *    - This should be a page that contains the vacancy-archive-section block
 * 
 * The breadcrumbs will automatically display the proper hierarchy based on:
 * - Post type (vacancy, newsletter, gazette)
 * - Whether viewing an archive or single post
 * - The parent page settings configured in Theme Settings
 */

/* Breadcrumb improvements */
.page-header-section .page-header-container ul.breadcrumbs {
    padding-left: 0;
}

.page-header-section .page-header-container ul.breadcrumbs > li {
    color: #fff;
}

.page-header-section .page-header-container ul.breadcrumbs > li:last-child span.current,
.page-header-section .page-header-container ul.breadcrumbs > li:last-child a.current {
    padding-right: 0;
}

.page-header-section .page-header-container ul.breadcrumbs > li a.current {
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-header-section .page-header-container ul.breadcrumbs > li a.current.has-siblings {
    cursor: pointer;
}

.page-header-section .page-header-container ul.breadcrumbs > li a.current.has-siblings:after {
    content: "";
    background: url("../theme-blocks/page-header-section/images/arrow-down.svg") no-repeat center;
    background-size: 100%;
    width: 9px;
    height: 5px;
    display: block;
}
