/* Estilos de la página "Quiénes Somos" (page-quienes-somos.php) — cargados solo en esa plantilla. Estilos compartidos (header, footer, botones, page hero) en site.css */

/* ===== About ===== */

.crivelli-about {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 64px;
  align-items: start;
}

.crivelli-about__photo {
  width: 400px;
  height: 400px;
  border-radius: 4px;
  background: #EEEBE7;
  border: 1px solid rgba(92, 31, 91, 0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(92, 31, 91, 0.08);
}

.crivelli-about__photo--filled {
  overflow: hidden;
}

.crivelli-about__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.crivelli-about__photo-label {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #A08FA0;
}

.crivelli-about__name {
  margin-bottom: 28px;
}

.crivelli-about__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 48px;
  padding: 24px 0;
  border-top: 1px solid rgba(92, 31, 91, 0.10);
  border-bottom: 1px solid rgba(92, 31, 91, 0.10);
  margin-bottom: 32px;
}

.crivelli-about__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.crivelli-about__meta-label {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C9A84C;
}

.crivelli-about__meta-value {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1E1E1E;
}

.crivelli-about__bio {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: #4A4A4A;
  max-width: 640px;
}

.crivelli-about__cta {
  margin-top: 36px;
}

/* ===== Responsive ===== */

@media (max-width: 860px) {
  .crivelli-about {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .crivelli-about__photo {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
}
