/* =========================
   FIX AVADA (SOLO EN CONCIERTOS)
========================= */

.cc-concierto .fusion-modal-text-link,
.cc-single-concierto .fusion-modal-text-link {
  display: none !important;
}

.cc-concierto .fusion-column-has-shadow,
.cc-single-concierto .fusion-column-has-shadow {
  box-shadow: none !important;
}

/* =========================
   LISTADO CONCIERTOS
========================= */

.cc-concierto {
  border-bottom: 1px solid #eee;
}

.cc-concierto:last-child {
  border-bottom: none;
}

/* Layout principal */
.cc-link {
  display: grid;
  grid-template-columns: 70px 1fr 120px;
  align-items: center;

  padding: 16px 10px;
  gap: 20px;

  text-decoration: none;
  color: inherit;

  transition: background 0.2s ease;
}

.cc-link:hover {
  background: rgba(0,0,0,0.03);
}

/* =========================
   FECHA EN RECUADRO
========================= */

.cc-fecha {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;

  width: 64px;
  height: 64px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  line-height: 1;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

/* Mes */
.cc-mes {
  font-size: 11px;
  text-transform: uppercase;
  color: #888;
}

/* Día */
.cc-dia {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-top: 2px;
}

/* =========================
   INFO (CENTRO)
========================= */

.cc-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Línea superior */
.cc-top {
  font-size: 13px;
  color: #666;
}

.cc-sep {
  margin: 0 6px;
}

/* Nombre banda */
.cc-banda {
  font-size: 16px;
  font-weight: 600;
  margin-top: 4px;
  color: #111;
}

/* =========================
   CTA COMO BOTÓN
========================= */

.cc-cta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.cc-btn {
  background: #92c4d5;
  color: #fff;

  padding: 8px 16px;
  border-radius: 999px;

  font-size: 13px;
  font-weight: 600;

  display: inline-flex;
  align-items: center;

  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.cc-link:hover .cc-btn {
  background: #7fb3c5;
  transform: translateY(-1px);
}

.cc-arrow {
  margin-left: 6px;
  font-size: 16px;
  color: #fff;
}

/* =========================
   FICHA CONCIERTO (SINGLE)
========================= */

.cc-single-concierto h1 {
  font-size: 34px !important;
  line-height: 1.2 !important;
  margin-bottom: 10px;
}

/* Caja info */
.cc-evento-meta {
  margin: 24px 0;
  padding: 16px 18px;
  background: #f8f9fa;
  border: 1px solid #eee;
  border-radius: 8px;
}

/* Fecha */
.cc-evento-fecha {
  font-size: 22px;
  font-weight: 600;
  color: #111;
  line-height: 1.3;
}

/* Hora y lugar */
.cc-evento-hora,
.cc-evento-lugar {
  font-size: 16px;
  color: #555;
  margin-top: 6px;
}

/* Observaciones */
.cc-evento-observaciones {
  margin-top: 10px;
  font-size: 14px;
  color: #444;
}

/* Cartel */
.cc-cartel {
  margin-top: 20px;
}

.cc-cartel img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* =========================
   PAGINACIÓN
========================= */

.cc-pagination {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.cc-pagination a,
.cc-pagination span {
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  color: #111;
  border: 1px solid #e5e5e5;
}

.cc-pagination a:hover {
  background: #92c4d5;
  color: #fff;
  border-color: #92c4d5;
}

.cc-pagination .current {
  background: #92c4d5;
  color: #fff;
  border-color: #92c4d5;
}

/* =========================
   LOGIN
========================= */

.cc-login-required {
  padding: 20px;
  background: #f8f9fa;
  border: 1px solid #eee;
  border-radius: 8px;
  text-align: center;
}

.cc-btn-login {
  display: inline-block;
  margin-top: 10px;
  background: #92c4d5;
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
}

/* =========================
   EMPTY STATE
========================= */

.cc-empty {
  text-align: center;
  padding: 40px 20px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 600px) {

  .cc-link {
    grid-template-columns: 60px 1fr;
    gap: 12px;
    padding: 14px 8px;
  }

  .cc-cta {
    display: none;
  }

  .cc-fecha {
    width: 56px;
    height: 56px;
  }

  .cc-dia {
    font-size: 20px;
  }

  .cc-banda {
    font-size: 15px;
  }

}