/* ==========================================================================
   Nejat CTA Box Widget
   ========================================================================== */

/* Root section */
.nejat-cta-box {
	background-color: #f5f5f5;
	padding-top: var(--nejat-section-pad-v);
	padding-bottom: var(--nejat-section-pad-v);
}

/* Inner container */
.nejat-cta-box__inner {
	max-width: var(--nejat-max-width);
	margin: 0 auto;
	padding-left: var(--nejat-gutter);
	padding-right: var(--nejat-gutter);
}

/* Content block */
.nejat-cta-box__content {
	display: flex;
	flex-direction: column;
	gap: var(--nejat-gap-sm);
}

/* Eyebrow */
.nejat-cta-box__eyebrow {
	margin: 0;
	font-size: 1.125rem;
	font-weight: 600;
	color: #4ab3c8;
	line-height: 1.4;
	text-transform: capitalize;
}

/* Headline */
.nejat-cta-box__headline {
	margin: 0;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.2;
}

/* Button wrapper */
.nejat-cta-box__btn-wrap {
	margin-top: var(--nejat-gap-sm);
}

/* Button */
.nejat-cta-box__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 36px;
	background-color: #1a1a1a;
	color: #ffffff;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	border-radius: var(--nejat-radius);
	transition: background-color 0.2s ease;
}

.nejat-cta-box__btn:hover,
.nejat-cta-box__btn:focus {
	background-color: #333333;
	color: #ffffff;
	text-decoration: none;
}
