.dcc-carousel {
	--dcc-gold: #8f6522;
	--dcc-taupe: #bfae9c;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto 22px;
}

.dcc-viewport {
	width: 100%;
	overflow: hidden;
}

.dcc-track {
	display: flex;
	align-items: flex-start;
	width: 100%;
	transform: translate3d(0, 0, 0);
	transition: transform 500ms ease;
	will-change: transform;
}

.dcc-slide {
	flex: 0 0 100%;
	width: 100%;
	min-width: 0;
}

.dcc-slide > .wp-block-icb-image-compare {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
}

.dcc-navigation {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 18px;
}

.dcc-arrow {
	-webkit-appearance: none;
	appearance: none;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	min-width: 34px;
	min-height: 34px;
	padding: 0;
	color: var(--dcc-gold);
	background: #fff;
	border: 1px solid var(--dcc-gold);
	border-radius: 50%;
	box-shadow: none;
	cursor: pointer;
	font: inherit;
	line-height: 1;
}

.dcc-arrow:hover,
.dcc-arrow:active {
	color: var(--dcc-gold);
	background: #fff;
	border-color: var(--dcc-gold);
}

.dcc-arrow:focus-visible,
.dcc-dot:focus-visible {
	outline: 2px solid var(--dcc-gold);
	outline-offset: 3px;
}

.dcc-arrow svg {
	display: block;
	width: 14px;
	height: 14px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.dcc-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
}

.dcc-dot {
	-webkit-appearance: none;
	appearance: none;
	width: 8px;
	height: 8px;
	min-width: 8px;
	min-height: 8px;
	padding: 0;
	background: var(--dcc-taupe);
	border: 0;
	border-radius: 50%;
	box-shadow: none;
	cursor: pointer;
}

.dcc-dot:hover,
.dcc-dot:active,
.dcc-dot.is-active {
	background: var(--dcc-gold);
}

@media (max-width: 767px) {
	.dcc-carousel {
		margin-bottom: 18px;
	}

	.dcc-navigation {
		gap: 10px;
		margin-top: 14px;
	}

	.dcc-arrow {
		width: 30px;
		height: 30px;
		min-width: 30px;
		min-height: 30px;
	}

	.dcc-arrow svg {
		width: 12px;
		height: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.dcc-track {
		transition: none;
	}
}
