/* Breadcrumbs LRDS — solo texto, blanco, rem + sombra configurable */

.lrds-breadcrumb {
	--lrds-bc-color: #ffffff;
	--lrds-bc-font-size: 0.875rem;
	--lrds-bc-shadow-x: 0px;
	--lrds-bc-shadow-y: 1px;
	--lrds-bc-shadow-blur: 4px;
	--lrds-bc-shadow-color: rgba(0, 0, 0, 0.35);
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	max-width: 100%;
	box-sizing: border-box;
	background: transparent;
	border-radius: 0;
	padding: 0;
	box-shadow: none;
	font-family: "Poppins", sans-serif;
	font-style: italic;
	font-weight: 600;
	font-size: var(--lrds-bc-font-size) !important;
	line-height: 1.35;
	color: var(--lrds-bc-color);
	text-shadow: var(--lrds-bc-shadow-x) var(--lrds-bc-shadow-y) var(--lrds-bc-shadow-blur) var(--lrds-bc-shadow-color);
	vertical-align: middle;
}

.lrds-breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	line-height: inherit;
	font-size: inherit !important;
}

.lrds-breadcrumb__item {
	display: inline-flex;
	align-items: center;
	margin: 0;
	padding: 0;
	line-height: inherit;
	font-size: inherit !important;
}

.lrds-breadcrumb a,
.lrds-breadcrumb span,
.lrds-breadcrumb__sep,
.lrds-breadcrumb__link,
.lrds-breadcrumb__current {
	font-family: "Poppins", sans-serif !important;
	font-style: italic !important;
	font-weight: 600 !important;
	font-size: inherit !important;
	line-height: inherit !important;
	letter-spacing: normal !important;
	color: var(--lrds-bc-color) !important;
	text-shadow: var(--lrds-bc-shadow-x) var(--lrds-bc-shadow-y) var(--lrds-bc-shadow-blur) var(--lrds-bc-shadow-color) !important;
	-webkit-font-smoothing: antialiased;
}

.lrds-breadcrumb__sep {
	display: inline-flex;
	align-items: center;
	margin: 0 0.4em;
	transform: translateY(0.05em);
}

.lrds-breadcrumb__link {
	display: inline-flex;
	align-items: center;
	text-decoration: none !important;
	border: none !important;
	box-shadow: none !important;
	background: transparent !important;
	opacity: 0.92;
	transition: opacity 0.2s ease;
}

.lrds-breadcrumb__link:hover,
.lrds-breadcrumb__link:focus {
	opacity: 1;
	text-decoration: none !important;
}

.lrds-breadcrumb__current {
	display: inline-flex;
	align-items: center;
	opacity: 1;
}

@media (max-width: 767px) {
	.lrds-breadcrumb {
		font-size: calc(var(--lrds-bc-font-size) * 0.85) !important;
	}
}
