.vr-breadcrumb {
	width: 100%;
	background: #ffffff;
	border-bottom: 1px solid #e9edf2;
}

.vr-breadcrumb__container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 16px 24px;
}

.vr-breadcrumb__list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.vr-breadcrumb__item {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	line-height: 1.5;
	color: #667085;
}

.vr-breadcrumb__link {
	color: #475467;
	text-decoration: none;
	transition: color 0.2s ease;
}

.vr-breadcrumb__link:hover,
.vr-breadcrumb__link:focus {
	color: #c8102e;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.vr-breadcrumb__current {
	color: #101828;
	font-weight: 600;
}

.vr-breadcrumb__separator {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	color: #98a2b3;
	flex-shrink: 0;
}

.vr-breadcrumb__separator svg {
	display: block;
	width: 14px;
	height: 14px;
}

@media (max-width: 767px) {
	.vr-breadcrumb__container {
		padding: 12px 20px;
	}

	.vr-breadcrumb__list {
		gap: 6px;
	}

	.vr-breadcrumb__item {
		gap: 6px;
		font-size: 13px;
	}
}