.pshb-hero {
	position: relative;
	width: 100%;
	height: var(--pshb-height, 460px);
	border-radius: 14px;
	overflow: hidden;
	display: flex;
	align-items: center;
	box-sizing: border-box;
}

.pshb-slides {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.pshb-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

.pshb-slide.is-active {
	opacity: 1;
}

/* slide effect (translate) */
.pshb-hero[data-effect="slide"] .pshb-slides {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform .8s ease-in-out;
}
.pshb-hero[data-effect="slide"] .pshb-slide {
	position: relative;
	flex: 0 0 100%;
	opacity: 1;
	transition: none;
}

.pshb-no-image {
	background: linear-gradient(135deg, #2b2b2b, #4a3220);
}

.pshb-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: var(--pshb-overlay, rgba(0,0,0,0.45));
	pointer-events: none;
}

.pshb-content {
	position: relative;
	z-index: 3;
	max-width: 620px;
	padding: 40px 50px;
	box-sizing: border-box;
}

.pshb-title {
	font-size: 40px;
	font-weight: 800;
	text-transform: uppercase;
	margin: 0 0 8px;
	line-height: 1.1;
}

.pshb-subtitle {
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 12px;
}

.pshb-description {
	font-size: 15px;
	line-height: 1.5;
	margin: 0 0 26px;
	opacity: .9;
	max-width: 480px;
}

.pshb-button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 26px;
	border-radius: 8px;
	font-weight: 700;
	letter-spacing: .5px;
	text-decoration: none;
	font-size: 14px;
	text-transform: uppercase;
	transition: transform .2s ease, opacity .2s ease;
}
.pshb-button:hover {
	opacity: .9;
	transform: translateY(-2px);
}
.pshb-arrow {
	display: inline-block;
	width: 26px;
	height: 26px;
	line-height: 26px;
	text-align: center;
	border-radius: 50%;
	background: rgba(255,255,255,0.25);
}

.pshb-dots {
	position: absolute;
	z-index: 4;
	bottom: 18px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
}
.pshb-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	background: rgba(255,255,255,0.5);
	cursor: pointer;
	padding: 0;
}
.pshb-dot.is-active {
	background: #fff;
}

@media (max-width: 782px) {
	.pshb-hero {
		height: auto;
		min-height: 380px;
	}
	.pshb-content {
		padding: 30px 24px;
	}
	.pshb-title {
		font-size: 28px;
	}
	.pshb-subtitle {
		font-size: 17px;
	}
}
