/* ==========================================================================
   ÁREA LEGAL — Nuestras Áreas (template-parts/al-areas.php)
   Extraído de area_legal.html (#areas). Prefijos "areas-" y "area-" (clases únicas).
   ========================================================================== */

#areas {
	background: var(--navy);
}

.areas-header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 3.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.areas-topline {
	width: 60px;
	height: 2px;
	background: var(--gold);
	margin-bottom: 1.4rem;
}

.areas-eyebrow {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 0.8rem;
}

.areas-title {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2.2rem, 4.5vw, 3.4rem);
	font-weight: 600;
	color: var(--white);
	line-height: 1.1;
}

.areas-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.6rem;
}

/* 3 por fila; la última fila (2 tarjetas) queda centrada. */
.areas-grid .area-card {
	flex: 0 1 calc((100% - 3.2rem) / 3);
	min-width: 280px;
}

/* Grupo superior: 2 tarjetas centradas y con ancho acotado. */
.areas-grid--duo {
	max-width: 900px;
	margin: 0 auto;
}

.areas-grid--duo .area-card {
	flex-basis: calc((100% - 1.6rem) / 2);
}

/* Separador con eyebrow entre el grupo general y el legal. */
.areas-divider {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 3.5rem 0;
}

.areas-divider .areas-eyebrow {
	margin-bottom: 0;
}

.area-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	border: 1px solid rgba(198, 170, 71, 0.15);
	border-radius: 16px;
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), rgba(198, 170, 71, 0.02));
	padding: 2.8rem 2.2rem;
	transition:
		border-color 0.3s,
		transform 0.3s;
}

.area-card:hover {
	border-color: rgba(198, 170, 71, 0.45);
	transform: translateY(-4px);
}

.area-icon {
	color: var(--gold);
	margin-bottom: 1.6rem;
}

.area-icon svg {
	width: 46px;
	height: 46px;
	display: block;
}

.area-card-title {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.2;
	color: var(--gold);
	margin-bottom: 1rem;
}

.area-card-line {
	width: 44px;
	height: 2px;
	background: var(--gold);
	margin-bottom: 1.3rem;
}

.area-card-text {
	font-size: 0.88rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.62);
	line-height: 1.7;
}

@media (max-width: 900px) {
	.areas-grid .area-card {
		flex-basis: calc((100% - 1.6rem) / 2);
	}
}

@media (max-width: 600px) {
	.areas-grid .area-card,
	.areas-grid--duo .area-card {
		flex-basis: 100%;
	}
}
