.rn20-hero {
	position: relative;
	min-height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 60px 20px;
	overflow: hidden;
}

.rn20-hero__overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #000000;
	pointer-events: none;
}

.rn20-hero__content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	text-align: center;
}

.rn20-hero__title {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: bold;
	margin: 0 0 20px;
	line-height: 1.2;
}

.rn20-hero__subtitle {
	font-size: clamp(1.125rem, 3vw, 1.5rem);
	margin: 0 0 30px;
	line-height: 1.5;
}

.rn20-hero__cta {
	margin-top: 30px;
}

.rn20-hero__button {
	display: inline-block;
	padding: 15px 40px;
	background-color: #0073aa;
	color: #ffffff;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 600;
	transition: background-color 0.2s;
}

.rn20-hero__button:hover {
	background-color: #005a87;
}
