/*!***********************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/blocks/carousel/index.css ***!
  \***********************************************************************************************************************************************************************************/
.rlcship-carousel {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	background: var( --wp--preset--color--base, #fff );
}

.rlcship-carousel__track {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	--rlcship-carousel-visible: 1;
	margin-bottom: -3px; /* Hide potential scrollbar without cutting off content */
}

.rlcship-carousel__track::-webkit-scrollbar {
	height: 0;
}

.rlcship-carousel__track > * {
	flex: 0 0 calc( 100% / var( --rlcship-carousel-visible, 1 ) );
	width: calc( 100% / var( --rlcship-carousel-visible, 1 ) );
	scroll-snap-align: start;
	position: relative;
}

/* Editor: InnerBlocks adds wrapper elements; treat the real block list children as slides. */

.rlcship-carousel__track > .block-editor-inner-blocks {
	width: 100%;
}

.rlcship-carousel__track
	> .block-editor-inner-blocks
	> .block-editor-block-list__layout {
	display: flex;
	margin: 0;
	padding: 0;
	gap: 0;
}

.rlcship-carousel__track
	> .block-editor-inner-blocks
	> .block-editor-block-list__layout
	> * {
	flex: 0 0 calc( 100% / var( --rlcship-carousel-visible, 1 ) );
	width: calc( 100% / var( --rlcship-carousel-visible, 1 ) );
	scroll-snap-align: start;
	position: relative;
}

.rlcship-carousel__nav {
	background: none;
    border: 0;
    color: #fff;
    cursor: pointer;
    font-size: 100px;
    line-height: 1;
	position: absolute;
    text-shadow: 2px 2px 12px #000;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    z-index: 99;
}

.rlcship-carousel__prev {
	left: 12px;
}

.rlcship-carousel__next {
	right: 12px;
}

.rlcship-carousel__nav:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}

.rlcship-carousel__dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 14px;
	display: flex;
	justify-content: center;
	gap: 10px;
	z-index: 99;
	padding: 0 12px;
}

.rlcship-carousel__dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	border: 0;
	background: rgba( 255, 255, 255, 0.55 );
	cursor: pointer;
	padding: 0;
}

.rlcship-carousel__dot.is-active {
	background: rgba( 255, 255, 255, 0.95 );
}

.rlcship-carousel__dot:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}

/* Editor-only hint (safe even if it ships). */

.rlcship-carousel__navHint {
	margin-top: 10px;
	font-size: 12px;
	opacity: 0.7;
}

@media ( max-width: 600px ) {
	.rlcship-carousel__nav {
		display: none;
	}
	.rlcship-carousel__dots {
		bottom: 10px;
	}
}

/* Hero variant (parity with legacy slider styling) */

.rlcship-carousel--hero {
	border-radius: 0;
}

.rlcship-carousel--hero .rlcship-carousel__track > *,
.rlcship-carousel--generic .rlcship-carousel__track > * {
	opacity: 0.55;
	transition:
		opacity 0.35s ease,
		transform 0.35s ease;
}

.rlcship-carousel--hero
	.rlcship-carousel__track
	> .block-editor-inner-blocks
	> .block-editor-block-list__layout
	> *,
.rlcship-carousel--generic
	.rlcship-carousel__track
	> .block-editor-inner-blocks
	> .block-editor-block-list__layout
	> * {
	opacity: 0.55;
	transition:
		opacity 0.35s ease,
		transform 0.35s ease;
}

.rlcship-carousel--hero .rlcship-carousel__track > *.is-active,
.rlcship-carousel--generic .rlcship-carousel__track > *.is-active {
	opacity: 1;
	transform: translateY( -4px );
	box-shadow: 0 25px 60px rgba( 0, 0, 0, 0.25 );
}

.rlcship-carousel--hero
	.rlcship-carousel__track
	> .block-editor-inner-blocks
	> .block-editor-block-list__layout
	> *.is-active,
.rlcship-carousel--generic
	.rlcship-carousel__track
	> .block-editor-inner-blocks
	> .block-editor-block-list__layout
	> *.is-active {
	opacity: 1;
	transform: translateY( -4px );
	box-shadow: 0 25px 60px rgba( 0, 0, 0, 0.25 );
}

