/* =======================================================================
   STUDIO ALTO DA GLÓRIA — ABOUT V02 PAGE STYLES
======================================================================= */

:root {
  --about-field-width: 48rem;
}

.about-field {
  width: 100%;
  max-width: var(--about-field-width);
}

/* Intro -------------------------------------------------------------- */

.section--intro {
  padding-bottom: 0;
}

.section--intro .section-title {
  font-size: 1.88rem;
  font-weight: 600;
  max-width: none;
  margin-bottom: 1rem;
}

/* Repeating editorial sections -------------------------------------- */

.about-module {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -1.5rem;
}

/* Invitation + content ---------------------------------------------- */

.about-row {
  display: grid;
  grid-template-columns: 10rem minmax(0, 1fr);
  column-gap: 3rem;
  align-items: start;
}

.about-entry,
.about-content {
  min-width: 0;
}

.about-entry p {
  margin: 0;
	font-weight: 400;
}

.about-content p:first-child {
  margin-top: 0;
}

.about-content {
  color: var(--fg-dim);
}

/* Vertical Structure then Friction graphic -------------------------- */

.page--about .page-content {
  position: relative;
}

.page--about .about-poster {
  position: absolute;
  top: 24rem;
  left: calc(
    max(0px, (100vw - var(--max-width)) / 2)
    + var(--page-padding-x)
    + 48rem
	  + 4rem
  );
  width: 10rem;
}

.page--about .about-poster-graphic {
  display: block;
  width: 100%;
  height: auto;
}

.about-house {
  float: right;
  width: 15rem;
  margin: 0 0 1.5rem 2rem;
}

.about-house img {
  display: block;
  width: 100%;
  height: auto;
}

.about-house figcaption {
  margin-top: 0.5rem;
  color: var(--fg-dim);
  font-size: 0.75rem;
  line-height: 1.4;
}

.section--presence .about-entry {
  padding-top: 1rem;
}

.page--wilson .about-content a {
  display: inline-block;
  color: var(--fg);
  text-decoration: none;
  opacity: 0.85;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.08rem;
  transition: 0.2s ease-out;
}

.page--wilson .about-content a:hover {
  opacity: 1;
  border-color: var(--fg);
}

.page--wilson .about-content a:visited {
  color: var(--fg);
}

.page--wilson .corporate-work-note {
  display: block;
  margin-top: 0rem;
  color: var(--fg-dim);
  font-size: 0.8rem;
}

.page--wilson .hero-full {
  margin-bottom: var(--space-4);
}

@media (max-width: 700px) {
  .page--wilson .about-row {
    grid-template-columns: 1fr;
    row-gap: 0.75rem;
  }

  .page--wilson .about-entry {
    padding-top: 0;
  }
}