/* --- CASEFILE ADVOCATE: EVENT LIST SPACING --- */

/* 1. Increase space between individual events */
.WaGadgetUpcomingEvents .eventList .item, 
.WaGadgetEventCalendar .eventList .item {
    margin-bottom: 60px !important;    /* Adjust this number to increase/decrease space */
    padding-bottom: 0 !important;      /* Removes inner padding to keep spacing consistent */
    border-bottom: none !important;    /* Ensures no divider lines appear */
    display: block !important;         /* Ensures each event sits on its own "row" */
}

/* 2. Change the font for the entire widget */
/* Targets titles, dates, and descriptions within the Casefile structure */
.WaGadgetUpcomingEvents, 
.WaGadgetUpcomingEvents .title a, 
.WaGadgetUpcomingEvents .details,
.WaGadgetUpcomingEvents .date {
    font-family: "Open Sans", Arial, sans-serif !important; /* Replace with your desired font */
    line-height: 1.6 !important; /* Adds space between lines of text for better readability */
}

/* 3. Optional: Make the Event Title slightly larger to define the start of a new section */
.WaGadgetUpcomingEvents .title a {
    font-size: 1.3em !important;
    font-weight: bold !important;
    text-decoration: none !important;
}