/* ==========================================================================
   Coschool How It Works Widget
   ========================================================================== */

/* ── Sección ─────────────────────────────────────────────────────────────── */
.csh-section {
	background-color: #0d0d0d;
	padding: 100px 80px;
	overflow: hidden;
}

.csh-inner {
	max-width: 1200px;
	margin: 0 auto;
}

/* ── Encabezado ──────────────────────────────────────────────────────────── */
.csh-header {
	text-align: center;
	margin: 0 auto 56px;
	max-width: 820px;
}

.csh-title {
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(32px, 3.5vw, 46px);
	font-weight: 600;
	line-height: 1.15;
	color: #ffffff;
	margin: 0 0 16px;
}

.csh-title__highlight {
	font-style: italic;
	color: #e6d45d;
}

.csh-subtitle {
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(16px, 1.4vw, 20px);
	font-weight: 400;
	line-height: 1.5;
	color: #c9c9c9;
	margin: 0;
}

/* ── Fila de pasos ───────────────────────────────────────────────────────── */
.csh-steps {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 32px;
}

.csh-step {
	position: relative;
	flex: 1 1 0;
	min-width: 240px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 12px;
}

.csh-step__num {
	font-family: 'Montserrat', sans-serif;
	font-size: 56px;
	font-weight: 700;
	line-height: 1;
	color: #e6d45d;
}

.csh-step__icon {
	display: inline-flex;
	font-size: 44px;
	line-height: 1;
}

.csh-step__icon svg { width: 44px; height: 44px; fill: #e6d45d; }
.csh-step__icon i   { color: #e6d45d; }

.csh-step__title {
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(20px, 1.8vw, 24px);
	font-weight: 600;
	line-height: 1.25;
	color: #ffffff;
	margin: 0;
}

.csh-step__text {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	color: #c9c9c9;
	margin: 0;
	max-width: 340px;
}

/* ── Conector entre pasos ────────────────────────────────────────────────── */
.csh-steps--connected .csh-step:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 28px;
	left: calc(100% + 4px);
	width: 24px;
	height: 2px;
	background-color: #2d2d2d;
}

/* ── En el editor de Elementor mostrar todo inmediato ────────────────────── */
.elementor-editor-active .cs-anim {
	opacity: 1;
	transform: translateY(0);
	transition: none;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
	.csh-section { padding: 80px 40px; }
	.csh-header  { margin-bottom: 44px; }
}

@media (max-width: 768px) {
	.csh-section {
		padding-top:    60px;
		padding-bottom: 60px;
		padding-left:   0;
		padding-right:  0;
	}
	.csh-title { font-size: clamp(26px, 6.5vw, 36px); }
	.csh-steps {
		flex-direction: column;
		align-items: center;
	}
	.csh-step { min-width: 0; width: 100%; }
	.csh-steps--connected .csh-step:not(:last-child)::after { display: none; }
}

@media (max-width: 480px) {
	.csh-section {
		padding-top:    48px;
		padding-bottom: 48px;
	}
	.csh-step__num { font-size: 48px; }
}
