/* ─────────────────────────────────────────
   ABOUT.CSS — Sección sobre mí
   MNSM · Playground Agency
───────────────────────────────────────── */

#about {
  background: var(--cream);
  color: var(--black);
  padding: var(--section-pad-v) var(--section-pad-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ─── FOTO ─── */
.about-photo-frame {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(160deg, #e0d8cc 0%, #c8bfb0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Placeholder */
.about-photo-frame span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.2);
}

.about-caption {
  margin-top: 16px;
  text-align: center;
}
.about-caption .name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  color: var(--black);
}
.about-caption .role {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 4px;
}

/* ─── TEXTO ─── */
.about-text .section-title { color: var(--black); }

.about-text p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}
.about-text p strong {
  color: var(--black);
  font-weight: 500;
}

.about-closing {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: var(--black);
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  #about {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
