.gallery-img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  display: block;
  break-inside: avoid;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 18px rgba(255, 140, 0, 0.3);
}

@media (max-width: 768px) {
  #gallery-feed {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 0 1rem;
    gap: 1.25rem;
  }

  #gallery-feed img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 0.75rem;
    display: block;
  }
}
