/* ==================================================
   ZENTRALIA HERO
   Desktop: 350px
   Tablet/Mobile: 250px
   ================================================== */

.zch-hero,
.zch-hero * {
	box-sizing: border-box;
}

.zch-hero {
	width: min(1760px, calc(100% - 64px));
	margin: 24px auto;
}

.zch-hero__viewport {
	position: relative;
	width: 100%;
	height: 350px;
	max-height: 350px;
	overflow: hidden;
	border-radius: 16px;
	background: #f6efe5;
}

.zch-hero__slides {
	position: relative;
	width: 100%;
	height: 350px;
	min-height: 0;
	max-height: 350px;
	overflow: hidden;
}

.zch-hero__slide {
	position: absolute;
	inset: 0;
	display: grid;
	width: 100%;
	height: 350px;
	min-height: 0;
	max-height: 350px;
	grid-template-columns: minmax(0, 48%) minmax(0, 52%);
	overflow: hidden;
	background: var(--zch-slide-background, #f6efe5);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateX(18px);
	transition:
		opacity 300ms ease,
		transform 300ms ease,
		visibility 300ms ease;
}

.zch-hero__slide.is-active {
	position: relative;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(0);
}


/* ==================================================
   CONTENT
   ================================================== */

.zch-hero__content {
	position: relative;
	z-index: 3;
	display: flex;
	width: 100%;
	height: 350px;
	min-width: 0;
	max-width: 720px;
	padding: 35px 35px 48px 68px;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	overflow: hidden;
}

.zch-hero__eyebrow {
	margin: 0 0 12px;
	color: #38513e;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
}

.zch-hero__title {
	max-width: 100%;
	margin: 0;
	color: #38513e;
	font-size: clamp(36px, 3.5vw, 52px);
	font-weight: 800;
	line-height: 1.04;
	letter-spacing: -0.04em;
}

.zch-hero__description {
	display: -webkit-box;
	max-width: 570px;
	margin: 15px 0 0;
	overflow: hidden;
	color: #536255;
	font-size: 16px;
	line-height: 1.4;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.zch-hero__button {
	display: inline-flex;
	width: auto;
	height: 46px;
	min-width: 0;
	min-height: 46px;
	margin-top: 19px;
	padding: 0 20px;
	align-items: center;
	justify-content: center;
	gap: 14px;
	border-radius: 8px;
	background: #064927;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	box-shadow: 0 4px 12px rgb(0 0 0 / 8%);
	transition:
		background-color 180ms ease,
		transform 180ms ease;
}

.zch-hero__button:hover,
.zch-hero__button:focus {
	background: #04391f;
	color: #fff;
	transform: translateY(-1px);
}

.zch-hero__button svg {
	display: block;
	width: 19px;
	height: 19px;
	flex: 0 0 19px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}


/* ==================================================
   IMAGE
   E mbush komplet pjesën e djathtë
   ================================================== */

.zch-hero__media {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 350px;
	min-width: 0;
	min-height: 0;
	max-height: 350px;
	overflow: hidden;
}

.zch-hero__image,
.zch-hero__media img {
	display: block;
	width: 100% !important;
	max-width: none !important;
	height: 100% !important;
	min-height: 0 !important;
	max-height: none !important;
	margin: 0 !important;
	padding: 0 !important;
	object-fit: cover !important;
	object-position: right center !important;
}


/* ==================================================
   ARROWS
   ================================================== */

.zch-hero__arrow {
	position: absolute;
	top: 50%;
	z-index: 6;
	display: grid;
	width: 38px;
	min-width: 38px;
	height: 58px;
	min-height: 58px;
	padding: 0;
	place-items: center;
	border: 0;
	background: #fff;
	color: #111;
	box-shadow: 0 4px 15px rgb(0 0 0 / 8%);
	transform: translateY(-50%);
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
}

.zch-hero__arrow--previous {
	left: 0;
	border-radius: 0 7px 7px 0;
}

.zch-hero__arrow--next {
	right: 0;
	border-radius: 7px 0 0 7px;
}

.zch-hero__arrow:hover,
.zch-hero__arrow:focus {
	border: 0;
	background: #fff;
	color: #111;
	box-shadow: 0 4px 15px rgb(0 0 0 / 8%);
}

.zch-hero__arrow svg {
	display: block;
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}


/* ==================================================
   DOTS
   ================================================== */

.zch-hero__dots {
	position: absolute;
	right: 26%;
	bottom: 12px;
	z-index: 6;
	display: flex;
	gap: 7px;
	align-items: center;
	justify-content: center;
	transform: translateX(50%);
}

.zch-hero button.zch-hero__dot {
	display: block !important;
	width: 7px !important;
	min-width: 7px !important;
	max-width: 7px !important;
	height: 7px !important;
	min-height: 7px !important;
	max-height: 7px !important;
	margin: 0 !important;
	padding: 0 !important;
	flex: 0 0 7px !important;
	border: 0 !important;
	border-radius: 50% !important;
	outline: 0;
	background: #c8c8d2 !important;
	box-shadow: none !important;
	transform: none !important;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
}

.zch-hero button.zch-hero__dot:hover,
.zch-hero button.zch-hero__dot:focus {
	border: 0 !important;
	background: #aeb0bc !important;
	box-shadow: none !important;
}

.zch-hero button.zch-hero__dot.is-active {
	background: #3630ff !important;
}


/* ==================================================
   LAPTOP
   ================================================== */

@media (max-width: 1199px) and (min-width: 992px) {
	.zch-hero {
		width: calc(100% - 40px);
	}

	.zch-hero__slide {
		grid-template-columns: minmax(0, 50%) minmax(0, 50%);
	}

	.zch-hero__content {
		padding-right: 25px;
		padding-left: 48px;
	}

	.zch-hero__title {
		font-size: clamp(34px, 4vw, 46px);
	}
}


/* ==================================================
   TABLET
   Height: 250px
   ================================================== */

@media (max-width: 991px) {
	.zch-hero {
		width: calc(100% - 28px);
		margin: 18px auto;
	}

	.zch-hero__viewport,
	.zch-hero__slides,
	.zch-hero__slide {
		height: 250px;
		min-height: 0;
		max-height: 250px;
	}

	.zch-hero__slide {
		grid-template-columns: minmax(0, 52%) minmax(0, 48%);
	}

	.zch-hero__content {
		height: 250px;
		padding: 22px 18px 32px 32px;
	}

	.zch-hero__eyebrow {
		margin-bottom: 8px;
		font-size: 11px;
	}

	.zch-hero__title {
		font-size: clamp(25px, 4vw, 34px);
	}

	.zch-hero__description {
		margin-top: 9px;
		font-size: 12px;
		line-height: 1.35;
		-webkit-line-clamp: 1;
	}

	.zch-hero__button {
		height: 38px;
		min-height: 38px;
		margin-top: 11px;
		padding: 0 15px;
		gap: 11px;
		font-size: 12px;
	}

	.zch-hero__button svg {
		width: 16px;
		height: 16px;
		flex-basis: 16px;
	}

	.zch-hero__media {
		height: 250px;
		min-height: 0;
		max-height: 250px;
	}

	.zch-hero__image,
	.zch-hero__media img {
		width: 100% !important;
		height: 100% !important;
		object-fit: cover !important;
		object-position: right center !important;
	}
}


/* ==================================================
   MOBILE
   Height: 250px
   ================================================== */

@media (max-width: 767px) {
	.zch-hero {
		width: calc(100% - 16px);
		margin: 12px auto 16px;
	}

	.zch-hero__viewport {
		border-radius: 8px;
	}

	.zch-hero__slide {
		display: block;
	}

	.zch-hero__content {
		position: relative;
		z-index: 3;
		width: 58%;
		height: 250px;
		padding: 22px 0 31px 20px;
		justify-content: center;
	}

	.zch-hero__eyebrow {
		margin-bottom: 8px;
		font-size: 9px;
		line-height: 1.2;
	}

	.zch-hero__title {
		max-width: 210px;
		font-size: clamp(21px, 6.5vw, 28px);
		line-height: 1.06;
		letter-spacing: -0.035em;
	}

	.zch-hero__description {
		display: none;
	}

	.zch-hero__button {
		width: auto;
		height: 38px;
		min-height: 38px;
		margin-top: 14px;
		padding: 0 13px;
		gap: 10px;
		border-radius: 7px;
		font-size: 12px;
	}

	/* Fotografia në anën e djathtë */

	.zch-hero__media {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		z-index: 1;
		width: 50%;
		height: 250px;
		min-height: 0;
		max-height: 250px;
		overflow: hidden;
	}

	.zch-hero__image,
	.zch-hero__media img {
		display: block;
		width: 100% !important;
		max-width: none !important;
		height: 100% !important;
		min-height: 0 !important;
		max-height: none !important;
		margin: 0 !important;
		padding: 0 !important;
		object-fit: cover !important;
		object-position: right center !important;
	}

	.zch-hero__arrow {
		display: none;
	}

	.zch-hero__dots {
		right: 50%;
		bottom: 9px;
		gap: 6px;
		transform: translateX(50%);
	}

	.zch-hero button.zch-hero__dot {
		width: 6px !important;
		min-width: 6px !important;
		max-width: 6px !important;
		height: 6px !important;
		min-height: 6px !important;
		max-height: 6px !important;
		flex-basis: 6px !important;
	}
}


/* ==================================================
   SMALL MOBILE
   ================================================== */

@media (max-width: 390px) {
	.zch-hero__content {
		width: 59%;
		padding-right: 0;
		padding-left: 17px;
	}

	.zch-hero__title {
		max-width: 185px;
		font-size: clamp(20px, 6.3vw, 25px);
	}

	.zch-hero__button {
		height: 36px;
		min-height: 36px;
		margin-top: 12px;
		padding: 0 12px;
		font-size: 11px;
	}

	.zch-hero__media {
		width: 49%;
	}
}


/* ==================================================
   REDUCED MOTION
   ================================================== */

@media (prefers-reduced-motion: reduce) {
	.zch-hero__slide,
	.zch-hero__button,
	.zch-hero__dot {
		transition: none;
	}
}