/* Scoped balance pass for the About and Press / contact sections. */
.studio,
.press {
  display: grid;
  align-items: center;
}

.studio__inner,
.press__inner {
  min-height: 0;
  margin-inline: auto;
  padding-block: 3rem;
}

.studio__inner {
  width: min(calc(100% - 2rem), 68rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
}

.press__inner {
  width: min(calc(100% - 2rem), 52rem);
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}

.press__copy h1 {
  max-width: none;
  margin-inline: auto;
}

.press__copy > p:not(.heading-label) {
  max-width: 52ch;
  margin-inline: auto;
}

.press__links {
  align-items: center;
  justify-content: center;
}

.press__links .download-link {
  width: auto;
  justify-content: center;
}

.contact-block {
  width: 100%;
  margin-inline: auto;
  border-top: 1px solid rgba(11, 12, 16, 0.4);
  padding-top: 1.25rem;
  text-align: center;
}

.contact-block__email {
  justify-content: center;
  margin-inline: auto;
}

.social-links--press {
  justify-content: center;
}

@media (min-width: 44rem) {
  .studio__inner {
    width: min(calc(100% - 4rem), 68rem);
  }

  .press__inner {
    width: min(calc(100% - 4rem), 52rem);
  }
}

@media (max-width: 43.99rem) {
  .studio__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .studio__copy {
    order: 1;
    text-align: center;
  }

  .studio__art {
    order: 2;
  }

  .studio__copy > p:not(.heading-label) {
    text-align: left;
  }

  .studio__copy .inline-link {
    display: flex;
    width: max-content;
    margin-inline: auto;
    justify-content: center;
  }

  .studio__art img {
    width: min(100%, 20rem);
    max-height: none;
  }
}
