/* about page rules — see public/css/shared.css for tokens and primitives */

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.about-media {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 70px 60px;
}

.about-copy > * {
  margin: 0;
}

.about-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.about-expansion {
  color: var(--text-body);
  font-size: 14px;
  letter-spacing: var(--ls-tight);
  text-transform: uppercase;
}

.about-body {
  max-width: 440px;
  color: var(--text-body-dim);
  font-size: 15px;
  line-height: 1.9;
}

.about-quoteBand {
  padding: 100px var(--gutter);
  background: var(--ink-deep);
  text-align: center;
}

.about-quote {
  max-width: 760px;
  margin: 0 auto 20px;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  text-wrap: pretty;
}

.about-attribution {
  margin: 0;
  color: var(--text-dim);
  font-size: 11px;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

.about-monogram {
  display: flex;
  justify-content: center;
  padding: 90px var(--gutter);
}

.about-monogram img {
  width: 110px;
  height: auto;
}

@media (max-width: 900px) {
  .about-split {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .about-media {
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .about-copy {
    padding: 56px var(--gutter);
  }

  .about-quoteBand {
    padding: 72px var(--gutter);
  }
}
