.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 255px;
  padding: 0;
  background: #f7f2ea;
}

.photo-strip img {
  width: 100%;
  height: 100%;
  min-height: 255px;
  object-fit: cover;
  display: block;
}

.photo-strip img:first-child {
  object-position: center;
}

.photo-strip img:nth-child(2) {
  object-position: 45% center;
}

.photo-strip img:nth-child(3) {
  object-position: center;
}

@media (max-width: 1080px) {
  .photo-strip {
    grid-template-columns: 1fr;
  }
}
