/* ==========================================================================
   ÁREA LEGAL — Resultados para tu empresa (template-parts/al-resultados.php)
   Extraído de area_legal.html (#resultados). Prefijo "res-" (clases únicas).
   ========================================================================== */

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

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

.res-line {
	display: block;
	width: 60px;
	height: 2px;
	background: var(--gold);
	margin-bottom: 1.6rem;
}

.res-eyebrow {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(1.3rem, 2.2vw, 1.7rem);
	font-weight: 500;
	letter-spacing: 0.02em;
	color: var(--gold);
	margin-bottom: 1.4rem;
}

.res-title {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 600;
	color: var(--white);
	line-height: 1.2;
}

.res-glow {
	display: block;
	width: 100%;
	max-width: 380px;
	height: 1px;
	background: linear-gradient(to right, transparent, rgba(224, 201, 106, 0.8), transparent);
	margin-top: 2rem;
}

/* Timeline (columna derecha) */
.res-timeline {
	position: relative;
	border: 1px solid rgba(198, 170, 71, 0.5);
	border-radius: 16px;
	padding: 1.4rem 2.2rem 1.4rem 1.8rem;
}

.res-timeline::before {
	content: "";
	position: absolute;
	left: calc(1.8rem + 10px);
	top: 2.6rem;
	bottom: 2.6rem;
	width: 2px;
	background: rgba(198, 170, 71, 0.35);
}

.res-item {
	position: relative;
	display: flex;
	align-items: center;
	padding: 1.15rem 0 1.15rem 2.6rem;
	border-bottom: 1px solid rgba(198, 170, 71, 0.12);
}

.res-item:last-child {
	border-bottom: none;
}

.res-dot {
	position: absolute;
	left: 4px;
	top: 50%;
	transform: translateY(-50%);
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--gold);
	box-shadow: 0 0 10px rgba(224, 201, 106, 0.7);
	z-index: 1;
}

.res-item p {
	font-size: 0.95rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.5;
}

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