.about-photos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  margin-top: 34px;
}

.about-photos figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #000;
}

.about-photos img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

@media (max-width: 700px) {
  .about-photos {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-photos img {
    aspect-ratio: 16 / 10;
  }
}

.contact-form-status {
  min-height: 1.6em;
  margin: 14px 0 0;
  color: #fff;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: .65;
}