/* =========================================================================
   SINGLE EVENT — Estilos para la vista individual de un evento
   ========================================================================= */

.event-single {
  padding-top: 24px;
  padding-bottom: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Cabecera */
.event-single__head {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(240, 233, 214, 0.15);
}

.event-single__type {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 700;
  color: #2d4a3e;
  background: #d4a574;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.event-single__live {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  background: #d63638;
  padding: 6px 14px;
  border-radius: 999px;
  margin-left: 8px;
  margin-bottom: 18px;
}

.event-single__title {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #f0e9d6;
  margin: 0 0 18px;
}

.event-single__sub {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 400;
  line-height: 1.45;
  color: rgba(240, 233, 214, 0.85);
  margin: 0;
  letter-spacing: -0.005em;
}

/* Layout en dos columnas */
.event-single__body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  margin-bottom: 60px;
}

/* Columna principal */
.event-single__main {
  min-width: 0; /* evita overflow en grid */
}

.event-single__image {
  margin: 0 0 28px;
  border-radius: 8px;
  overflow: hidden;
  background: #2a4838;
}
.event-single__image img {
  width: 100%;
  height: auto;
  display: block;
}

.event-single__description {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(240, 233, 214, 0.9);
}
.event-single__description p {
  margin: 0 0 1.4em;
  letter-spacing: -0.005em;
}
.event-single__description p:last-child {
  margin-bottom: 0;
}
.event-single__description h2,
.event-single__description h3 {
  font-family: 'Archivo', sans-serif;
  color: #f0e9d6;
  margin: 1.8em 0 0.6em;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.event-single__description h2 { font-size: 24px; }
.event-single__description h3 { font-size: 19px; }
.event-single__description a {
  color: #d4a574;
  text-decoration: underline;
  text-decoration-color: rgba(212, 165, 116, 0.4);
}
.event-single__description a:hover {
  color: #e8c08e;
}
.event-single__description ul,
.event-single__description ol {
  padding-left: 24px;
  margin: 0 0 1.4em;
}
.event-single__description li {
  margin-bottom: 0.5em;
}
.event-single__description img {
  border-radius: 6px;
  margin: 1.5em 0;
}

/* Sidebar con ficha */
.event-single__sidebar {
  position: sticky;
  top: 100px;
  align-self: flex-start;
  height: fit-content;
}

.event-single__card {
  background: rgba(240, 233, 214, 0.05);
  border-radius: 12px;
  padding: 28px 24px;
  border-left: 3px solid #d4a574;
}

/* Fecha grande */
.event-single__big-date {
  text-align: center;
  padding: 12px 0 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(240, 233, 214, 0.12);
}
.event-single__big-date__day {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 72px;
  line-height: 0.9;
  color: #d4a574;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.event-single__big-date__month {
  display: block;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #f0e9d6;
  font-weight: 700;
}
.event-single__big-date__year {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(240, 233, 214, 0.55);
  margin-top: 4px;
  text-transform: uppercase;
}

/* Lista de datos */
.event-single__facts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.event-single__fact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.event-single__fact-label {
  font-size: 10.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(240, 233, 214, 0.55);
  font-weight: 600;
}

.event-single__fact-value {
  font-size: 14px;
  color: #f0e9d6;
  font-weight: 500;
  line-height: 1.4;
}

.event-single__fact-value--price {
  font-weight: 700;
  color: #d4a574;
}

/* Botón principal */
.event-single__btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
  margin-bottom: 18px;
}
.event-single__btn--primary {
  background: #d4a574;
  color: #2d4a3e;
}
.event-single__btn--primary:hover {
  background: #e8c08e;
  transform: translateY(-1px);
  color: #2d4a3e;
}

/* Compartir */
.event-single__share {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(240, 233, 214, 0.12);
}
.event-single__share-label {
  font-size: 10.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(240, 233, 214, 0.55);
  font-weight: 600;
}
.event-single__share a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(240, 233, 214, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(240, 233, 214, 0.7);
  transition: all 0.2s;
}
.event-single__share a:hover {
  border-color: #d4a574;
  color: #d4a574;
  transform: translateY(-2px);
}

/* Link de regreso */
.event-single__back {
  padding-top: 32px;
  border-top: 1px solid rgba(240, 233, 214, 0.12);
  text-align: center;
}

.event-single__back-link {
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(240, 233, 214, 0.6);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.event-single__back-link:hover {
  color: #d4a574;
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */

@media (max-width: 900px) {
  .event-single__body {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .event-single__sidebar {
    position: static;
    order: -1; /* sidebar arriba en mobile */
  }
  .event-single__big-date__day {
    font-size: 56px;
  }
}

@media (max-width: 640px) {
  .event-single {
    padding-bottom: 40px;
  }
  .event-single__head {
    margin-bottom: 24px;
    padding-bottom: 22px;
  }
  .event-single__card {
    padding: 22px 20px;
  }
  .event-single__big-date__day {
    font-size: 48px;
  }
  .event-single__description {
    font-size: 16px;
  }
}
