.photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, 137px);
  gap: calc(var(--grid-gap) / 1.6);
}

@media screen and (max-width: 326px) {
  .photos__item:nth-child(n+2) {
    display: none;
  }
}

@media screen and (max-width: 483px) {
  .photos__item:nth-child(n+3) {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .photos__item:nth-child(n+4) {
    display: none;
  }
}

@media screen and (max-width: 797px) {
  .photos__item:nth-child(n+5) {
    display: none;
  }
}

@media screen and (max-width: 954px) {
  .photos__item:nth-child(n+6) {
    display: none;
  }
}

@media screen and (max-width: 1111px) {
  .photos__item:nth-child(n+7) {
    display: none;
  }
}
