/* ==========================================================================
   COBRANZA ESTRATÉGICA — Recuperación estratégica de cuentas clave
   (template-parts/ce-recuperacion.php) — Extraído de cobranza-estrategica.html
   (#ce-recuperacion). Prefijo ce-rec-* (clases únicas).
   ========================================================================== */

#ce-recuperacion {
	background: var(--navy);
}

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

.ce-rec-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-rec-title em {
	font-style: normal;
	color: var(--gold);
}

.ce-rec-line {
	display: block;
	width: 60px;
	height: 2px;
	background: var(--gold);
	margin: 1.4rem 0 1.8rem;
}

.ce-rec-p {
	font-size: 0.92rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.62);
	line-height: 1.85;
	margin-bottom: 1.4rem;
}

.ce-rec-text .btn-primary {
	margin-top: 1.2rem;
}

.ce-rec-img {
	overflow: hidden;
	border-radius: 16px;
	border: 1px solid rgb(198, 170, 71);
	aspect-ratio: 16 / 10;
	max-height: 300px;
	margin-bottom: 2.2rem;
}

.ce-rec-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s;
}

.ce-rec-img:hover img {
	transform: scale(1.04);
}

.ce-rec-sub {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(1.3rem, 2.2vw, 1.7rem);
	font-weight: 600;
	color: var(--gold);
	margin-bottom: 1.4rem;
}

.ce-rec-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.ce-rec-list li {
	position: relative;
	padding-left: 1.6rem;
	font-size: 0.95rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.5;
}

.ce-rec-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45em;
	width: 7px;
	height: 7px;
	background: var(--gold);
	transform: rotate(45deg);
}

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