/* ==========================================================================
   ÁREA LEGAL — Protege hoy (template-parts/al-proteger.php)
   Extraído de area_legal.html (#proteger). Prefijo "proteger-" (clases únicas).
   ========================================================================== */

#proteger {
	background: var(--navy2);
	height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.proteger-panel {
	border-radius: 6px;
	padding: clamp(2.5rem, 5vw, 4.5rem);
}

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

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

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

.proteger-text {
	position: relative;
	border-left: 1px solid rgba(198, 170, 71, 0.5);
	padding-left: clamp(2rem, 4vw, 3.5rem);
}

.proteger-text::before {
	content: "";
	position: absolute;
	left: -6px;
	top: 38%;
	width: 11px;
	height: 11px;
	background: var(--navy);
	border: 1px solid var(--gold);
	transform: rotate(45deg);
}

.proteger-p {
	font-size: 1rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.proteger-p-italic {
	font-size: 0.95rem;
	font-weight: 300;
	font-style: italic;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.7;
}

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

	.proteger-text {
		border-left: none;
		padding-left: 0;
	}

	.proteger-text::before {
		display: none;
	}
}
