/**
 * MindKit Hero widget styles.
 * Layout-only rules; colors/typography/spacing are controlled via
 * Elementor controls and injected as inline CSS variables/selectors.
 */

.mindkit-hero {
	position: relative;
	width: 100%;
	box-sizing: border-box;
}

.mindkit-hero__container {
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.mindkit-hero__eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 600;
}

.mindkit-hero__heading {
	margin: 0;
	font-weight: 700;
	line-height: 1.15;
}

.mindkit-hero__description {
	margin: 0;
	max-width: 640px;
}

.mindkit-hero__buttons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.mindkit-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-weight: 600;
	border: 2px solid transparent;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
	padding: 14px 28px;
}

.mindkit-btn:active {
	transform: translateY(1px);
}

.mindkit-btn--filled {
	color: #ffffff;
	background-color: #5b4cff;
	border-color: #5b4cff;
}

.mindkit-btn--outline {
	background-color: transparent;
	border-color: #5b4cff;
	color: #5b4cff;
}

@media (max-width: 767px) {
	.mindkit-hero__buttons {
		flex-direction: column;
		width: 100%;
	}

	.mindkit-hero__buttons .mindkit-btn {
		width: 100%;
	}
}
