/**
 * Feature Spotlight — structure & state only.
 * Visual tokens (colors, shadows, radii) come from Elementor controls.
 */

.ababil-feature-spotlight,
.ababil-feature-spotlight *,
.ababil-feature-spotlight *::before,
.ababil-feature-spotlight *::after {
	box-sizing: border-box;
}

.ababil-feature-spotlight {
	display: grid;
	width: 100%;
	min-width: 0;
	gap: 1.5rem;
	align-items: stretch;
}

/* Thumbs on the right */
.ababil-feature-spotlight--thumbs-right {
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
}

/* Thumbs below the stage */
.ababil-feature-spotlight--thumbs-bottom {
	grid-template-columns: minmax(0, 1fr);
}

.ababil-feature-spotlight__stage {
	position: relative;
	display: block;
	min-width: 0;
	overflow: hidden;
}

.ababil-feature-spotlight__slide {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.ababil-feature-spotlight__slide[hidden] {
	display: none !important;
}

.ababil-feature-spotlight__media {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	flex-shrink: 0;
}

.ababil-feature-spotlight__media[hidden],
.ababil-feature-spotlight__media--empty[hidden] {
	display: none !important;
}

.ababil-feature-spotlight__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ababil-feature-spotlight__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.ababil-feature-spotlight__icon i,
.ababil-feature-spotlight__icon svg,
.ababil-feature-spotlight__icon .ababil-icon__svg {
	display: block;
	line-height: 1;
}

.ababil-feature-spotlight__body {
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 1.5rem;
}

.ababil-feature-spotlight__kicker {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	line-height: 1.2;
	margin: 0;
}

.ababil-feature-spotlight__kicker[hidden],
.ababil-feature-spotlight__title[hidden],
.ababil-feature-spotlight__subtitle[hidden],
.ababil-feature-spotlight__description[hidden],
.ababil-feature-spotlight__link[hidden] {
	display: none !important;
}

.ababil-feature-spotlight__title,
.ababil-feature-spotlight__subtitle,
.ababil-feature-spotlight__description {
	margin: 0;
}

.ababil-feature-spotlight__description p {
	margin: 0;
}

.ababil-feature-spotlight__link {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	text-decoration: none;
}

.ababil-feature-spotlight__thumbs {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	min-width: 0;
}

.ababil-feature-spotlight--thumbs-bottom .ababil-feature-spotlight__thumbs {
	flex-direction: row;
	flex-wrap: wrap;
}

.ababil-feature-spotlight__thumb {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	width: 100%;
	margin: 0;
	padding: 1rem;
	text-align: left;
	cursor: pointer;
	font: inherit;
	appearance: none;
	-webkit-appearance: none;
	transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ababil-feature-spotlight--thumbs-bottom .ababil-feature-spotlight__thumb {
	flex: 1 1 12rem;
	min-width: 0;
}

.ababil-feature-spotlight__thumb-media {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	overflow: hidden;
}

.ababil-feature-spotlight__thumb-image {
	display: block;
	width: 3rem;
	height: 3rem;
	object-fit: cover;
}

.ababil-feature-spotlight__thumb-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.ababil-feature-spotlight__thumb-icon i,
.ababil-feature-spotlight__thumb-icon svg,
.ababil-feature-spotlight__thumb-icon .ababil-icon__svg {
	display: block;
	line-height: 1;
}

.ababil-feature-spotlight__thumb-label {
	display: block;
	min-width: 0;
	line-height: 1.3;
}

@media (max-width: 1024px) {
	.ababil-feature-spotlight--thumbs-right {
		grid-template-columns: minmax(0, 1fr);
	}

	.ababil-feature-spotlight--thumbs-right .ababil-feature-spotlight__thumbs {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.ababil-feature-spotlight--thumbs-right .ababil-feature-spotlight__thumb {
		flex: 1 1 12rem;
	}
}
