.als-slider {
	--als-brand: var(--brand, #1473e6);
	position: relative;
	overflow: hidden;
	background: #0d1b2a;
	color: #fff;
}

.als-slider__track {
	position: relative;
	min-height: clamp(520px, 72vh, 760px);
}

.als-slide {
	position: absolute;
	inset: 0;
	display: grid;
	align-items: center;
	visibility: hidden;
	opacity: 0;
	transition: opacity 500ms ease, visibility 500ms ease;
}

.als-slide.is-active {
	z-index: 2;
	visibility: visible;
	opacity: 1;
}

.als-slide__media,
.als-slide__overlay {
	position: absolute;
	inset: 0;
}

.als-slide__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.als-slide__overlay {
	background: linear-gradient(90deg, rgba(5, 15, 28, 0.94) 0%, rgba(5, 15, 28, 0.72) 50%, rgba(5, 15, 28, 0.18) 100%);
}

.als-slide__content {
	position: relative;
	z-index: 2;
	width: min(1180px, calc(100% - 40px));
	margin-inline: auto;
	padding: 6rem 0;
}

.als-slide__content > * {
	max-width: 700px;
}

.als-slide__content h2 {
	margin: 0 0 1.2rem;
	color: #fff;
	font-size: clamp(2.6rem, 7vw, 5.8rem);
	line-height: 1.02;
}

.als-slide__content > p:not(.als-slide__eyebrow) {
	color: rgba(255, 255, 255, 0.84);
	font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.als-slide__eyebrow {
	color: #ffb703;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.als-button {
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.4rem;
	margin-top: 1rem;
	border-radius: 12px;
	background: var(--als-brand);
	color: #fff;
	font-weight: 800;
	text-decoration: none;
}

.als-slider__controls {
	position: absolute;
	z-index: 4;
	right: max(20px, calc((100% - 1180px) / 2));
	bottom: 28px;
	display: flex;
	align-items: center;
	gap: 0.55rem;
}

.als-slider__controls > button {
	display: inline-grid;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 50%;
	background: rgba(5, 15, 28, 0.5);
	color: #fff;
	cursor: pointer;
	place-items: center;
}

.als-slider__dots {
	display: flex;
	gap: 0.4rem;
}

.als-slider__dots button {
	width: 9px;
	height: 9px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.45);
	cursor: pointer;
}

.als-slider__dots button[aria-current="true"] {
	background: #fff;
	transform: scale(1.25);
}

.als-coupons {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.als-coupon {
	position: relative;
	overflow: hidden;
	padding: 1.75rem;
	border: 2px dashed #b9c7d8;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 14px 34px rgba(13, 27, 42, 0.08);
}

.als-coupon::after {
	position: absolute;
	top: 0;
	right: 0;
	width: 58px;
	height: 58px;
	background: linear-gradient(135deg, transparent 50%, var(--brand, #1473e6) 50%);
	content: "";
}

.als-coupon__value {
	display: block;
	margin-bottom: 0.6rem;
	color: var(--brand, #1473e6);
	font-size: clamp(2rem, 5vw, 3.25rem);
	line-height: 1;
}

.als-coupon h3 {
	margin-bottom: 0.7rem;
	font-size: 1.35rem;
}

.als-coupon__code {
	display: inline-block;
	padding: 0.3rem 0.6rem;
	border-radius: 6px;
	background: #eef5ff;
	font-size: 0.9rem;
}

.als-coupon__expiry,
.als-coupon small {
	display: block;
	color: #5d6b7a;
	font-size: 0.78rem;
}

.als-coupon > a {
	display: inline-block;
	margin-top: 1rem;
	font-weight: 750;
}

.als-link-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.als-link-grid > a {
	display: grid;
	padding: 1.1rem;
	border: 1px solid #dce4ed;
	border-radius: 12px;
	background: #fff;
	color: #0d1b2a;
	text-decoration: none;
}

.als-link-grid span {
	margin-top: 0.35rem;
	color: #5d6b7a;
	font-size: 0.9rem;
}

.als-related {
	padding-top: 2rem;
	margin-top: 3rem;
	border-top: 1px solid #dce4ed;
}

.als-related ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	padding: 0;
	list-style: none;
	gap: 0.65rem;
}

.als-related a {
	display: block;
	padding: 0.75rem 1rem;
	border: 1px solid #dce4ed;
	border-radius: 10px;
	text-decoration: none;
}

.als-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 1.5rem;
	gap: 0.5rem;
	color: #5d6b7a;
	font-size: 0.84rem;
}

.als-breadcrumbs a {
	color: inherit;
}

@media (max-width: 800px) {
	.als-coupons,
	.als-link-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.als-slide__overlay {
		background: linear-gradient(90deg, rgba(5, 15, 28, 0.92), rgba(5, 15, 28, 0.5));
	}
}

@media (max-width: 560px) {
	.als-slider__track {
		min-height: 590px;
	}

	.als-slide__content {
		width: calc(100% - 28px);
		padding-bottom: 8rem;
	}

	.als-slider__controls {
		right: 14px;
		bottom: 18px;
		left: 14px;
		justify-content: center;
	}

	.als-coupons,
	.als-link-grid,
	.als-related ul {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.als-slide {
		transition: none;
	}
}

