.rs-banner {
	position: relative;
	display: block;
	border-radius: 14px;
	overflow: hidden;
	background: #1f6fe0;
	min-height: 520px;
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover;
}

.rs-banner:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(30, 114, 232, .96) 0%, rgba(30, 114, 232, .85) 55%, rgba(30, 114, 232, .75) 100%);
}

.rs-banner__inner {
	position: relative;
	z-index: 1;
	color: #fff;
	padding: 48px 24px 88px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-height: 90vh;
}

.rs-banner__headline {
	font-size: 38px;
	line-height: 1.05;
	margin: 0;
	font-weight: 800;
	letter-spacing: .2px
}

.rs-banner__headline .accent {
	color: #ffb000
}

.rs-banner__subtext {
	opacity: .95;
	margin: 0;
	font-size: 18px;
	line-height: 1.4
}

.rs-banner__price {
	margin: 0;
	font-size: 22px;
	font-size: 18px;
	line-height: 1.4;
}

.rs-banner__price .accent {
	color: #ffb000;
	font-weight: 800
}

.rs-banner__logo {
	max-width: 180px;
    margin: -15px auto 15px;
}

.rs-banner__cta {
	display: block;
	text-align: center;
	margin-top: 10px;
	padding: 14px 18px;
	border-radius: 999px;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	background: linear-gradient(180deg, #ffb000, #ff8a00);
	color: #fff;
	box-shadow: 0 6px 20px rgba(0, 0, 0, .25)
}

.rs-banner__cta:focus,
.rs-banner__cta:hover {
	filter: brightness(1.13);
	text-decoration: none;
}

.rs-banner__stores {
	display: flex;
	gap: 14px;
	align-items: center;
	justify-content: center;
	margin-top: 10px
}

.rs-store {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	font-size: 14px;
	padding: 0;
	border-radius: 0;
	background: transparent;
}

@media (max-width:480px) {
	.rs-banner {
		min-height: 460px;
		max-width: 320px;
        margin-inline: auto;
	}

	.rs-banner__headline {
		font-size: 32px;
	}

	.rs-banner__subtext {
		font-size: 16px;
	}

	.rs-banner__price {
		font-size: 18px;
	}
}