.about-reference {
  max-width: 1280px;
  margin: 0 auto;
  padding: 97px 25px 120px;
}

.about-reference h1 {
  margin: 0 auto 50px;
  text-align: center;
  font: 700 33px/1.3 Caudex, Georgia, serif;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  display: grid !important;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.about-copy {
  grid-column: 2;
  order: initial;
  width: auto;
  min-width: 0;
  flex: none;
}

.about-copy p {
  margin: 0 0 24px;
  text-align: justify;
  font: 400 16px/1.6 "DM Sans", Arial, sans-serif;
}

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

.about-content > img {
  grid-column: 1;
  grid-row: 1;
  order: initial;
  display: block;
  width: 100% !important;
  height: auto;
  border: 1px solid var(--ink);
  transform: none;
}

@media (max-width: 760px) {
  .about-reference {
    padding: 68px 25px 85px;
  }

  .about-reference h1 {
    margin-bottom: 35px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 560px;
  }

  .about-content > img {
    grid-column: 1;
    grid-row: 1;
    width: min(100%, 420px) !important;
    justify-self: center;
  }

  .about-copy {
    grid-column: 1;
    grid-row: 2;
  }
}
