/* Estilos para la sección de eventos */
.card-header {
  padding: 0.75rem 1.25rem;
}

.card-header h5 {
  margin-bottom: 0.25rem;
}

.carousel-item img {
  border-radius: 2px;
  height: 300px !important;
  object-fit: cover;
  width: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.carousel-indicators {
  bottom: 0;
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

/* Hover effect for event cards */
.card.shadow {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card.shadow:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06) !important;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .card-header h5 {
    font-size: 1.1rem;
  }
  
  .carousel-item img {
    height: 250px !important;
  }
}

@media (max-width: 575.98px) {
  .carousel-item img {
    height: 200px !important;
  }
}
