.rp-hero-slider-widget {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	max-width: 100vw;
}

.rp-hero-slider {
	position: relative;
	width: 100%;
	height: 400px;
	overflow: hidden;
}

.rp-hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.9s ease;
	z-index: 0;
}

.rp-hero-slide.active {
	opacity: 1;
	z-index: 1;
}

.rp-hero-slide-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.rp-hero-slide-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, #009FE3 0%, rgba(47, 172, 102, 0.1) 64.02%);
	mix-blend-mode: multiply;
	z-index: 2;
	pointer-events: none;
}

.rp-hero-slide-overlay::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0.15) 100%);
}

.rp-hero-slide-content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 32px 90px 28px 32px;
	z-index: 3;
	display: block;
	text-decoration: none;
}

.rp-hero-slide-title {
	font-family: Ubuntu, sans-serif;
	font-size: 30px;
	font-weight: 600;
	color: #fff;
	line-height: 1.3;
	margin: 0 0 10px;
	max-width: min(70%, 900px);
}

.rp-hero-slide-meta {
	display: flex;
	align-items: center;
	gap: 14px;
	font-family: Ubuntu, sans-serif;
	font-size: 14px;
	color: rgba(255,255,255,0.9);
}

.rp-hero-slide-label {
	position: relative;
	padding-left: 16px;
}

.rp-hero-slide-label::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: rgba(255,255,255,0.7);
}

.rp-hero-slider-nav {
	position: absolute;
	right: 20px;
	bottom: 20px;
	z-index: 4;
	display: flex;
	gap: 8px;
}

.rp-hero-arrow-btn {
	width: 44px !important;
	height: 44px !important;
	min-width: 44px !important;
	border-radius: 0 !important;
	border: none !important;
	background: #fff !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	cursor: pointer;
	padding: 10px !important;
	margin: 0 !important;
	outline: none !important;
	box-shadow: none !important;
	transition: background 0.15s ease;
}

.rp-hero-arrow-btn img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
}

.rp-hero-arrow-btn:hover,
.rp-hero-arrow-btn:focus {
	background: #f0f0f0 !important;
}

@media (max-width: 782px) {
	.rp-hero-slider {
		height: 320px;
	}
	.rp-hero-slide-title {
		font-size: 22px;
		max-width: 85%;
	}
	.rp-hero-slide-content {
		padding: 22px 20px 20px;
	}
}
