.rondo-hero {
	box-sizing: border-box;
	background-size: cover;
	background-position: center 32%;
	min-height: 640px;
	display: flex;
	align-items: center;
	padding: 100px 48px;
}

.rondo-hero__inner {
	max-width: 680px;
	width: 100%;
	margin-left: 150px;
}

.rondo-hero__headline {
	color: #ffffff;
	font-weight: 700;
	font-size: 74px;
	line-height: 0.98;
	letter-spacing: -0.025em;
	margin: 0 0 24px;
}

.rondo-hero__subhead {
	color: #e7e7e4;
	font-weight: 300;
	font-size: 21px;
	line-height: 1.5;
	max-width: 520px;
	margin: 0 0 32px;
}

.rondo-hero__buttons {
	display: flex;
	gap: 16px;
	margin-bottom: 32px;
	flex-wrap: wrap;
}

.rondo-btn {
	display: inline-block;
	font-weight: 700;
	font-size: 16px;
	padding: 14px 28px;
	border-radius: 999px;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.rondo-btn--white {
	background-color: #ffffff;
	color: #1d1c1c;
}

.rondo-btn--white:hover {
	background-color: #60b050;
	color: #ffffff;
}

.rondo-btn--outline {
	background-color: transparent;
	color: #ffffff;
	border: 1.5px solid rgba(255, 255, 255, 0.85);
}

.rondo-btn--outline:hover {
	background-color: rgba(255, 255, 255, 0.15);
}

.rondo-hero__stats {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}

.rondo-hero__rating {
	background-color: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 999px;
	padding: 8px 18px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.rondo-hero__stat {
	color: #e7e7e4;
	font-size: 14px;
	font-weight: 500;
	position: relative;
	padding-left: 24px;
}

.rondo-hero__stat::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 28px;
	background-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 767px) {
	.rondo-hero__headline {
		font-size: 44px;
	}

	.rondo-hero {
		min-height: auto;
		padding: 80px 24px;
	}
}
