.events-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.event-item {
  border: 1px solid #000000;
  width: calc(33.333% - 20px);
  box-sizing: border-box;
  overflow: hidden; /* Asegura que el contenido adicional esté oculto */
}

.event-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease-in-out; /* Añade transición */
}

.event-content-wrap {
  padding: 15px;
}

.event-item:hover .event-image-wrap img {
  transform: scale(1.1); /* Escala la imagen cuando se pasa el cursor */
}

.event-title-wrap {
  margin-top: 10px;
  padding-bottom: 0px;
}

.event-title {
  font-size: 20px;
  font-weight: 700;  
  line-height: 23px;
  min-height: 80px;
}

.event-meta .fas::before{
  padding-right: 5px;
  font-size: 20px;
}

.event-schedule-warp {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 15px;
}

.event-schedule-warp .event-date {
  align-items: flex-start;  
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.05);
  display: inline-flex;
  float: none;
  font-weight: 500;
}

.event-schedule-warp .event-time {
  align-items: flex-end;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.05);
  display: inline-flex;
  float: none;
  font-weight: 500;
}

.event-location-warp {
  display: flex;
  flex-direction: row;
  font-size: 15px;
  margin: 10px 0;
}

.event-location-warp .event-location {  
  width: 100%;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.05);
}

/* Media query for responsive design */
@media (max-width: 1024px) {
  .event-item {
      flex: 1 0 calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .event-item {
      flex: 1 0 100%;
  }
}
