/* About page — simple bio layout */

/* About layout — header, nav, and footer use global styles.css (same as case study pages). */

.about-main {
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
}

.about-inner {
  max-width: min(920px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 2.75rem);
  align-items: center;
}

@media (min-width: 768px) {
  .about-layout {
    grid-template-columns: minmax(220px, 42%) 1fr;
    gap: clamp(2.25rem, 5vw, 3.25rem);
    align-items: center;
  }
}

.about-photo {
  margin: 0;
  align-self: start;
  display: flex;
  justify-content: center;
  width: 100%;
}

.about-photo__img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(16, 14, 11, 0.12);
}

.page-about .about-photo__img {
  transition: none;
}

.page-about .about-photo__img:hover {
  transform: none;
  box-shadow: 0 12px 36px rgba(16, 14, 11, 0.12);
}

.about-copy {
  min-width: 0;
}

.about-title {
  margin: 0 0 clamp(1.25rem, 2.5vw, 1.75rem);
  font-family: var(--font-sans);
  font-size: var(--type-case-hero-title);
  line-height: var(--type-case-hero-lh);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0f0f0f;
}

.about-prose p {
  margin: 0 0 1.2em;
  font-family: var(--font-sans);
  font-size: var(--type-body-size);
  font-weight: 400;
  line-height: var(--type-body-lh);
  color: #2a2825;
}

.about-prose p:last-child {
  margin-bottom: 0;
}
