/* ==========================================================================
   COBRANZA ESTRATÉGICA — Experiencia que genera control
   (template-parts/ce-control.php) — Extraído de cobranza-estrategica.html
   (#ce-control). Prefijo ce-ctrl-* (clases únicas).
   ========================================================================== */

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

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

.ce-ctrl-eyebrow {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(1.1rem, 2vw, 1.5rem);
	font-weight: 400;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.1;
}

.ce-ctrl-title {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2.4rem, 5.5vw, 4rem);
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--white);
	line-height: 1;
	margin-top: 0.2rem;
}

.ce-ctrl-subtitle {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(1.3rem, 2.4vw, 1.9rem);
	font-weight: 500;
	color: var(--gold);
	line-height: 1.3;
	border-left: 2px solid var(--gold);
	padding-left: 1rem;
	margin: 1.8rem 0 2rem;
}

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

.ce-ctrl-sep {
	display: block;
	width: 40px;
	height: 1px;
	background: var(--gold);
	margin: 1.7rem 0;
}

/* Marco biselado (esquinas cortadas sup-izq. e inf-der.) */
.ce-ctrl-frame {
	background: var(--gold);
	padding: 1px;
	clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
}

.ce-ctrl-img {
	clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

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

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

/* Panel de cierre con escudo */
.ce-ctrl-quote {
	max-width: 1200px;
	margin: clamp(3rem, 5vw, 4rem) auto 0;
	border: 1px solid rgba(198, 170, 71, 0.4);
	border-radius: 6px;
	padding: clamp(1.8rem, 3vw, 2.4rem) clamp(2rem, 4vw, 3.5rem);
	display: flex;
	align-items: center;
	gap: clamp(1.5rem, 3vw, 2.5rem);
}

.ce-ctrl-shield {
	flex-shrink: 0;
	color: var(--gold);
}

.ce-ctrl-shield svg {
	width: 48px;
	height: 48px;
	display: block;
}

.ce-ctrl-quote-divider {
	align-self: stretch;
	width: 1px;
	background: rgba(198, 170, 71, 0.35);
}

.ce-ctrl-quote-text {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(1.1rem, 1.8vw, 1.5rem);
	font-weight: 500;
	color: var(--gold);
	line-height: 1.5;
}

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

	.ce-ctrl-frame {
		max-width: 560px;
		width: 100%;
		margin: 0 auto;
	}

	.ce-ctrl-quote {
		flex-direction: column;
		text-align: center;
		gap: 1.4rem;
	}

	.ce-ctrl-quote-divider {
		width: 60px;
		height: 1px;
		align-self: center;
	}
}
