/* Front-end + editor shared styles */
.ric-tv-hero {
	position: relative;
	overflow: hidden;
	min-height: 360px;
	background-size: cover;
	background-position: center;
	padding: 60px 0 28px;
}

.ric-tv-hero__top {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.ric-tv-hero__middle {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px 0 22px;
}

.ric-tv-hero__title {
	margin: 0;
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1.05;
	font-weight: 300;
	color: #ffffff;
	max-width: 560px;
}

.ric-tv-hero__right {
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	min-width: 180px;
}

.ric-tv-hero__logo {
	max-width: 400px;
	height: auto;
	display: block;
	filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.15));
}

.ric-tv-hero__center {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 18px 0 22px;
}

.ric-tv-hero__tv {
	height: auto;
	display: block;
	filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.25));
}

.ric-tv-hero__footer {
	background: #efefef;
	margin: 0 auto;
	padding: 22px 0 26px;
	width: 100%;
	--ricFooterTextColor: #2a2a2a;
	/* fallback */
}

.ric-tv-hero__footer-text {
	color: #2a2a2a;
	font-size: clamp(16px, 1.5vw, 26px);
	line-height: 1.35;
	text-align: center;
	max-width: 1100px;
	padding: 0 24px;
	margin: 0 auto;
	background-color: var(--ricFooterBg, #efefef);
	padding: 22px 0 26px;
	width: 100%;
	--ricFooterTextColor: #2a2a2a;
	color: var(--ricFooterTextColor);
}




@media (max-width: 720px) {
	.ric-tv-hero {
		padding: 20px 18px 0;
	}

	.ric-tv-hero__footer {
		margin: 0 -18px;
		padding: 18px 18px 22px;
	}

	.ric-tv-hero__top {
		flex-direction: column;
		align-items: flex-start;
	}

	.ric-tv-hero__right {
		min-width: 0;
	}

	.ric-tv-hero__logo {
		max-width: 180px;
	}
}

@media (max-width: 580px) {
	.ric-tv-hero__title {
		order: 1;
	}

	.ric-tv-hero__logo-wrap {
		margin: 0 auto;
	}

	.ric-tv-hero__tv {
		width: 100%;
	}

	.ric-tv-hero__footer {
		margin: 0 auto;

	}

}