/* Solo aplicar a páginas individuales de eventos */
body.single-event .evento-detalle {
  max-width: 1000px;
  margin: auto;
  padding: 2rem;
}

body.single-event .evento-titulo {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 2rem;
}

body.single-event .evento-contenido {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

body.single-event .evento-imagen {
  flex: 1 1 40%;
  max-width: 400px;
}

body.single-event .evento-imagen img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

body.single-event .evento-info {
  flex: 1 1 55%;
}

body.single-event .evento-info > div {
  margin-bottom: 1.5rem;
}

body.single-event .evento-info h3 {
  margin-bottom: 0.5rem;
  color: #333;
  border-bottom: 2px solid #ccc;
  padding-bottom: 0.2rem;
}

body.single-event .espacio-titulo {
  height: 30px;
}

/* Ocultamientos de elementos automáticos no deseados */
body.single-event h1.blog-post_title,
body.single-event .meta-wrapper,
body.single-event .page-header.page-header_align_center,
body.single-event .blog-post_media_part {
  display: none !important;
}

.eventos-swiper {
  padding: 40px 0;
}
.swiper-slide {
  width: auto;
  max-width: 280px;
}
.event-card {
  display: block;
  background: #2c2c2c;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}
.event-card:hover {
  transform: scale(1.05);
}
.event-image {
  height: 300px;
  background-size: cover;
  background-position: center;
}
.event-info {
  padding: 15px;
  text-align: left;
}
.event-title {
  font-size: 18px;
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
}
.event-time,
.event-date,
.event-location {
  font-size: 14px;
  color: #00aa55;
  margin-bottom: 5px;
}
.swiper-button-prev,
.swiper-button-next {
  color: white;
}
.swiper-pagination-bullet {
  background: white;
}
