.tabbed-slider {
	background: var(--pearl, #f4eee5);
	padding: 30px 0 60px;
	color: var(--onyx, #202020);
}
.tabbed-slider__inner {
	border: 1px solid var(--onyx);
	border-radius: 6px;
	overflow: hidden;
}

/* Header (heading row with horizontal divider below) */
.tabbed-slider__header {
	padding: 24px 20px;
	border-bottom: 1px solid var(--onyx);
	text-align: center;
}
.tabbed-slider__heading {
	font-family: 'Canela', serif;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 32px;
	line-height: 1.1;
	margin: 0;
}

/* Body row */
.tabbed-slider__body {
	margin: 0;
}

/* Media column */
.tabbed-slider__media-col {
	padding: 20px;
}
.tabbed-slider__media {
	display: flex;
	flex-direction: column;
}

/* Image stack — fixed aspect ratio, children overlap and fade */
.tabbed-slider__images {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 6px;
}
.tabbed-slider__image {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}
.tabbed-slider__image.is-active {
	opacity: 1;
	pointer-events: auto;
}
.tabbed-slider__image img,
.tabbed-slider__image video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Dots */
.tabbed-slider__dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 18px;
}
.tabbed-slider__dot {
	appearance: none;
	border: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(32, 32, 32, 0.25);
	cursor: pointer;
	padding: 0;
	transition: width 0.25s ease, background 0.25s ease, border-radius 0.25s ease;
}
.tabbed-slider__dot.is-active {
	width: 22px;
	border-radius: 999px;
	background: var(--cognac);
}

/* Right column */
.tabbed-slider__right-col {
	padding: 0;
	display: flex;
	flex-direction: column;
}

/* Tab strip */
.tabbed-slider__tabs {
	display: flex;
	width: 100%;
}
.tabbed-slider__tab {
	flex: 1;
	appearance: none;
	border: 0;
	background: var(--cognac);
	color: var(--pearl, #f4eee5);
	padding: 14px 8px;
	font-family: 'FoundersGrotesk', sans-serif;
	font-size: 13px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.25s ease, color 0.25s ease;
}
.tabbed-slider__tab + .tabbed-slider__tab {
	border-left: 1px solid var(--pearl-dark, #d9cfbf);
}
.tabbed-slider__tab.is-active {
	background: var(--pearl, #f4eee5);
	color: var(--onyx, #202020);
}

/* Pane stack — grid stack so the container takes the tallest pane's height */
.tabbed-slider__panes {
	position: relative;
	display: grid;
	grid-template-areas: "stack";
	padding: 28px 24px;
	margin-top: auto;
	margin-bottom: auto;
}
.tabbed-slider__pane {
	grid-area: stack;
	opacity: 0;
	transition: opacity 0.35s ease;
	pointer-events: none;
}
.tabbed-slider__pane.is-active {
	opacity: 1;
	pointer-events: auto;
}
.tabbed-slider__pane-title {
	font-family: 'English1766';
	font-style: italic;
	font-weight: 300;
	font-size: 26px;
	line-height: 1.2;
	margin: 0 0 14px;
	text-transform: none;
}
.tabbed-slider__pane-body {
	font-family: 'FoundersGrotesk', sans-serif;
	font-size: 16px;
	line-height: 1.25;
	margin: 0 0 20px;
	color: var(--onyx, #202020);
}
.tabbed-slider__cta {
	display: block;
	width: 100%;
	background: var(--cognac);
	color: var(--pearl, #f4eee5);
	padding: 16px 55px;
	text-align: center;
	text-transform: uppercase;
	font-family: 'FoundersGrotesk', sans-serif;
	letter-spacing: 1px;
	text-decoration: none;
	font-size: 16px;
	border-radius: 0;
	clip-path: polygon(
		8px 0,
		calc(100% - 8px) 0,
		100% 8px,
		100% calc(100% - 8px),
		calc(100% - 8px) 100%,
		8px 100%,
		0 calc(100% - 8px),
		0 8px
	);
}
.tabbed-slider__cta:hover {
	color: var(--pearl, #f4eee5);
	text-decoration: none;
}

/* Mobile: tabs above the media, panes below — single video reordered via flex */
@media (max-width: 991.98px) {
	.tabbed-slider__right-col {
		display: contents;
	}
	.tabbed-slider__tabs,
	.tabbed-slider__panes {
		width: 100%;
	}
	.tabbed-slider__tabs      { order: 1; }
	.tabbed-slider__media-col { order: 2; }
	.tabbed-slider__panes     { order: 3; }
}

/* Desktop: media on the left (col-5), tabs+panes on the right (col-7) */
@media (min-width: 992px) {
	.tabbed-slider {
		padding: 60px 0 80px;
	}
	.tabbed-slider__header {
		padding: 26px 40px;
	}
	.tabbed-slider__heading {
		font-size: 48px;
	}
	.tabbed-slider__pane-body {
		font-size: 18px;
	}
	.tabbed-slider__media-col {
		padding: 20px 70px;
		border-right: 1px solid var(--onyx);
	}
	.tabbed-slider__tab {
		padding: 16px 8px;
	}
	.tabbed-slider__panes {
		padding: 40px 40px;
		text-align: center;
	}
	.tabbed-slider__pane-title {
		font-size: 42px;
		margin-bottom: 18px;
	}
	.tabbed-slider__pane-body {
		font-size: 18px;
		max-width: 520px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 28px;
	}
	.tabbed-slider__cta {
		display: inline-block;
		width: auto;
	}
	.tabbed-slider__dots {
		margin-top: 20px;
	}
}
