.drhc-carousel,
.drhc-carousel * {
	box-sizing: border-box;
}

.drhc-carousel {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	height: 720px;
	background: #17120d;
	color: #fff;
}

.drhc-carousel:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: -2px;
}

.drhc-slides,
.drhc-slide {
	position: absolute;
	inset: 0;
}

.drhc-slide {
	isolation: isolate;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition-property: opacity, visibility;
	transition-duration: 700ms;
	transition-timing-function: ease-out;
}

.drhc-slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 1;
}

.drhc-slide__image,
.drhc-slide__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.drhc-slide__image {
	z-index: -2;
	object-fit: cover;
	object-position: center center;
	opacity: .4;
}

.drhc-slide__overlay {
	z-index: -1;
	background: linear-gradient(to bottom, rgba(23,18,13,.6), rgba(23,18,13,.82) 52%, #17120d);
}

.drhc-slide__inner {
	display: flex;
	flex-direction: column;
	width: min(100%, 1280px);
	height: 100%;
	margin-inline: auto;
	padding: 64px 32px 96px;
	align-items: stretch;
	justify-content: center;
}

.drhc-slide__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	align-self: center;
	width: 100%;
	max-width: 768px;
	text-align: center;
}

.drhc-eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin: 0 0 32px;
	color: #d5b46c;
	font-size: 11px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: .42em;
	text-transform: uppercase;
}

.drhc-eyebrow__line {
	display: block;
	width: 24px;
	height: 1px;
	background: rgba(213,180,108,.6);
}

.drhc-title {
	margin: 0;
	color: #fff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.25rem, 6vw, 4.5rem);
	font-weight: 400;
	line-height: 1.02;
	text-wrap: balance;
}

.drhc-highlight {
	display: block;
	margin-top: 8px;
	color: #d5b46c;
	font-style: italic;
}

.drhc-description {
	max-width: 576px;
	margin-top: 24px;
	color: rgba(255,255,255,.8);
	font-size: 16px;
	line-height: 1.65;
}

.drhc-buttons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: var(--drhc-content-align, center);
	gap: 12px;
	margin-top: 40px;
}

.drhc-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 15px 32px;
	border: 0 solid transparent;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: .18em;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.drhc-button--primary {
	color: #17120d;
	background: #d5b46c;
	box-shadow: 0 14px 38px rgba(0,0,0,.22);
}

.drhc-button--primary:hover,
.drhc-button--primary:focus-visible {
	transform: translateY(-2px);
	filter: brightness(1.05);
}

.drhc-button--secondary {
	color: #fff;
	border-width: 1px;
	border-color: rgba(255,255,255,.25);
	background: rgba(255,255,255,.05);
}

.drhc-button--secondary:hover,
.drhc-button--secondary:focus-visible {
	transform: translateY(-2px);
	background: rgba(255,255,255,.1);
}

.drhc-button:focus-visible,
.drhc-arrow:focus-visible,
.drhc-dot:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

.drhc-navigation {
	position: absolute;
	z-index: 5;
	left: 50%;
	bottom: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	transform: translateX(-50%);
}

.drhc-arrow,
.drhc-dot {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
}

.drhc-arrow {
	display: grid;
	width: 40px;
	height: 40px;
	place-items: center;
	color: #fff;
	border-style: solid;
	border-width: 1px;
	border-color: rgba(255,255,255,.3);
	border-radius: 50%;
	background: rgba(23,18,13,.4);
	backdrop-filter: blur(8px);
	transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s ease;
}

.drhc-arrow:hover,
.drhc-arrow:focus-visible {
	background: rgba(23,18,13,.7);
}

.drhc-arrow svg {
	width: 20px;
	height: 20px;
}

.drhc-dots {
	display: flex;
	align-items: center;
	gap: 8px;
}

.drhc-dot {
	width: 12px;
	height: 6px;
	border-radius: 999px;
	background: rgba(255,255,255,.4);
	transition: width .25s ease, background-color .25s ease, transform .25s ease;
}

.drhc-dot:hover,
.drhc-dot:focus-visible {
	background: rgba(255,255,255,.7);
}

.drhc-dot[aria-current="true"] {
	width: 32px;
	background: #d5b46c;
}

@media (max-width: 767px) {
	.drhc-carousel {
		height: 560px;
	}

	.drhc-slide__inner {
		padding: 48px 20px 84px;
	}

	.drhc-buttons {
		width: 100%;
		flex-direction: column;
	}

	.drhc-button {
		width: 100%;
	}

	.drhc-navigation {
		bottom: 24px;
		gap: 16px;
	}

	.drhc-eyebrow {
		font-size: 10px;
		letter-spacing: .28em;
	}
}

@media (prefers-reduced-motion: reduce) {
	.drhc-slide,
	.drhc-button,
	.drhc-arrow,
	.drhc-dot {
		transition-duration: 1ms !important;
	}
}
