/* 工程案例詳細頁共用樣式 */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.gallery a {
  overflow: hidden;
}

.gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}

@media (max-width: 780px) {
  .gallery img {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery img {
    height: 260px;
  }
}
