/**
 * Intro Banner — eyebrow + large heading (left), description + button (right).
 */

.elementor-column > .elementor-element-populated:has(.elementor-widget-agency-intro-banner) {
	padding: 0 !important;
}

.aew-intro {
	width: 100%;
	box-sizing: border-box;
	background-color: #f8f5f1;
}

.aew-intro__inner {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	/* Padding owned by the "Padding" control; column-gap/row-gap owned by the
	   "Column gap" / "Row gap" controls (Band section). */
	box-sizing: border-box;
	display: grid;
	grid-template-columns: 1.25fr 1fr;
	align-items: center;
}

/* ── Left ──────────────────────────────────────────────────────── */
.aew-intro__left {
	min-width: 0;
}

.aew-intro__eyebrow {
	margin: 0 0 16px;
	font-family: var(--aew-font-body, Poppins, sans-serif);
	/* font-size and font-weight owned by the "eyebrow_typography" control */
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #305b83;
}

.aew-intro__heading {
	margin: 0;
	font-family: var(--aew-font-heading, 'DM Serif Display', serif);
	/* font-size and font-weight owned by the "heading_typography" control */
	line-height: 1.05;
	color: #305b83;
}

/* ── Right ─────────────────────────────────────────────────────── */
.aew-intro__right {
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 28px;
}

.aew-intro__desc {
	margin: 0;
	font-family: var(--aew-font-body, Poppins, sans-serif);
	/* font-size owned by the "description_typography" control */
	line-height: 1.6;
	color: #333;
}

.aew-intro__desc p {
	margin: 0 0 1em;
}

.aew-intro__desc p:last-child {
	margin-bottom: 0;
}

.aew-intro__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 28px;
	border-radius: 8px;
	background-color: var(--e-global-color-aew-cta, #f3c400);
	color: #252f37;
	font-family: var(--aew-font-body, Poppins, sans-serif);
	/* font-size and font-weight owned by the "button_typography" control */
	line-height: 1.2;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.aew-intro__btn:hover,
.aew-intro__btn:focus-visible {
	opacity: 0.92;
	color: #252f37;
}

/* ── Tablet / mobile ───────────────────────────────────────────── */
@media (max-width: 1024px) {
	.aew-intro__inner {
		grid-template-columns: 1fr;
		align-items: start;
	}
	/* heading font-size at tablet owned by the "heading_typography" control */
}

@media (max-width: 768px) {
	/* heading/description font-size at mobile owned by their typography controls */
	/* Button width is controlled by the editor "Button width" control
	   (defaults to full width on mobile). */
}
