/* ==========================================================================
   SOBRE NOSOTROS — Nuestro Equipo (template-parts/sobre-equipo.php)
   Página Sobre Nosotros. Extraído de sobre-nosotros.html (#nuestro-equipo).
   Prefijo equipo-* (clases únicas). Reutiliza .titulos (sobre-distincion.css).
   ========================================================================== */

#nuestro-equipo {
	background: var(--navy2);
}

.equipo-header {
	max-width: 900px;
	margin: 0 auto 4.5rem;
	text-align: center;
}

.equipo-title {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2.6rem, 6vw, 4.5rem);
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	line-height: 1;
	color: var(--white);
	margin-bottom: 1.6rem;
}

.equipo-title-sep {
	position: relative;
	display: block;
	width: 180px;
	height: 1px;
	background: var(--gold);
	margin: 0 auto;
}

.equipo-title-sep::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
	width: 7px;
	height: 7px;
	background: var(--gold);
}

.equipo-persona {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: start;
	margin-bottom: clamp(3rem, 6vw, 5rem);
}

.equipo-persona:last-child {
	margin-bottom: 0;
}

.equipo-foto {
	border: 1px solid rgba(198, 170, 71, 0.5);
	border-radius: 18px;
	overflow: hidden;
	aspect-ratio: 3 / 4;
	width: 100%;
	max-width: 450px;
	max-height: 460px;
}

.equipo-foto img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	display: block;
	transition: transform 0.6s;
}

.equipo-foto:hover img {
	transform: scale(1.03);
}

.equipo-info {
	display: flex;
	flex-direction: column;
}

.equipo-rule {
	position: relative;
	width: 100%;
	height: 1px;
	background: rgba(198, 170, 71, 0.45);
	margin-bottom: 1.8rem;
}

.equipo-rule::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
	width: 7px;
	height: 7px;
	background: var(--gold);
}

.equipo-nombre {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2rem, 3.6vw, 3rem);
	font-weight: 600;
	line-height: 1.1;
	color: var(--white);
	margin-bottom: 0.7rem;
}

.equipo-nombre span {
	color: var(--gold);
}

.equipo-rol {
	font-size: 0.92rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 1.9rem;
}

.equipo-rol strong {
	font-weight: 700;
	color: var(--white);
}

.equipo-rol .rol-sep {
	color: rgba(198, 170, 71, 0.7);
	margin: 0 0.5rem;
}

.equipo-rol em {
	font-style: normal;
	color: var(--gold);
}

.equipo-parrafo {
	font-size: 0.9rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.85;
	margin-bottom: 1.2rem;
}

.equipo-divider-line {
	width: 100%;
	height: 1px;
	background: rgba(198, 170, 71, 0.3);
	margin: 1rem 0 1.4rem;
}

.equipo-especialidades {
	font-size: 0.92rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.7;
}

.equipo-especialidades strong {
	color: var(--gold);
	font-weight: 700;
}

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

	.equipo-foto {
		max-width: 420px;
		width: 100%;
		margin: 0 auto;
	}
}
