/* 

Equivalencias:

mb-0 = margin-bottom: 0
mb-1 = margin-bottom: 0.25rem
mb-2 = margin-bottom: 0.5rem
mb-3 = margin-bottom: 1rem
mb-4 = margin-bottom: 1.5rem
mb-5 = margin-bottom: 3rem

Banners responsivo con marco café

*/


.eventImage {
  border: 1px solid chocolate;
  box-shadow: 5px 5px 25px chocolate;
  margin-bottom: 1.5rem !important;
}

.eventImage--mb0 {
  margin-bottom: 0 !important;
}

.eventImage--mb1 {
  margin-bottom: 0.25rem !important;
}

.eventImage--mb2 {
  margin-bottom: 0.5rem !important;
}

.eventImage--mb3 {
  margin-bottom: 1rem !important;
}

.eventImage--mb4 {
  margin-bottom: 1.5rem !important;
}

.eventImage--mt0 {
  margin-top: 0 !important;
}

.eventImage--mt1 {
  margin-top: 0.25rem !important;
}

.eventImage--mt2 {
  margin-top: 0.5rem !important;
}

.eventImage--mt3 {
  margin-top: 1rem !important;
}

.eventImage--mt4 {
  margin-top: 1.5rem !important;
}

.eventImage--mt5 {
  margin-top: 3rem !important;
}


.eventImage--mb5 {
  margin-bottom: 3rem !important;
}

.events {
  max-width: 100%;
  margin: auto;
}

.banner-overlay {
  position: relative;
  max-width: 100%;
}

/* Texto sobre el banner  */

.banner-overlay__text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-align: center;
  padding: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
}

.banner-overlay__text h2 {
  font-size: clamp(1.5rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.banner-overlay__text p {
  font-size: clamp(0.9rem, 2vw, 1.4rem);
  margin: 0;
}