.aryarama-home-stack {
	--aryarama-section-gap: 12px;
	--aryarama-menu-slider-gap: 24px;
	--aryarama-home-header-offset: 176px;
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 100%;
	min-height: calc(100svh - var(--aryarama-home-header-offset));
	margin: 0 auto;
	padding: 0 var(--aryarama-section-gap);
	box-sizing: border-box;
}

body.admin-bar .aryarama-home-stack {
	--aryarama-home-header-offset: 208px;
}

@media screen and (max-width: 782px) {
	body.admin-bar .aryarama-home-stack {
		--aryarama-home-header-offset: 194px;
	}
}

.aryarama-hero-slider {
	position: relative;
	width: 100%;
	margin: var(--aryarama-menu-slider-gap) 0 0;
	padding: 0;
	box-sizing: border-box;
	background: transparent;
}

.aryarama-hero-slider__viewport {
	position: relative;
	width: 100%;
	height: 538px;
	border-radius: 30px;
	overflow: hidden;
	background: #f5f5f5;
	box-shadow: 0 8px 24px rgba(3, 66, 126, 0.08);
}

.aryarama-hero-slider__track {
	position: relative;
	width: 100%;
	height: 100%;
}

.aryarama-hero-slider__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.6s ease, visibility 0.6s ease;
}

.aryarama-hero-slider__slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}

.aryarama-hero-slider__media,
.aryarama-hero-slider__image {
	display: block;
	width: 100%;
	height: 100%;
}

.aryarama-hero-slider__image {
	max-height: 538px;
	object-fit: cover;
	object-position: center center;
	max-width: none;
}

.aryarama-hero-slider__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	padding: 0 6%;
	pointer-events: none;
}

.aryarama-hero-slider__content {
	max-width: min(820px, 58%);
	pointer-events: auto;
}

.aryarama-hero-slider__title {
	margin: 0 0 12px;
	color: #111111;
	font-size: clamp(22px, 2.2vw, 36px);
	font-weight: 800;
	line-height: 1.15;
	text-transform: uppercase;
	white-space: nowrap;
}

.aryarama-hero-slider__title-link {
	color: inherit;
	text-decoration: none;
}

.aryarama-hero-slider__title-link:hover,
.aryarama-hero-slider__title-link:focus {
	color: inherit;
	text-decoration: none;
}

.aryarama-hero-slider__subtitle {
	margin: 0 0 24px;
	color: #4a5568;
	font-size: clamp(16px, 2vw, 24px);
	font-weight: 500;
	line-height: 1.4;
}

.aryarama-hero-slider__button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 24px;
	border-radius: 999px;
	background: #03427e;
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.aryarama-hero-slider__button:hover,
.aryarama-hero-slider__button:focus {
	background: #023665;
	color: #ffffff;
	transform: translateY(-1px);
}

.aryarama-hero-slider__button-arrow {
	font-size: 18px;
	line-height: 1;
}

.aryarama-hero-slider__dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 18px;
	z-index: 2;
	display: flex;
	justify-content: center;
	gap: 10px;
}

.aryarama-hero-slider__dot {
	width: 14px;
	height: 14px;
	padding: 0;
	border: 2px solid #03427e;
	border-radius: 50%;
	background: #ffffff;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.aryarama-hero-slider__dot.is-active {
	background: #03427e;
	transform: scale(1.05);
}

@media (max-width: 1400px) {
	.aryarama-hero-slider__viewport {
		height: 467px;
	}

	.aryarama-hero-slider__image {
		max-height: 467px;
	}
}

.aryarama-hero-slider__mobile-header {
	display: none;
}

@media (max-width: 767px) {
	.aryarama-home-stack {
		--aryarama-section-gap: 10px;
		--aryarama-menu-slider-gap: 16px;
	}

	.aryarama-hero-slider {
		margin-top: var(--aryarama-menu-slider-gap);
	}

	.aryarama-hero-slider__viewport {
		height: auto;
		aspect-ratio: 360 / 280;
		min-height: 260px;
		max-height: 340px;
		border-radius: 20px;
		background: #f3f4f6;
	}

	.aryarama-hero-slider__track {
		position: absolute;
		inset: 0;
	}

	.aryarama-hero-slider__slide {
		display: block;
	}

	.aryarama-hero-slider__media {
		position: absolute;
		inset: 0;
		display: block;
		width: 100%;
		height: 100%;
		margin: 0;
		border-radius: inherit;
		overflow: hidden;
	}

	.aryarama-hero-slider .aryarama-hero-slider__image {
		display: block;
		width: 100% !important;
		height: 100% !important;
		max-width: none !important;
		max-height: none !important;
		object-fit: cover;
		object-position: center center;
	}

	.aryarama-hero-slider__overlay {
		display: flex;
		align-items: flex-start;
		justify-content: center;
		padding: 14px 12px 0;
		z-index: 2;
	}

	.aryarama-hero-slider__content {
		width: 100%;
		max-width: 100%;
		display: flex;
		justify-content: center;
		pointer-events: auto;
	}

	.aryarama-hero-slider__title-link {
		display: inline-block;
		max-width: calc(100% - 16px);
		color: inherit;
		text-decoration: none;
		overflow: hidden;
	}

	.aryarama-hero-slider__title-link:hover .aryarama-hero-slider__title,
	.aryarama-hero-slider__title-link:focus .aryarama-hero-slider__title {
		background: #feda8e;
	}

	.aryarama-hero-slider__title {
		display: inline-block;
		width: auto;
		max-width: 100%;
		margin: 0;
		padding: 10px 18px;
		border-radius: 999px;
		background: #ffffff;
		color: #03427e;
		font-size: clamp(11px, 3.2vw, 15px);
		font-weight: 700;
		line-height: 1.25;
		text-transform: uppercase;
		text-align: center;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
		box-sizing: border-box;
	}

	.aryarama-hero-slider__subtitle,
	.aryarama-hero-slider__button {
		display: none !important;
	}

	.aryarama-hero-slider__dots {
		bottom: 12px;
		z-index: 3;
	}
}
