/* instagram */
.offshotGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
}
.offshotGrid a {
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 0;
}
.offshotGrid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
