/* Vista Mes: mostrar nombre completo del día usando el title del <abbr> */

/* Calendario clásico (tabla) */
.tribe-events-calendar thead th abbr{
  font-size: 0; /* oculta "Lun" */
}
.tribe-events-calendar thead th abbr::after{
  content: attr(title); /* muestra "Lunes" */
  font-size: 14px;
}

/* Vista nueva (Views v2) */
.tribe-events .tribe-events-calendar-month__header-column-title abbr{
  font-size: 0;
}
.tribe-events .tribe-events-calendar-month__header-column-title abbr::after{
  content: attr(title);
  font-size: 14px;
}

/* Evita cortes */
.tribe-events-calendar thead th,
.tribe-events .tribe-events-calendar-month__header-column{
  white-space: normal;
  word-wrap:normal !important;
}

