/* =========================
   Extra Curricular Activities Gallery
========================= */

.gallery-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 20px;
  text-align: center;
  background: #fff;
  transition: transform 0.2s;
}

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

.gallery-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 10px;
}

.btn-group {
  display: flex;
  justify-content: center;
  gap: 5px;
}