/* Cards & Feature Modules */
.feature-card {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 1.25rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px -3px rgba(0, 0, 0, 0.1);
}

.event-date-badge {
  background: #113a7a;
  color: #ffffff;
  border-radius: 0.75rem;
}

.gallery-card {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}

.gallery-card img {
  transition: transform 0.5s ease;
}

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