.rts-showcase {
	--rts-background: #d2c8c3;
	--rts-accent: #a9856e;
	--rts-dark: #4a3d35;
	--rts-text: #4e4540;
	display: grid;
	grid-template-columns: minmax(0, 49%) minmax(0, 51%);
	width: 100%;
	min-height: 500px;
	overflow: hidden;
	background: var(--rts-background);
	color: var(--rts-text);
	font-family: inherit;
}

.rts-content-panel {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(36px, 6vw, 86px);
}

.rts-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 30px;
}

.rts-tab {
	min-width: 50px;
	padding: 8px 18px;
	border: 0;
	border-radius: 999px;
	background: var(--rts-accent);
	color: #fff;
	font: inherit;
	font-size: 13px;
	line-height: 1;
	cursor: pointer;
	transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

button.rts-tab, .rts-copy h2 { font-family:"GTWalsheimPro";}
.rts-tab:hover,
.rts-tab:focus-visible {
	transform: translateY(-1px);
	outline: 2px solid rgba(74, 61, 53, 0.45);
	outline-offset: 2px;
	background:#fff1c9; color:#000;
}

.rts-arrows button:hover, .rts-arrows button:focus, .rts-dots button:hover { background: transparent; color:#000;}

.rts-tab.is-active {
	background: #fff1c9;
	color: var(--rts-dark);
}

.rts-copy[hidden],
.rts-slider[hidden] {
	display: none !important;
}

.rts-copy {
	animation: rts-fade-in 260ms ease both;
}

.rts-copy h2 {
	margin: 0 0 14px;
	color: var(--rts-text);
	font-size: clamp(27px, 3vw, 38px);
	line-height: 1.15;
}

.rts-description {
	max-width: 660px;
	font-size: 16px;
	line-height: 1.65;
}

.rts-description p {
	margin: 0 0 1em; font-family:"GTWalsheimPro";
}

.rts-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 195px;
	margin-top: 15px;
	padding: 11px 22px;
	border: 2px solid var(--rts-accent);
	border-radius: 999px;
	background: #fff;
	color: var(--rts-accent);
	text-decoration: none;
	transition: background-color 180ms ease, color 180ms ease; font-family:"GTWalsheimPro";
}

.rts-cta:hover,
.rts-cta:focus-visible {
	background: var(--rts-accent);
	color: #fff;
}

.rts-cta span {
	font-size: 24px;
	line-height: 0;
}

.rts-media-panel,
.rts-slider,
.rts-slides {
	position: relative;
	min-width: 0;
	min-height: 100%;
}

.rts-slider {
	height: 100%;
	background: var(--rts-dark);
	animation: rts-fade-in 260ms ease both;
}

.rts-slides {
	height: calc(100% - 58px);
	min-height: 442px;
	background: #65564d;
}

.rts-slide {
	position: absolute;
	inset: 0;
	margin: 0;
	opacity: 0;
	transition: opacity 350ms ease;
	pointer-events: none;
}

.rts-slide.is-active {
	opacity: 1;
	pointer-events: auto;
}

.rts-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rts-slider-controls {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 58px;
	padding: 0 24px;
	background: var(--rts-dark);
}

.rts-dots,
.rts-arrows {
	display: flex;
	align-items: center;
	gap: 12px;
}

.rts-dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 2px solid #d9d2cc;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
}

.rts-dot.is-active {
	background: #d9d2cc;
	box-shadow: inset 0 0 0 2px var(--rts-dark);
}

.rts-arrows button {
	padding: 3px 6px;
	border: 0;
	background: transparent;
	color: #d9d2cc;
	font: inherit;
	font-size: 34px;
	line-height: 1;
	cursor: pointer;
}

.rts-arrows button:hover,
.rts-arrows button:focus-visible {
	color: #fff;
}

@keyframes rts-fade-in {
	from {
		opacity: 0;
		transform: translateY(5px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 850px) {
	.rts-showcase {
		grid-template-columns: 1fr;
	}

	.rts-content-panel {
		padding: 42px 28px;
	}

	.rts-slides {
		height: auto;
		min-height: min(65vw, 520px);
	}

	.rts-media-panel {
		min-height: min(65vw, 520px);
	}
}

@media (max-width: 480px) {
	.rts-tabs {
		gap: 8px;
		margin-bottom: 24px;
	}

	.rts-tab {
		min-width: 44px;
		padding: 8px 13px;
	}

	.rts-content-panel {
		padding: 34px 20px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.rts-copy,
	.rts-slider {
		animation: none;
	}

	.rts-slide,
	.rts-tab,
	.rts-cta {
		transition: none;
	}
}
