.mt-home-photos {
  padding: 28px 0 20px;
  background: #fbfaf6;
}

.mt-home-photos__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.mt-home-photos__item {
  min-width: 0;
  margin: 0;
}

.mt-home-photos__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border-radius: var(--mt-radius-md);
  object-fit: cover;
  object-position: var(--mt-photo-position, 50% 50%);
  background: var(--mt-green-100);
}

.mt-home-photos__item figcaption {
  padding-top: 10px;
  color: var(--mt-green-950);
  font-size: .9rem;
  font-style: normal;
  font-weight: 650;
  line-height: 1.4;
}

.mt-home-photos .mt-home-photos__credit {
  margin: 12px 0 0;
  color: var(--mt-muted);
  font-size: .7rem;
  text-align: right;
}

@media (max-width: 700px) {
  .mt-home-photos { padding-top: 20px; }
  .mt-home-photos__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
  }
  .mt-home-photos__item:first-child { grid-column: 1 / -1; }
  .mt-home-photos__image { aspect-ratio: 1; }
  .mt-home-photos__item:first-child .mt-home-photos__image { aspect-ratio: 16 / 9; }
  .mt-home-photos__item figcaption { font-size: .8rem; }
}
