/* ==========================================================================
   COBRANZA ESTRATÉGICA — Implementación de Control de Cobranza
   (template-parts/ce-implementacion.php) — Extraído de cobranza-estrategica.html
   (#ce-implementacion). Prefijo ce-impl-* (clases únicas).
   ========================================================================== */

#ce-implementacion {
	background: var(--navy2);
}

.ce-impl-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(2.5rem, 5vw, 5rem);
	align-items: center;
}

.ce-impl-title {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2.2rem, 4.5vw, 3.4rem);
	font-weight: 600;
	color: var(--white);
	line-height: 1.1;
}

.ce-impl-line {
	display: block;
	width: 90px;
	height: 2px;
	background: var(--gold);
	box-shadow: 0 0 12px rgba(224, 201, 106, 0.7);
	margin: 1.6rem 0 1.8rem;
}

.ce-impl-p {
	font-size: 0.95rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.8;
	margin-bottom: 2rem;
	max-width: 480px;
}

.ce-impl-panel {
	border: 1px solid rgba(198, 170, 71, 0.5);
	border-radius: 16px;
	padding: clamp(2rem, 3.5vw, 3rem) clamp(1.8rem, 3vw, 3rem);
}

.ce-impl-heading {
	font-size: clamp(1.05rem, 1.6vw, 1.25rem);
	font-weight: 700;
	color: var(--gold);
	margin-bottom: 1rem;
}

.ce-impl-list {
	list-style: none;
	display: flex;
	flex-direction: column;
}

.ce-impl-list li {
	display: flex;
	gap: 0.9rem;
	padding: 1rem 0;
	border-bottom: 1px solid rgba(198, 170, 71, 0.14);
	font-size: 0.95rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.5;
}

.ce-impl-list li:last-child {
	border-bottom: none;
}

.ce-impl-num {
	color: var(--gold);
	font-weight: 700;
	flex-shrink: 0;
}

@media (max-width: 900px) {
	.ce-impl-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.ce-impl-p {
		max-width: none;
	}
}
