.rc-hero-slider {
	position: relative;
	overflow: hidden;
}

.rc-hero-slider .rc-hero-slide {
	display: none;
	margin: 0;
}

.rc-hero-slider .rc-hero-slide.is-active {
	display: flex;
	animation: rc-hero-fade-in .4s ease;
}

@keyframes rc-hero-fade-in {
	from { opacity: 0; }
	to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
	.rc-hero-slider .rc-hero-slide.is-active {
		animation: none;
	}
}

.rc-hero-slider .rc-hero-slide .wp-block-cover__inner-container {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}

.rc-hero-slider .rc-hero-slide__text {
	flex: 1 1 320px;
	max-width: 640px;
}

.rc-hero-slider .rc-hero-avatar {
	flex: 0 0 auto;
}

.rc-hero-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: none;
	background: #ffffff;
	color: #003C77;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
}

.rc-hero-arrow:hover,
.rc-hero-arrow:focus-visible {
	background: #003C77;
	color: #ffffff;
}

.rc-hero-arrow--prev { left: 1rem; }
.rc-hero-arrow--next { right: 1rem; }

.rc-hero-dots {
	position: absolute;
	bottom: 1.25rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: .6rem;
	z-index: 5;
}

.rc-hero-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 2px solid #ffffff;
	background: rgba(255, 255, 255, .4);
	padding: 0;
	cursor: pointer;
}

.rc-hero-dot.is-active {
	background: #ffffff;
}

@media (max-width: 600px) {
	.rc-hero-slider .rc-hero-slide {
		min-height: 640px !important;
	}
	.rc-hero-slider .rc-hero-slide .wp-block-cover__inner-container {
		flex-direction: column;
		text-align: center;
	}
	.rc-hero-arrow {
		width: 40px;
		height: 40px;
	}
}
