.artisan-page-header {
	position: relative;
	width: 100%;
	min-height: 410px;
	margin: 0 0 70px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	align-items: center;
	overflow: visible;
	z-index: 2;
}

.artisan-page-header__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 174, 211, 0.20);
	z-index: 1;
}

.artisan-page-header__inner {
	position: relative;
	width: 100%;
	max-width: 1244px;
	min-height: 335px;
	margin: 0 auto;
	padding: 0;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	z-index: 2;
}

.artisan-page-header__title {
	margin: 0;
	padding: 0;
	max-width: 650px;
	color: #27477d;
	font-size: 60px;
	line-height: 1.3;
	font-weight: 700;
}

.artisan-page-header__breadcrumb {
    position: absolute;
    right: 0;
    bottom: -96px;
    /* width: 290px; */
    /* height: 100px; */
    padding: 48px 100px;
    background: #fff;
    border-radius: 9999px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-sizing: border-box;
    z-index: 10;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
}

.artisan-page-header__breadcrumb a {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #27477d;
	text-decoration: none;
	white-space: nowrap;
}

.artisan-page-header__breadcrumb a:hover {
	color: #07ccec;
}

.artisan-page-header__home-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #07ccec;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
    position: absolute;
    left: -27px;
    border: 6px solid white;
    box-shadow: 0px 5px 5px 0px #07ccec4d;
}

.artisan-page-header__separator {
	color: #27477d;
}

.artisan-page-header__current {
	max-width: 150px;
	color: #07ccec;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media (max-width: 1199px) {

	.artisan-page-header__inner {
		padding-left: 30px;
		padding-right: 30px;
	}

	.artisan-page-header__breadcrumb {
		right: 30px;
	}

}

@media (max-width: 767px) {

	.artisan-page-header {
		min-height: 230px;
		margin-bottom: 60px;
	}

	.artisan-page-header__inner {
		min-height: 230px;
		padding: 0 20px;
	}

	.artisan-page-header__title {
		font-size: 34px;
		max-width: 90%;
	}

	.artisan-page-header__breadcrumb {
		right: 20px;
		bottom: -40px;
		width: calc(100% - 40px);
		height: 80px;
		padding: 0 20px;
		border-radius: 45px;
	}

	.artisan-page-header__home-icon {
		width: 34px;
		height: 34px;
		margin-left: -30px;
		font-size: 17px;
	}

	.artisan-page-header__current {
		max-width: 120px;
	}

}