/*
 Theme Name:   GeneratePress Child
 Template:     generatepress
 Description:  Minimal child theme enforcing Lexend typography site-wide
 Author:       Your Name
 Version:      1.0
*/

/* ===== OSEC Week View: force show events & titles, prevent clipping ===== */

/* 1) Week columns / lanes must not clip content */
.ai1ec-week-view,
.ai1ec-week-view .ai1ec-grid,
.ai1ec-week-view .ai1ec-day,
.ai1ec-week-view .ai1ec-timed-events,
.ai1ec-week-view .ai1ec-allday {
  overflow: visible !important;
  min-height: 2rem;
}

/* 2) Event blocks: override any inline hiding from JS */
.ai1ec-week-view .ai1ec-event,
.ai1ec-week-view .ai1ec-event-container {
  position: relative !important;
  z-index: 999 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* If inline styles were set, override them too */
.ai1ec-week-view .ai1ec-event[style*="display: none"] { display: block !important; }
.ai1ec-week-view .ai1ec-event[style*="visibility: hidden"] { visibility: visible !important; }
.ai1ec-week-view .ai1ec-event[style*="opacity: 0"] { opacity: 1 !important; }
.ai1ec-week-view .ai1ec-event[style*="height: 0"], 
.ai1ec-week-view .ai1ec-event[style*="height:0"] { height: auto !important; }

/* 3) Titles: ensure they render and are readable */
.ai1ec-week-view .ai1ec-event-title {
  display: inline !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
  white-space: normal !important;   /* wrap instead of disappearing */
  text-indent: 0 !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: #111 !important;           /* readable on colored backgrounds */
}

/* Some themes hide text on small screens; unhide */
.ai1ec-week-view .ai1ec-hidden-xs,
.ai1ec-week-view .ai1ec-hidden-sm {
  display: inline !important;
}

/* 4) Guard against category styles turning text transparent */
.ai1ec-week-view .ai1ec-event,
.ai1ec-week-view .ai1ec-event * {
  color: inherit !important;
}
