.rcs-widget {
	--rcs-gap: 24px;
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 0 0 34px;
}

.rcs-viewport {
	overflow: visible;
	width: 100%;
}

.rcs-track {
	--rcs-slides-to-show: 2;
	display: flex;
	gap: var(--rcs-gap);
	transform: translate3d(0, 0, 0);
	transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.rcs-card {
	--rcs-card-width: calc((100% - (var(--rcs-gap) * (var(--rcs-slides-to-show) - 1))) / var(--rcs-slides-to-show));
	--rcs-card-height: 450px;
	position: relative;
	flex: 0 0 var(--rcs-card-width);
	height: var(--rcs-card-height);
	min-width: 260px;
	overflow: hidden;
	background: transparent;
	border-radius: 14px;
	isolation: isolate;
}

.rcs-card::before {
	content: none;
	position: absolute;
	inset: 0;
	z-index: 1;
	background: transparent;
	opacity: 0;
	pointer-events: none;
}

.rcs-card::after {
	content: none;
	position: absolute;
	inset: 44% 0 0;
	z-index: 2;
	background: transparent;
	pointer-events: none;
}

.rcs-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1.002);
}

.rcs-card-content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	padding: 40px 56px 48px;
}

.rcs-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	max-width: 100%;
	margin-bottom: 15px;
	padding: 8px 17px;
	border-radius: 999px;
	background: #fff;
	color: #003f9e;
	font: 700 15px/1.05 Arial, sans-serif;
	box-shadow: 0 7px 18px rgba(0, 0, 0, 0.16);
}

.rcs-tag-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
	flex: 0 0 auto;
}

.rcs-title {
	max-width: 760px;
	margin: 0;
	color: #fff;
	font: 800 clamp(26px, 2.35vw, 44px)/0.97 Arial, sans-serif;
	letter-spacing: 0;
	text-wrap: balance;
}

.rcs-controls-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: 42px;
}

.rcs-controls {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: fit-content;
	margin: 0;
	padding: 5px;
	border-radius: 999px;
	background: #fff;
	box-shadow: inset 0 0 0 4px #e7ecf5;
}

.rcs-arrow {
	display: grid;
	width: 38px;
	height: 38px;
	padding: 0;
	place-items: center;
	border: 2px solid currentColor;
	border-radius: 50%;
	background: #fff;
	color: #001b55;
	cursor: pointer;
	transition: transform 180ms ease, opacity 180ms ease;
}

.rcs-arrow:hover,
.rcs-arrow:focus-visible {
	transform: scale(1.04);
}

.rcs-arrow:focus-visible,
.rcs-dot:focus-visible {
	outline: 3px solid rgba(0, 63, 158, 0.35);
	outline-offset: 4px;
}

.rcs-arrow svg {
	width: 23px;
	height: 23px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.rcs-dots {
	display: inline-flex;
	align-items: center;
	gap: 13px;
	min-width: 84px;
	justify-content: center;
}

.rcs-dot {
	display: block;
	width: 12px;
	height: 12px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #cbd3e2;
	cursor: pointer;
	transition: width 180ms ease, background-color 180ms ease;
}

.rcs-dot.is-active {
	width: 23px;
	background: #001b55;
	border-radius: 999px;
}

@media (max-width: 1024px) {
	.rcs-track {
		--rcs-slides-to-show: 1.4;
	}

}

@media (max-width: 767px) {
	.rcs-widget {
		padding-bottom: 28px;
	}

	.rcs-track {
		--rcs-slides-to-show: 1;
	}

	.rcs-card-content {
		padding: 26px 24px 30px;
	}

	.rcs-title {
		line-height: 1;
	}

	.rcs-tag {
		padding: 7px 14px;
		font-size: 13px;
	}

	.rcs-controls-wrap {
		margin-top: 28px;
	}
}
