.breadcrumb ol,
.breadcrumb ol li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.breadcrumb {
	padding: 0.5em 0;
}

.breadcrumb ol {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;

	gap: 0.25em;
}

.breadcrumb li::after {
	content: '';

	display: inline-block;

	width: 0.25em;
	height: 0.25em;

	border-width: 2px;
	border-style: solid;
	border-top-color: transparent;
	border-left-color: transparent;
	border-right-color: inherit;
	border-bottom-color:inherit;

	transform: translateY(-0.05em) rotate(-45deg);
}

.breadcrumb li:last-child::after {
	content: none;
}
