/* ------------------------------------------------------------ *\
Breadcumbs
\* ------------------------------------------------------------ */

.breadcrumbs {
	margin-bottom: 15px;
}

.breadcrumbs ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: -3px -13px;
}

.breadcrumbs li {
	font-weight: 700;
	padding: 3px 13px;
	font-size: 14px;
}

.breadcrumbs li:not(:last-child) {
	position: relative;
}

.breadcrumbs li:not(:last-child):after {
	content: '▸';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(50%, -50%);
	font-weight: 500;
}

.breadcrumbs a {
	text-decoration: underline;
}

.breadcrumbs a:hover {
	text-decoration: underline;
}

.breadcrumbs li:last-child a {
	font-weight: 700;
}

@media screen and ( max-width: 768px ) {
	.breadcrumbs li {
		font-size: 12px;
	}
}