/*
 * Hero cover positioning – 30 px gap between content bottom & cover edge.
 *
 * Pattern A – ".static" covers (homepage / landing-page-starter):
 *   layout-parity.css sets `display:block` and positions .static-htag
 *   absolutely.  We zero the cover padding, give inner-container &
 *   .inner-static explicit heights so .static-htag's `bottom: 30px`
 *   resolves relative to the full 700 px cover.
 *
 * Pattern B – non-".static" covers (carousel-hero / carousel-hero-legacy):
 *   Core's `display:flex` + .is-position-bottom-left pushes content to the
 *   bottom; `padding-bottom: 30px` on the cover provides the gap.
 */

.rlcship-carousel--hero .wp-block-cover {
	position: relative;
	min-height: 700px !important;
	height: 700px;
	padding-bottom: 30px;
}

/* Pattern A: .static covers ≥ 992 px ----------------------------------- */

@media screen and ( min-width: 992px ) {
	.rlcship-carousel--hero .wp-block-cover.static {
		padding: 0;
	}

	.rlcship-carousel--hero .wp-block-cover.static .wp-block-cover__inner-container {
		position: absolute;
		inset: 0;
		z-index: 1;
	}

	.rlcship-carousel--hero .wp-block-cover.static .inner-static {
		position: absolute;
		inset: 0;
		height: auto;
		margin: 0;
	}

	.rlcship-carousel--hero .static-htag {
		top: auto;
		bottom: 30px;
	}
}

/* Editor: block-editor wrapper chain needs the same constraints */

.rlcship-carousel--hero
	.wp-block-cover__inner-container
	> .block-editor-inner-blocks,
.rlcship-carousel--hero
	.wp-block-cover__inner-container
	> .block-editor-inner-blocks
	> .block-editor-block-list__layout {
	gap: 0;
}

.rlcship-carousel--hero
	.wp-block-cover__inner-container
	> .block-editor-inner-blocks
	> .block-editor-block-list__layout
	> .block-editor-block-list__block {
	margin: 0;
	width: 100%;
}

