/**
 * Explore Breadcrumb — visual styles.
 *
 * @package PasionGift_App
 */

.pg-explore-breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pg-explore-breadcrumb__item {
	display: inline-flex;
	align-items: center;
	min-width: 0;
	font-family: var(--pg-font-family);
	font-size: var(--pg-font-size-xs);
	line-height: var(--pg-line-height-normal);
	color: var(--pg-color-text-muted);
}

.pg-explore-breadcrumb__item:not(:last-child)::after {
	content: "›";
	margin-inline: 0.25rem;
	color: var(--pg-color-text-placeholder);
}

.pg-explore-breadcrumb__link {
	color: var(--pg-color-text-muted);
	text-decoration: none;
}

.pg-explore-breadcrumb__link:hover {
	color: var(--pg-color-brand-wine);
}

.pg-explore-breadcrumb__item--current .pg-explore-breadcrumb__text {
	color: var(--pg-color-text);
	font-weight: var(--pg-font-weight-medium);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 12rem;
}

@media (max-width: 359px) {
	.pg-explore-breadcrumb__item--current .pg-explore-breadcrumb__text {
		max-width: 8rem;
	}
}
