.offset-cards-block {
	overflow-x: visible;
}

.offset-cards-swiper {
	overflow: visible;
}
.offset-card-content *{
	color: #fff!important;
}

/* Slider bleed on the right; 100% = container width so left edge stays aligned */
.offset-cards-swiper--bleed {
	width: calc(100% + (100vw - 100%) / 2);
	margin-right: calc((100vw - 100%) / -2);
	margin-left: 0;
	clip-path: inset(0 -100vw 0 0);
	/* Keep last slide left of gradient / viewport edge */
	padding-right: 12rem;
}

@media (min-width: 768px) {
	.offset-cards-swiper--bleed {
		padding-right: 18rem;
	}
}

@media (max-width: 767px) {
	.offset-cards-swiper--bleed {
		width: 100%;
		margin-right: 0;
		clip-path: none;
		padding-right: 2rem;
	}
}

.offset-cards-swiper .swiper-wrapper {
	align-items: stretch;
}

.offset-cards-swiper .swiper-slide {
	height: auto;
	box-sizing: border-box;
}

.offset-cards-swiper .offset-card {
	height: 100%;
}

/* Wrapper for gradient + arrows positioning */
.offset-cards-inner {
	position: relative;
}

/* Black gradient on the right (bleed area) */
.offset-cards-gradient {
	position: absolute;
	top: 0;
	right: calc((100vw - 100%) / -2);
	bottom: 0;
	width: 12rem;
	background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.85));
	pointer-events: none;
	z-index: 2;
}

@media (min-width: 768px) {
	.offset-cards-gradient {
		width: 16rem;
	}
}

@media (max-width: 767px) {
	.offset-cards-gradient {
		right: 0;
	}
}

/* Slide arrows */
.offset-cards-block .offset-cards-button-prev,
.offset-cards-block .offset-cards-button-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 3rem;
	height: 3rem;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: border-color 0.2s, background-color 0.2s, color 0.2s;
	color: #fff;
}

.offset-cards-block .offset-cards-button-prev:hover,
.offset-cards-block .offset-cards-button-next:hover {
	border-color: #00B789;
	background-color: #00B789;
	color: #fff;
}

/* Ensure navigation buttons are always enabled in loop mode */
.offset-cards-swiper[data-loop="true"] .offset-cards-button-prev.swiper-button-disabled,
.offset-cards-swiper[data-loop="true"] .offset-cards-button-next.swiper-button-disabled {
	opacity: 1 !important;
	pointer-events: auto !important;
	cursor: pointer !important;
}

.offset-cards-block .offset-cards-button-prev {
	left: 0;
}

.offset-cards-block .offset-cards-button-next {
	right: 0;
}
.offset-card-quote-blockquote *{
	color:#fff!important;
}


	.offset-cards-block .offset-cards-button-next {
		right: calc((100vw - 110%) / -2);
		padding: 10px;
		background-color: #00B789;
	}

.offset-cards-block .offset-cards-button-prev{
	display: none;
}
.offset-cards-block .offset-cards-button-prev::after,
.offset-cards-block .offset-cards-button-next::after {
	display: none;
}
@media only screen and (max-width: 768px) {
.offset-cards-container{
	padding-right: 0!important;
}
}
@media only screen and (max-width: 640px) {
	.offset-cards-container{
		padding-right: 24px!important;
	}
	.offset-cards-container .swiper-wrapper{
		display: flex;
		flex-direction: column;
		row-gap: 24px;
	}
	.offset-cards-gradient, .offset-cards-button-prev, .offset-cards-button-next{
		display: none!important;
	}
}