/* ==========================================================================
   COBRANZA ESTRATÉGICA — Nuestro Enfoque (template-parts/ce-enfoque.php)
   Extraído de cobranza-estrategica.html (#ce-enfoque). Prefijo ce-enfoque-* (únicas).
   ========================================================================== */

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

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

.ce-enfoque-title {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2.4rem, 5vw, 3.8rem);
	font-weight: 600;
	color: var(--white);
	line-height: 1.05;
}

.ce-enfoque-title em {
	font-style: normal;
	color: var(--gold);
}

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

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

.ce-enfoque-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
	margin-top: 0.6rem;
}

.ce-enfoque-list li {
	position: relative;
	padding-left: 1.4rem;
	font-size: 0.9rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.6;
}

.ce-enfoque-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--gold);
}

.ce-enfoque-img {
	overflow: hidden;
	border-radius: 16px;
	border: 1px solid rgb(198, 170, 71);
	aspect-ratio: 4 / 5;
}

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

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

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

	.ce-enfoque-img {
		max-width: 480px;
		width: 100%;
		margin: 0 auto;
	}
}
