/* ===== Modern Gallery (Safe Override) ===== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.gallery-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform .25s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
}

.gallery-media img,
.gallery-media iframe {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border: none;
}

.gallery-card h2 {
  font-size: 16px;
  font-weight: 600;
  padding: 12px 14px;
  margin: 0;
  text-align: center;
}
