/* [kw_breadcrumbs] — native breadcrumb trail.
   Adaptive: dark text/icons on light backgrounds (default), white inside
   Flatsome dark sections (.dark) such as page hero bands. */
.kw-breadcrumbs {
	display: block;
	margin-top: 32px;
	margin-bottom: 32px;
}
.kw-breadcrumbs__trail {
	font-size: 18px;
	color: #1a1a1a;
	line-height: 1.5;
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
}

/* Links */
.kw-breadcrumbs__trail a {
	color: #1a1a1a;
	text-decoration: underline;
	text-underline-offset: 4px;
}
.kw-breadcrumbs__trail a:hover {
	color: #1a1a1a;
	text-decoration: underline;
	text-underline-offset: 4px;
}

/* Current page */
.kw-breadcrumbs__trail .breadcrumb_last {
	color: #1a1a1a;
	font-weight: 500;
	opacity: 0.8;
}

/* Chevron separator — CSS icon, always #FFF */
.kw-breadcrumbs__sep {
	display: inline-flex;
	align-items: center;
	margin: 0 4px;
	vertical-align: middle;
}
.kw-breadcrumbs__sep::before {
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12.9463 12.0005L8.87301 7.9275C8.73468 7.789 8.66385 7.61492 8.66051 7.40525C8.65735 7.19575 8.72818 7.0185 8.87301 6.8735C9.01801 6.72867 9.19368 6.65625 9.40001 6.65625C9.60634 6.65625 9.78201 6.72867 9.92701 6.8735L14.4213 11.3678C14.5148 11.4614 14.5808 11.5602 14.6193 11.664C14.6578 11.7678 14.677 11.88 14.677 12.0005C14.677 12.121 14.6578 12.2332 14.6193 12.337C14.5808 12.4408 14.5148 12.5396 14.4213 12.6333L9.92701 17.1275C9.78851 17.2658 9.61443 17.3367 9.40476 17.34C9.19526 17.3432 9.01801 17.2723 8.87301 17.1275C8.72818 16.9825 8.65576 16.8068 8.65576 16.6005C8.65576 16.3942 8.72818 16.2185 8.87301 16.0735L12.9463 12.0005Z' fill='%231a1a1a'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Home icon — replaces the "Home" text, always #FFF */
.kw-breadcrumbs__trail a.kw-breadcrumbs__home {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	font-size: 0; /* hides the "Home" text, keeps accessible label */
}
.kw-breadcrumbs__trail a.kw-breadcrumbs__home::before {
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 19.0008H9.34625V13.9623C9.34625 13.7063 9.43283 13.4917 9.606 13.3183C9.77933 13.1452 9.994 13.0586 10.25 13.0586H13.75C14.006 13.0586 14.2207 13.1452 14.394 13.3183C14.5672 13.4917 14.6538 13.7063 14.6538 13.9623V19.0008H18V10.1546C18 10.1034 17.9888 10.057 17.9663 10.0153C17.9439 9.97368 17.9135 9.93676 17.875 9.90459L12.1828 5.62584C12.1314 5.58101 12.0705 5.55859 12 5.55859C11.9295 5.55859 11.8686 5.58101 11.8173 5.62584L6.125 9.90459C6.0865 9.93676 6.05608 9.97368 6.03375 10.0153C6.01125 10.057 6 10.1034 6 10.1546V19.0008ZM4.5 19.0008V10.1546C4.5 9.86843 4.564 9.59734 4.692 9.34134C4.82017 9.08518 4.99717 8.87426 5.223 8.70859L10.9155 4.42009C11.2313 4.17909 11.5923 4.05859 11.9985 4.05859C12.4047 4.05859 12.7667 4.17909 13.0845 4.42009L18.777 8.70859C19.0028 8.87426 19.1798 9.08518 19.308 9.34134C19.436 9.59734 19.5 9.86843 19.5 10.1546V19.0008C19.5 19.4098 19.3523 19.7621 19.0568 20.0576C18.7613 20.3531 18.409 20.5008 18 20.5008H14.0577C13.8016 20.5008 13.5869 20.4142 13.4137 20.2408C13.2404 20.0677 13.1538 19.853 13.1538 19.5968V14.5586H10.8463V19.5968C10.8463 19.853 10.7596 20.0677 10.5863 20.2408C10.4131 20.4142 10.1984 20.5008 9.94225 20.5008H6C5.591 20.5008 5.23875 20.3531 4.94325 20.0576C4.64775 19.7621 4.5 19.4098 4.5 19.0008Z' fill='%231a1a1a'/%3E%3C/svg%3E") center / contain no-repeat;
}
/* ---- White variant inside Flatsome dark sections (hero bands) ---- */
.dark .kw-breadcrumbs__trail,
.dark .kw-breadcrumbs__trail a,
.dark .kw-breadcrumbs__trail a:hover,
.dark .kw-breadcrumbs__trail .breadcrumb_last {
	color: #FFFFFF;
}
.dark .kw-breadcrumbs__sep::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12.9463 12.0005L8.87301 7.9275C8.73468 7.789 8.66385 7.61492 8.66051 7.40525C8.65735 7.19575 8.72818 7.0185 8.87301 6.8735C9.01801 6.72867 9.19368 6.65625 9.40001 6.65625C9.60634 6.65625 9.78201 6.72867 9.92701 6.8735L14.4213 11.3678C14.5148 11.4614 14.5808 11.5602 14.6193 11.664C14.6578 11.7678 14.677 11.88 14.677 12.0005C14.677 12.121 14.6578 12.2332 14.6193 12.337C14.5808 12.4408 14.5148 12.5396 14.4213 12.6333L9.92701 17.1275C9.78851 17.2658 9.61443 17.3367 9.40476 17.34C9.19526 17.3432 9.01801 17.2723 8.87301 17.1275C8.72818 16.9825 8.65576 16.8068 8.65576 16.6005C8.65576 16.3942 8.72818 16.2185 8.87301 16.0735L12.9463 12.0005Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
}
.dark .kw-breadcrumbs__trail a.kw-breadcrumbs__home::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 19.0008H9.34625V13.9623C9.34625 13.7063 9.43283 13.4917 9.606 13.3183C9.77933 13.1452 9.994 13.0586 10.25 13.0586H13.75C14.006 13.0586 14.2207 13.1452 14.394 13.3183C14.5672 13.4917 14.6538 13.7063 14.6538 13.9623V19.0008H18V10.1546C18 10.1034 17.9888 10.057 17.9663 10.0153C17.9439 9.97368 17.9135 9.93676 17.875 9.90459L12.1828 5.62584C12.1314 5.58101 12.0705 5.55859 12 5.55859C11.9295 5.55859 11.8686 5.58101 11.8173 5.62584L6.125 9.90459C6.0865 9.93676 6.05608 9.97368 6.03375 10.0153C6.01125 10.057 6 10.1034 6 10.1546V19.0008ZM4.5 19.0008V10.1546C4.5 9.86843 4.564 9.59734 4.692 9.34134C4.82017 9.08518 4.99717 8.87426 5.223 8.70859L10.9155 4.42009C11.2313 4.17909 11.5923 4.05859 11.9985 4.05859C12.4047 4.05859 12.7667 4.17909 13.0845 4.42009L18.777 8.70859C19.0028 8.87426 19.1798 9.08518 19.308 9.34134C19.436 9.59734 19.5 9.86843 19.5 10.1546V19.0008C19.5 19.4098 19.3523 19.7621 19.0568 20.0576C18.7613 20.3531 18.409 20.5008 18 20.5008H14.0577C13.8016 20.5008 13.5869 20.4142 13.4137 20.2408C13.2404 20.0677 13.1538 19.853 13.1538 19.5968V14.5586H10.8463V19.5968C10.8463 19.853 10.7596 20.0677 10.5863 20.2408C10.4131 20.4142 10.1984 20.5008 9.94225 20.5008H6C5.591 20.5008 5.23875 20.3531 4.94325 20.0576C4.64775 19.7621 4.5 19.4098 4.5 19.0008Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
}

.kw-breadcrumbs--empty {
	font-size: 13px;
	color: #b91c1c;
}