/* ============================================================
   About page — kahchunk_about (Figma 5fZXDEU62EJyEHqO0svzzE, 1822:19109)
   Hero = two columns (copy + portrait). Footer reuses .site-footer
   (case-study.css); we map its --cs-* vars to the hero width so the
   footer lines up with the hero content.
   ============================================================ */

.about {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* align the reused .site-footer with the hero content */
  --cs-max: var(--hero-max);
  --cs-inset: var(--pad-x);
}

/* ---------- Hero ---------- */
.about-hero {
  width: 100%;
  max-width: var(--hero-max);
  padding: 80px var(--pad-x) 0;
}
.about-hero__inner {
  display: grid;
  /* roughly even columns (matches the Figma ~1.1:1 copy:portrait ratio); the
     portrait is capped at its native 772px below. */
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 120px);
  /* photo is vertically centered against the copy column (Figma 1822:19130) */
  align-items: center;
}

.about-hero__copy { display: flex; flex-direction: column; gap: 22px; min-width: 0; }
.about-hero__head { display: flex; flex-direction: column; gap: 8px; }

.about-hero__eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2.86px;
  text-transform: uppercase;
  color: var(--orange-300);
}
.about-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  color: var(--orange-100);
}

/* CTA row — LinkedIn + Resume (Figma 1828:20080) */
.about-hero__actions { display: flex; flex-wrap: wrap; gap: 22px; }

.about-hero__body { display: flex; flex-direction: column; gap: 1.55em; }
.about-hero__body p {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.55;
  color: var(--blue-100);
  opacity: 0.78;
}

/* Ezina inline links — default cream, press → orange (Figma comment). */
.about-hero__body a {
  color: var(--orange-100);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: from-font;
  transition: color 0.18s ease;
}
.about-hero__body a:active { color: var(--orange-300); }

/* ---------- Portrait ---------- */
.about-hero__portrait {
  width: 100%;
  max-width: 772px;
  margin-left: auto; /* hug the right edge of its cell when capped */
  aspect-ratio: 772 / 675;
  border-radius: 8px;
  overflow: hidden;
}
.about-hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Footer spacing ---------- */
.about .site-footer { margin-top: clamp(64px, 8vw, 112px); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-hero { padding-top: 48px; }
  .about-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  /* portrait first, then copy — keeps a face-forward intro on mobile */
  .about-hero__portrait { order: -1; max-width: 560px; }
}
