/* =========================
   ABOUT
   ========================= */

.about-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.25fr;
  gap: var(--space-lg);
  align-items: start;
}

.about-side {
  display: flex;
  flex-direction: column;
}

.about-image {
  margin-bottom: 1.25rem;
}

.about-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.about-caption h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.about-caption p {
  margin-bottom: 0;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--color-text-primary);
  max-width: 32ch;
  margin-bottom: var(--space-xs);
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .about-side {
    max-width: 420px;
  }

  .about-content p {
    max-width: 36ch;
  }
}

/* =========================
   ABOUT PAGE
   ========================= */

.about-page-hero {
  max-width: 800px;
}
