/* ============================================================
   Breadcrumb — site-wide component
   ============================================================ */

.gc-breadcrumb {
    background: var(--gc-bg);
	padding: 7px 0;
	font-size: 11px;
}

.gc-breadcrumb__container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 30px;
}

.gc-breadcrumb ol {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
}

.gc-breadcrumb li {
	color: var(--gc-text-muted);
	display: inline-flex;
	align-items: center;
}

.gc-breadcrumb li:not(:first-child)::before {
	content: '/';
	margin-right: 6px;
	color: var(--gc-border);
}

.gc-breadcrumb a {
	color: var(--gc-text-muted);
	text-decoration: none;
	transition: color 150ms ease;
}

.gc-breadcrumb a:hover {
	color: var(--gc-primary);
}

.gc-breadcrumb li:last-child {
	color: var(--gc-navy);
	font-weight: 500;
}

@media (max-width: 600px) {
	.gc-breadcrumb {
		padding: 5px 0;
		font-size: 12px;
	}
	.gc-breadcrumb__container {
		padding: 0 24px;
	}
}