/* Rhodes Hero */
.rtb-hero {
	position: relative;
	min-height: 78vh;
	display: flex;
	align-items: center;
	padding: 4.5rem 1.5rem 3rem;
	overflow: hidden;
	color: var(--rtb-white);
	background-color: var(--rtb-primary);
	background-size: cover;
	background-position: center;
}

.rtb-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, rgba(6, 59, 99, 0.72) 0%, rgba(6, 59, 99, 0.35) 55%, rgba(6, 59, 99, 0.2) 100%);
	pointer-events: none;
}

.rtb-hero__inner {
	position: relative;
	z-index: 1;
	width: min(1120px, 100%);
	margin: 0 auto;
	display: grid;
	gap: 2rem;
}

.rtb-hero__copy {
	max-width: 36rem;
}

.rtb-hero__title {
	margin: 0 0 0.75rem;
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.1;
	color: var(--rtb-white);
}

.rtb-hero__subtitle {
	margin: 0 0 1.5rem;
	font-size: clamp(1rem, 2vw, 1.2rem);
	font-weight: 500;
	opacity: 0.95;
}

.rtb-hero__benefits {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.rtb-hero__benefit {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	font-size: 0.92rem;
	font-weight: 500;
}

.rtb-hero__benefit-icon {
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	border: 1.5px solid rgba(255, 255, 255, 0.55);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.rtb-hero__benefit-icon svg {
	width: 1rem;
	height: 1rem;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
}

.rtb-hero__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: 1.5rem 2rem;
	align-items: start;
}

.rtb-hero__aside {
	align-self: end;
	text-align: right;
	padding-bottom: 1rem;
}

.rtb-hero__aside-script {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	color: var(--rtb-white);
	margin: 0;
	opacity: 0.95;
}

@media (max-width: 900px) {
	.rtb-hero {
		min-height: auto;
		padding: 5rem 1rem 2rem;
	}

	.rtb-hero__layout {
		grid-template-columns: 1fr;
	}

	.rtb-hero__aside {
		display: none;
	}
}