.rlcship-carousel--hero .wp-block-heading.has-text-align-center {
	font-size: 70px;
	font-style: italic;
	font-weight: 400;
	background: rgba( 0, 0, 0, 0.65 );
	color: var( --wp--preset--color--base, #fff );
	display: inline-block;
	margin: 0;
	padding: 5px 20px 5px 15px;
	line-height: 95px;
}

@media screen and ( max-width: 1600px ) {
	.rlcship-carousel--hero .wp-block-heading.has-text-align-center {
		font-size: 60px;
		line-height: 81px;
	}
}

@media screen and ( max-width: 1300px ) {
	.rlcship-carousel--hero .wp-block-heading.has-text-align-center {
		font-size: 40px;
		line-height: 59px;
	}
}

.rlcship-carousel--hero .rlcship-hero-slide__line2 {
	font-style: normal;
	display: block;
}

.rlcship-carousel--hero .rlcship-carousel__dots {
	bottom: 25px;
	left: 60%;
	right: auto;
	transform: translate( -40%, 0 );
	justify-content: flex-start;
	max-width: 1350px;
	padding: 0;
}

@media screen and ( max-width: 1250px ) {
	.rlcship-carousel--hero .rlcship-carousel__dots {
		left: 25px;
		transform: none;
	}
}

.rlcship-carousel--hero .rlcship-carousel__dot {
	width: 15px;
	height: 15px;
	border-radius: 999px;
	border: 0;
	background: var( --wp--preset--color--base, #fff );
	cursor: pointer;
	padding: 0;
	margin: 0 5px;
}

.rlcship-carousel--hero .rlcship-carousel__dot.is-active {
	background: var( --wp--preset--color--secondary, #3dae2b );
}

@media screen and ( max-width: 992px ) {
	.rlcship-carousel--hero .wp-block-cover {
		min-height: 300px !important;
		height: 300px;
		border-bottom: 10px solid var( --wp--preset--color--base, #fff );
	}

	.rlcship-carousel--hero .rlcship-carousel__track {
		background: var( --wp--preset--color--muted, #686868 );
	}

	.rlcship-carousel--generic .rlcship-carousel__track,
	.rlcship-carousel--awards .rlcship-carousel__track {
		gap: clamp( 20px, 2vw, 40px );
	}

	.rlcship-carousel--hero .wp-block-cover {
		padding-bottom: 0;
	}

	.rlcship-carousel--hero .wp-block-cover__inner-container {
		padding: 25px;
	}

	.rlcship-carousel--hero .wp-block-heading.has-text-align-center {
		background: transparent;
		display: block;
		text-align: left;
		line-height: 1;
		padding: 0;
	}

	.rlcship-carousel--hero .rlcship-hero-slide__line2 {
		padding-top: 10px;
	}

	.rlcship-carousel--hero .rlcship-carousel__dots {
		left: 50%;
		top: 52%;
		bottom: auto;
		height: 30px;
		transform: translate( -50%, 0 );
		justify-content: center;
		margin: 0;
		max-width: none;
	}

	.rlcship-carousel--hero .rlcship-carousel__dot {
		margin: 0 10px;
	}
}

@media screen and ( max-width: 768px ) {
	.rlcship-carousel--hero .wp-block-heading.has-text-align-center {
		font-size: 32px;
	}
}

/* Awards variant (parity with legacy awards slider) */

.rlcship-carousel--awards {
	border-radius: 0;
	overflow: hidden;
	background: transparent;
	--rlcship-awards-center-padding: 0px;
	min-height: 78px;
}

.slider.awards-slider.awards-block-slider {
	width: 100%;
}

@media only screen and ( max-width: 1350px ) {
	.slider.awards-slider.awards-block-slider {
		width: 1200px;
	}
}

@media screen and ( max-width: 1200px ) {
	.slider.awards-slider.awards-block-slider {
		width: 1025px;
	}
}

@media screen and ( max-width: 1024px ) {
	.slider.awards-slider.awards-block-slider {
		width: 991px;
	}
}

@media screen and ( max-width: 992px ) {
	.slider.awards-slider.awards-block-slider {
		width: 767px;
	}
}

@media screen and ( max-width: 735px ) {
	.slider.awards-slider.awards-block-slider {
		width: 100%;
	}
}

.rlcship-carousel--awards .rlcship-carousel__track {
	gap: 0;
	padding: 0 var( --rlcship-awards-center-padding, 0px );
	scroll-padding-left: var( --rlcship-awards-center-padding, 0px );
	scroll-padding-right: var( --rlcship-awards-center-padding, 0px );
	scroll-snap-type: x mandatory;
	align-items: center;
	min-height: 78px;
}

.rlcship-carousel--awards .rlcship-carousel__track > *,
.rlcship-carousel--awards
	.rlcship-carousel__track
	> .block-editor-inner-blocks
	> .block-editor-block-list__layout
	> * {
	flex: 0 0 270px;
	width: 270px;
	max-width: 270px;
	display: flex;
	justify-content: center;
	opacity: 1;
	transform: none;
	box-shadow: none;
	scroll-snap-align: start;
}

.rlcship-carousel--awards.is-center-mode .rlcship-carousel__track > *,
.rlcship-carousel--awards.is-center-mode
	.rlcship-carousel__track
	> .block-editor-inner-blocks
	> .block-editor-block-list__layout
	> * {
	scroll-snap-align: center;
}

.rlcship-carousel--awards.awards-slider .slider__slide .slider__content {
	color: var( --wp--preset--color--primary, #006f5f );
	background-image: var( --rlcship-awards-carousel-bg-image, url( ../../images/ship-rlc-award-bg.034d3b68.png ) );
	background-color: var( --rlcship-awards-carousel-bg-color, var( --wp--preset--color--base, #fff ) );
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	width: min( 260px, 100% ) !important;
	aspect-ratio: 260 / 78;
	height: auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 8px 16px 6px;
	margin: 0 5px;
}

@media screen and ( max-width: 730px ) {
	.awards-slider {
		background-color: var( --wp--preset--color--base, #fff );
		display: flex !important;
	}
}

.rlcship-carousel--awards.awards-slider .slider__slide .slider__content p {
	margin: 2px 0;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.15;
	padding: 0;
}

.rlcship-carousel--awards.awards-slider .slider__slide .slider__content span,
.rlcship-carousel--awards.awards-slider .slider__slide .slider__content p span {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.15;
}

.rlcship-carousel--awards.awards-slider
	.slider__slide
	.slider__content
	span.block {
	display: block;
	width: 100%;
}

@media screen and ( max-width: 735px ) {
	.rlcship-carousel--awards {
		background-color: var( --wp--preset--color--base, #fff );
	}
	.rlcship-carousel--awards .rlcship-carousel__track {
		padding: 0;
		scroll-padding-left: 0;
		scroll-padding-right: 0;
	}
	.rlcship-carousel--awards .rlcship-carousel__track > * {
		flex: 0 0 100%;
		width: 100%;
		max-width: 100%;
		scroll-snap-align: start;
	}
	.rlcship-carousel--awards
		.rlcship-carousel__track
		> .block-editor-inner-blocks
		> .block-editor-block-list__layout
		> * {
		flex: 0 0 100%;
		width: 100%;
		max-width: 100%;
		scroll-snap-align: start;
	}
	.rlcship-carousel--awards.awards-slider .slider__slide .slider__content {
		margin: 0 auto;
		justify-content: center;
	}
}

@media only screen and ( max-width: 1350px ) {
	.rlcship-carousel--awards.awards-block-slider::after {
		content: "";
		position: absolute;
		z-index: 1;
		top: 0;
		right: 0;
		bottom: 0;
		pointer-events: none;
		background-image: linear-gradient(
			to right,
			color-mix(
				in srgb,
				var( --wp--preset--color--base, #fff ) 1%,
				transparent
			),
			var( --wp--preset--color--base, #fff ) 100%
		);
		width: 5%;
		height: 100%;
	}

	.rlcship-carousel--awards.awards-block-slider::before {
		content: "";
		position: absolute;
		z-index: 1;
		top: 0;
		left: 0;
		bottom: 0;
		pointer-events: none;
		background-image: linear-gradient(
			to left,
			color-mix(
				in srgb,
				var( --wp--preset--color--base, #fff ) 1%,
				transparent
			),
			var( --wp--preset--color--base, #fff ) 100%
		);
		width: 5.5%;
		height: 100%;
	}
}

@media only screen and ( max-width: 1350px ) and ( max-width: 1200px ) {
	.rlcship-carousel--awards.awards-block-slider::after,
	.rlcship-carousel--awards.awards-block-slider::before {
		width: 10.8%;
	}
}

@media only screen and ( max-width: 1350px ) and ( max-width: 1024px ) {
	.rlcship-carousel--awards.awards-block-slider::after {
		width: 9.7%;
	}
	.rlcship-carousel--awards.awards-block-slider::before {
		width: 10%;
	}
}

@media only screen and ( max-width: 1350px ) and ( max-width: 992px ) {
	.rlcship-carousel--awards.awards-block-slider::after,
	.rlcship-carousel--awards.awards-block-slider::before {
		width: 15%;
	}
}

@media only screen and ( max-width: 1350px ) and ( max-width: 735px ) {
	.rlcship-carousel--awards.awards-block-slider::after,
	.rlcship-carousel--awards.awards-block-slider::before {
		width: 0;
	}
}

.rlcship-carousel--awards .rlcship-carousel__nav {
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 50%;
	display: none;
	width: 14px;
	height: 24px;
	margin-top: -10px;
	padding: 0;
	cursor: pointer;
	color: rgba( 0, 0, 0, 0 );
	border: none;
	outline: none;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transition: 0.4s;
	transform: none;
	border-radius: 0;
	z-index: 5;
}

@media ( max-width: 735px ) {
	.rlcship-carousel--awards .rlcship-carousel__nav {
		display: block;
	}
}

.rlcship-carousel--awards .rlcship-carousel__prev {
	left: 20px;
	background-image: url( ../../images/lft-arr.9725cf38.png );
}

.rlcship-carousel--awards .rlcship-carousel__next {
	right: 10px;
	background-image: url( ../../images/rt-arr.c3181ee5.png );
}

@media screen and ( max-width: 730px ) {
	.rlcship-carousel--awards .rlcship-carousel__nav {
		width: 25px;
		height: 50px;
		margin-top: -25px;
	}
}

@media screen and ( max-width: 640px ) {
	.rlcship-carousel--hero .wp-block-cover {
		min-height: 250px !important;
		height: 250px;
	}

	.rlcship-carousel--hero .rlcship-carousel__dots {
		top: 50%;
	}
}

@media screen and ( max-width: 500px ) {
	.rlcship-carousel--hero .wp-block-heading.has-text-align-center {
		font-size: 6.8vw;
	}
}

@media screen and ( max-width: 480px ) {
	.rlcship-carousel--hero .wp-block-cover {
		min-height: 200px !important;
		height: 200px;
	}

	.rlcship-carousel--hero .rlcship-carousel__dots {
		top: 40%;
	}
}

/* Testimonials variant (parity with legacy Slick slider styling) */

.rlcship-carousel--testimonials {
	background: transparent;
	overflow: hidden;
}

.rlcship-carousel--testimonials .rlcship-carousel__track {
	--rlcship-carousel-visible: 3;
}

.rlcship-carousel--testimonials .rlcship-carousel__track > * {
	scroll-snap-align: center;
}

.rlcship-carousel--testimonials
	.rlcship-carousel__track
	> .block-editor-inner-blocks
	> .block-editor-block-list__layout
	> * {
	scroll-snap-align: center;
}

.rlcship-carousel--testimonials
	.rlcship-carousel__track
	> :not( .block-editor-inner-blocks ),
.rlcship-carousel--testimonials
	.rlcship-carousel__track
	> .block-editor-inner-blocks
	> .block-editor-block-list__layout
	> * {
	min-height: 275px;
	height: -moz-fit-content;
	height: fit-content;
	padding: 25px 5px;
	max-width: none;
	min-width: 0;
	margin: 0 10px;
	box-sizing: border-box;
	background: var( --wp--preset--color--surface, #ededed );
	color: color-mix(
		in srgb,
		var( --wp--preset--color--muted, #686868 ) 55%,
		var( --wp--preset--color--base, #fff ) 45%
	);
	text-align: center;
	opacity: 0.8;
	transform: scale( 0.8 );
	transition: 0.5s ease all;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.rlcship-carousel--testimonials
	.rlcship-carousel__track
	> :not( .block-editor-inner-blocks ).is-active,
.rlcship-carousel--testimonials
	.rlcship-carousel__track
	> .block-editor-inner-blocks
	> .block-editor-block-list__layout
	> *.is-active {
	background: radial-gradient(
		circle,
		color-mix(
				in srgb,
				var( --wp--preset--color--primary, #006548 ) 71%,
				transparent
			)
			0%,
		var( --wp--preset--color--primary, #006548 ) 50%
	);
	color: var( --wp--preset--color--base, #fff );
	outline: 1px solid rgba( 255, 255, 255, 0.5 );
	outline-offset: -10px;
	opacity: 1;
	transform: scale( 1 );
	margin-left: -20px;
	margin-right: -20px;
	z-index: 1;
}

.rlcship-carousel--testimonials .rlcship-carousel__nav {
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 50%;
	display: block;
	width: 14px;
	height: 24px;
	margin-top: -10px;
	padding: 0;
	cursor: pointer;
	color: rgba( 0, 0, 0, 0 );
	border: none;
	outline: none;
	background-color: transparent;
	background-repeat: no-repeat;
	transition: 0.4s;
	transform: none;
	border-radius: 0;
	z-index: 5;
}

.rlcship-carousel--testimonials .rlcship-carousel__prev {
	left: 10px;
	background-image: url( ../../images/left-arrow.1c5dc6a0.png );
}

.rlcship-carousel--testimonials .rlcship-carousel__next {
	right: 10px;
	background-image: url( ../../images/right-arrow.567ad2d9.png );
}

.rlcship-carousel--testimonials .rlcship-carousel__nav:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 4px;
}

.rlcship-carousel--testimonials
	.rlcship-carousel__track
	> :not( .block-editor-inner-blocks ).is-active
	p.has-primary-color,
.rlcship-carousel--testimonials
	.rlcship-carousel__track
	> .block-editor-inner-blocks
	> .block-editor-block-list__layout
	> *.is-active
	p.has-primary-color {
	color: var( --wp--preset--color--base, #fff );
}

@media screen and ( max-width: 992px ) {
	.rlcship-carousel--testimonials {
		background: radial-gradient(
			circle,
			rgba( 0, 101, 72, 0.7119222689 ) 0%,
			var( --wp--preset--color--primary, #006548 ) 50%
		);
	}

	.rlcship-carousel--testimonials .rlcship-carousel__track {
		--rlcship-carousel-visible: 1;
		padding: 0 40px;
	}

	.rlcship-carousel--testimonials
		.rlcship-carousel__track
		> :not( .block-editor-inner-blocks ),
	.rlcship-carousel--testimonials
		.rlcship-carousel__track
		> .block-editor-inner-blocks
		> .block-editor-block-list__layout
		> * {
		max-width: none;
		margin: 15px 0;
		background: transparent;
		color: var( --wp--preset--color--base, #fff );
		border-top: 1px solid rgba( 255, 255, 255, 0.5 );
		border-bottom: 1px solid rgba( 255, 255, 255, 0.5 );
		opacity: 1;
		transform: scale( 1 );
		outline: none;
		padding: 0 25px;
		height: 300px;
	}

	.rlcship-carousel--testimonials
		.rlcship-carousel__track
		> :not( .block-editor-inner-blocks ).is-active,
	.rlcship-carousel--testimonials
		.rlcship-carousel__track
		> .block-editor-inner-blocks
		> .block-editor-block-list__layout
		> *.is-active {
		background: transparent;
		outline: none;
		margin-left: 0;
		margin-right: 0;
	}

	.rlcship-carousel--testimonials
		.rlcship-carousel__track
		> :not( .block-editor-inner-blocks )
		p.has-primary-color,
	.rlcship-carousel--testimonials
		.rlcship-carousel__track
		> .block-editor-inner-blocks
		> .block-editor-block-list__layout
		> *
		p.has-primary-color {
		color: var( --wp--preset--color--base, #fff );
	}
}

@media screen and ( max-width: 550px ) {
	.rlcship-carousel--testimonials .rlcship-carousel__track {
		padding: 0;
	}
}

@media ( max-width: 600px ) {
	.rlcship-carousel--testimonials .rlcship-carousel__nav {
		display: block;
	}
}

/*
	Editor parity (non-hero variants)
	The editor canvas is often narrower than the frontend viewport, which can
	trigger mobile breakpoint styling. These overrides force the desktop look in
	the editor iframe.
*/

body.block-editor-iframe__body
	.rlcship-carousel--generic
	.rlcship-carousel__track,
.editor-styles-wrapper .rlcship-carousel--generic .rlcship-carousel__track {
	gap: 0;
}

body.block-editor-iframe__body
	.rlcship-carousel--generic
	.rlcship-carousel__nav,
.editor-styles-wrapper .rlcship-carousel--generic .rlcship-carousel__nav {
	display: block;
}

body.block-editor-iframe__body .rlcship-carousel--testimonials,
.editor-styles-wrapper .rlcship-carousel--testimonials {
	background: transparent;
}

body.block-editor-iframe__body
	.rlcship-carousel--testimonials
	.rlcship-carousel__track,
.editor-styles-wrapper
	.rlcship-carousel--testimonials
	.rlcship-carousel__track {
	padding: 0;
}

body.block-editor-iframe__body
	.rlcship-carousel--testimonials
	.rlcship-carousel__track
	> .block-editor-inner-blocks
	> .block-editor-block-list__layout
	> *,
.editor-styles-wrapper
	.rlcship-carousel--testimonials
	.rlcship-carousel__track
	> .block-editor-inner-blocks
	> .block-editor-block-list__layout
	> * {
	margin: 0 10px;
	padding: 25px 5px;
	background: var( --wp--preset--color--surface, #ededed );
	color: color-mix(
		in srgb,
		var( --wp--preset--color--muted, #686868 ) 55%,
		var( --wp--preset--color--base, #fff ) 45%
	);
	border-top: none;
	border-bottom: none;
	opacity: 0.8;
	transform: scale( 0.8 );
	height: -moz-fit-content;
	height: fit-content;
}

body.block-editor-iframe__body
	.rlcship-carousel--testimonials
	.rlcship-carousel__track
	> .block-editor-inner-blocks
	> .block-editor-block-list__layout
	> *.is-active,
.editor-styles-wrapper
	.rlcship-carousel--testimonials
	.rlcship-carousel__track
	> .block-editor-inner-blocks
	> .block-editor-block-list__layout
	> *.is-active {
	background: radial-gradient(
		circle,
		color-mix(
				in srgb,
				var( --wp--preset--color--primary, #006548 ) 71%,
				transparent
			)
			0%,
		var( --wp--preset--color--primary, #006548 ) 50%
	);
	color: var( --wp--preset--color--base, #fff );
	outline: 1px solid rgba( 255, 255, 255, 0.5 );
	outline-offset: -10px;
	opacity: 1;
	transform: scale( 1 );
	margin-left: -20px;
	margin-right: -20px;
}

/* Hero editor parity — prevent mobile breakpoints in the narrower editor iframe */

body.block-editor-iframe__body
	.rlcship-carousel--hero
	.wp-block-cover,
.editor-styles-wrapper
	.rlcship-carousel--hero
	.wp-block-cover {
	min-height: 700px !important;
	height: 700px;
	padding-bottom: 30px;
	border-bottom: none;
}

body.block-editor-iframe__body
	.rlcship-carousel--hero
	.rlcship-carousel__track,
.editor-styles-wrapper
	.rlcship-carousel--hero
	.rlcship-carousel__track {
	background: transparent;
}

body.block-editor-iframe__body
	.rlcship-carousel--hero
	.wp-block-heading.has-text-align-center,
.editor-styles-wrapper
	.rlcship-carousel--hero
	.wp-block-heading.has-text-align-center {
	font-size: 70px;
	font-style: italic;
	font-weight: 400;
	background: rgba( 0, 0, 0, 0.65 );
	color: var( --wp--preset--color--base, #fff );
	display: inline-block;
	margin: 0;
	padding: 5px 20px 5px 15px;
	line-height: 95px;
	text-align: left;
}

body.block-editor-iframe__body
	.rlcship-carousel--hero
	.rlcship-carousel__dots,
.editor-styles-wrapper
	.rlcship-carousel--hero
	.rlcship-carousel__dots {
	bottom: 25px;
	left: 60%;
	right: auto;
	top: auto;
	height: auto;
	transform: translate( -40%, 0 );
	justify-content: flex-start;
	max-width: 1350px;
	padding: 0;
}

body.block-editor-iframe__body
	.rlcship-carousel--hero
	.wp-block-cover__inner-container,
.editor-styles-wrapper
	.rlcship-carousel--hero
	.wp-block-cover__inner-container {
	padding: 0;
}

body.block-editor-iframe__body
	.rlcship-carousel--hero
	.rlcship-carousel__nav,
.editor-styles-wrapper
	.rlcship-carousel--hero
	.rlcship-carousel__nav {
	display: block;
}

body.block-editor-iframe__body .rlcship-carousel--awards,
.editor-styles-wrapper .rlcship-carousel--awards {
	background: transparent;
}

body.block-editor-iframe__body
	.rlcship-carousel--awards
	.rlcship-carousel__track,
.editor-styles-wrapper .rlcship-carousel--awards .rlcship-carousel__track {
	padding: 0 30px;
}

body.block-editor-iframe__body
	.rlcship-carousel--awards
	.rlcship-carousel__track
	> .block-editor-inner-blocks
	> .block-editor-block-list__layout
	> *,
.editor-styles-wrapper
	.rlcship-carousel--awards
	.rlcship-carousel__track
	> .block-editor-inner-blocks
	> .block-editor-block-list__layout
	> * {
	flex: 0 0 270px;
	width: 270px;
	max-width: 270px;
	scroll-snap-align: start;
}


/*# sourceMappingURL=index.css.map*/