  section.calendarAndEvents {
    display: flex;
    flex-direction: column;
}
section.calendarAndEvents li:before {
    /* Used before using dual-column Omni layout. */
    /*Reset from site global styles*/
    content: none;
}
.calendarEvents li:before, .calendarCategories li:before, .calendar li:before {
    /*Reset from site global styles*/
    content: none;
}
.calendar {
    max-width: fit-content;
    padding-inline-start: 25px;
}
.calendarMonth ol {
    padding-inline-start: 0;
}
.calendarMonth {
    padding-inline-start: 25px;
}
.calendarEvents div {
    /* `display: inline-block` causes the entire block to wrap when description is long enough. */
    /* HACK: `table-cell` does what we want, though may not be an ideal solution. */
    display: table-cell;
    vertical-align: top;
}
.calendarEvents li {
    padding-bottom: 8px;
}
.calendarEvents li.past {
    color: #999;
}
.eventDate {
    width: 40px;
}
.calendarAndEvents h3, div.calendar, .eventDetails p {
    padding: 0;
    margin: 0;
}
div.monthHead div, div.monthHead h3 {
    display: inline-block;
}
div.monthHead div, div.calendar ul, div.calendar li {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.calendarDays li.selected {
    background-color: #d2e2ff;
    border-radius: 50%;
    height: 31px;
    width: 31px;
    position: relative;
}
div.calendar ol {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}
div.calendar .day {
    padding: 4px;
}
div.calendar .day-number {
    color: #4d4d4d;
}
div.calendar .day-current {
    font-weight: bold;
}
/* For .day-today, put colored background circle around day number */
div.calendar .day-today {
    position: relative;
}
div.calendar .day-today:before {
    content: '';
    position: absolute;
    top: 1px;
    left: -2px;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background-color: #d2e2ff;
}
div.calendar .day-today .day-number {
    position: relative;
    z-index: 1;
}
/* For .day-selected, invert with colored background square around day number */
div.calendar .day-selected {
    position: relative;
}
div.calendar .day-selected .day-number {
    color: #fff;
}
div.calendar .day-selected:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0px;
    width: 25px;
    height: 25px;
    background-color: #4d4d4d;
}
div.calendar .day-selected .day-number {
    position: relative;
    z-index: 1;
}
ul.calendarCategories .selected {
    font-weight: bold;
}
