/* ofw-callout.css — OFW callout section component
 *
 * HTML: .ofw-callout > .container > .ofw-callout__inner >
 *   .ofw-callout__header (eyebrow + h2)
 *   .ofw-callout__body (optional body text)
 *   .ofw-callout__steps > li > .ofw-callout__step-number + span
 *   .ofw-callout__actions (CTA buttons)
 *
 * Used on: homepage, community single, guide single.
 * Dark green background with gold accents.
 */

/* ─── Section wrapper ───────────────────────────────────── */

.ofw-callout {
	background-color: var(--green);
	padding: var(--space-xl) 0;
	position: relative;
	overflow: hidden;
}

/* Subtle decorative gradient */
.ofw-callout::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(
		ellipse 60% 50% at 100% 50%,
		rgba(200, 169, 106, 0.06) 0%,
		transparent 70%
	);
	pointer-events: none;
}

/* ─── Inner layout ──────────────────────────────────────── */

.ofw-callout__inner {
	position: relative;
	z-index: 1;
	max-width: 720px;
}

/* ─── Header ────────────────────────────────────────────── */

.ofw-callout__eyebrow {
	font-family: var(--font-sans);
	font-size: 10px;
	font-weight: 500;
	color: var(--gold);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 0.75rem;
}

.ofw-callout__headline {
	font-family: var(--font-serif);
	font-size: clamp(28px, 3.5vw, 46px);
	font-weight: 600;
	color: var(--white);
	line-height: 1.1;
	margin-bottom: 1.5rem;
}

/* ─── Body text ─────────────────────────────────────────── */

.ofw-callout__body {
	margin-bottom: 2rem;
}

.ofw-callout__body p {
	font-family: var(--font-sans);
	font-size: 14.5px;
	font-weight: 300;
	color: rgba(247, 247, 245, 0.65);
	line-height: 1.8;
}

/* ─── Steps list ────────────────────────────────────────── */

.ofw-callout__steps {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	list-style: none;
	margin-bottom: 2.5rem;
}

.ofw-callout__steps li {
	display: flex;
	align-items: baseline;
	gap: 1rem;
	font-family: var(--font-sans);
	font-size: 14px;
	font-weight: 300;
	color: rgba(247, 247, 245, 0.75);
	line-height: 1.6;
}

.ofw-callout__step-number {
	font-family: var(--font-serif);
	font-size: 13px;
	font-weight: 400;
	color: var(--gold);
	flex-shrink: 0;
	min-width: 2rem;
	letter-spacing: 0.04em;
}

/* ─── Actions ───────────────────────────────────────────── */

.ofw-callout__actions {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

/* ─── Responsive ────────────────────────────────────────── */

@media ( max-width: 1024px ) {

	.ofw-callout__inner {
		max-width: 100%;
	}
}

@media ( max-width: 640px ) {

	.ofw-callout {
		padding: var(--space-lg) 0;
	}

	.ofw-callout__actions {
		flex-direction: column;
	}

	.ofw-callout__actions .btn {
		width: 100%;
		text-align: center;
	}
}
