/* ==========================================================================
   SOBRE NOSOTROS — Nuestro Compromiso (template-parts/sobre-compromiso.php)
   Página Sobre Nosotros. Extraído de sobre-nosotros.html (#compromiso).
   Prefijo comp-* (clases únicas).

   Reutiliza .titulos (sobre-distincion.css) y .comp-accent + .subtitulos-white
   (sobre-union.css). Utilidad propia de esta sección: .margen-b.
   Se omiten .comp-eyebrow y .comp-title del original (el marcado no los usa).
   ========================================================================== */

.margen-b {
	margin-bottom: 1.5rem;
}

#compromiso {
	background: var(--navy2);
}

.comp-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(2rem, 4vw, 4rem);
	align-items: stretch;
}

.comp-media {
	align-self: stretch;
	border: 1px solid rgba(198, 170, 71, 0.4);
	border-radius: 20px;
	overflow: hidden;
}

.comp-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.comp-content {
	display: flex;
	flex-direction: column;
}

.comp-steps {
	display: flex;
	flex-direction: column;
}

.comp-step {
	display: flex;
	gap: 1.3rem;
	padding: 1.2rem 0;
	border-bottom: 1px solid rgba(198, 170, 71, 0.15);
}

.comp-step:first-child {
	padding-top: 0;
}

.comp-step-num {
	flex-shrink: 0;
	min-width: 2.6rem;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.2;
	color: var(--gold);
}

.comp-step-title {
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 0.5rem;
}

.comp-step-text {
	font-size: 0.88rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.68);
	line-height: 1.7;
}

.comp-quote {
	margin-top: 2rem;
	border: 1px solid rgba(198, 170, 71, 0.4);
	border-radius: 10px;
	padding: 2rem 2.4rem;
	text-align: center;
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(1.1rem, 1.6vw, 1.45rem);
	font-weight: 400;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
}

.comp-quote em {
	font-style: italic;
	color: var(--gold);
}

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

	.comp-media {
		min-height: clamp(300px, 60vw, 440px);
		max-height: 450px;
		display: none;
	}
}
