Suppose you need to change Event Name sizing/color on this position
You can use this code to Custom CSS box
/* Event size color */
.item-pagination[data-collection-type^="events"] .item-pagination-title {
color: #f1f;
font-size: 30px;
}
/* Event Size on MOBILE */
@media screen and (max-width:767px) {
.item-pagination[data-collection-type^="events"] .item-pagination-title {
font-size: 16px;
}
}