.gallery {
  padding: 96px 12px;
  margin: 0;
  background: var(--color-gray-50);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 340px 340px;
  gap: 12px;
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  background: var(--color-gray-200);
  cursor: pointer;
}
.gallery__item:first-child {
  grid-column: span 2;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}
.gallery__item:hover img {
  filter: saturate(1.1);
}
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery__item:hover::after {
  opacity: 1;
}
@media (max-width: 768px) {
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery__item:first-child {
    grid-column: span 2;
    height: 220px;
  }
  .gallery__item {
    height: 160px;
  }
}
