/* גלריה */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
}

.gallery figure {
  margin: 0;
}

/* תמונה */
.gallery img {
  width: 100%;
  height: auto;
}

