.wp-block-breadcrumbs {
	// This block has customizable padding, border-box makes that more predictable.
	box-sizing: border-box;

	ol {
		list-style: none;
		margin: 0;
		padding: 0;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}

	li {
		margin: 0;
		padding: 0;
		display: flex;
		align-items: center;

		&:not(:last-child)::after {
			content: var(--separator, "/");
			margin: 0 0.5em;
			opacity: 0.7;
		}
	}

	span {
		color: inherit;
	}
}
