/* === Promo Banner Widget === */
.pb-banner {
	position: relative;
	display: block;
	width: 100%;
	height: 350px;
	overflow: hidden;
	text-decoration: none;
	color: #fff;
}

.pb-banner img.pb-bg-img,
.elementor-widget img.pb-bg-img {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	object-fit: cover !important;
	transition: transform 0.5s ease !important;
	z-index: 0;
	margin: 0 !important;
	padding: 0 !important;
}

.pb-banner:hover img.pb-bg-img {
	transform: scale(1.05) !important;
}

.pb-overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.35);
	transition: background-color 0.3s ease;
	z-index: 1;
}

.pb-banner:hover .pb-overlay {
	background-color: rgba(0, 0, 0, 0.45);
}

.pb-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 30px;
	text-align: center;
	box-sizing: border-box;
}

.pb-text-wrap {
	display: flex;
	flex-direction: column;
}

.pb-subtitle {
	display: block;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 8px;
	color: #fff;
}

.pb-title {
	display: block;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 10px;
	color: #fff;
}

.pb-desc {
	display: block;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.85);
}
