.events-container{
    flex-wrap: nowrap;
}
.title-container{
    text-align: right;
    border-right: 1px solid var(--accent-yellow);
}

/* ipad and smaller */
@media (max-width: 768px) {
.events-container{
    flex-wrap: wrap;
}
.title-container{
    text-align: left;
    border-bottom: 1px solid var(--accent-yellow);
    border-right: none;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.line-break{
    display: none;
}
}