.gallery__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 40px;
}

.gallery__title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.gallery__count {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.1em;
}

.gallery__grid {
  columns: 3;
  column-gap: 14px;
}

.gallery__item {
  break-inside: avoid;
  margin-bottom: 14px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.gallery__item--visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery__item img,
.gallery__item svg {
  width: 100%;
  display: block;
  transition: transform 0.45s ease;
}

.gallery__item:hover img,
.gallery__item:hover svg {
  transform: scale(1.04);
}
