/* ====================================================================
   evento.css - Easytour (T-EV.2, 08-jul-2026)
   Estilos de las paginas /eventos/{slug}/. TODO scopeado bajo
   body.evento-page. Usa las variables :root existentes. No altera
   header, footer ni botones globales. La tipografia se HEREDA del
   sitio (misma fuente que /transfer-monticello/) a proposito.
   ==================================================================== */

body.evento-page .evento-container {
  max-width: 760px;
}

/* Breadcrumb discreto */
body.evento-page .evento-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--gris-medio);
  margin-bottom: 18px;
}
body.evento-page .evento-breadcrumb a {
  color: var(--verde);
  font-weight: 600;
}
body.evento-page .evento-breadcrumb a:hover {
  color: var(--verde-oscuro);
}
body.evento-page .evento-breadcrumb-actual {
  color: var(--gris-medio);
}

/* Cabecera */
body.evento-page .evento-h1 {
  line-height: 1.15;
  margin-bottom: 10px;
}
body.evento-page .evento-fecha {
  font-weight: 700;
  color: var(--verde);
  margin-bottom: 22px;
}

/* Foto del artista: responsiva, redondeada como las fotos de la cartelera */
body.evento-page .evento-foto {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radio-lg);
  box-shadow: var(--sombra-card);
  background: #eef0ee;
  margin-bottom: 32px;
}

/* Secciones */
body.evento-page .evento-bloque {
  margin-bottom: 32px;
}
body.evento-page .evento-bloque h2 {
  margin-bottom: 14px;
}

/* Datos del traslado */
body.evento-page .evento-datos {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  line-height: 1.7;
}
body.evento-page .evento-datos li {
  padding: 9px 0;
  border-bottom: 1px solid var(--gris-borde);
}
body.evento-page .evento-datos li:last-child {
  border-bottom: none;
}

body.evento-page .evento-cta {
  margin-top: 8px;
}
body.evento-page .evento-agotado-box {
  margin-top: 10px;
}

body.evento-page .evento-ticket {
  margin-top: 16px;
}
body.evento-page .evento-ticket a {
  color: var(--verde);
  font-weight: 600;
  text-decoration: underline;
}

/* Enlace reciproco al hub */
body.evento-page .evento-volver {
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--gris-borde);
}
body.evento-page .evento-volver a {
  color: var(--verde);
  font-weight: 700;
}
