.custom-events {
    width: 100%;
}

.custom-events-header h2 {
    margin: 0 0 28px;
    font-size: 30px;
    font-weight: 400;
    color: #111;
}

.custom-events-table {
    width: 100%;
}

.custom-events-table-head {
    display: grid;
    grid-template-columns: 185px 1fr;
    padding: 17px 0;
    border-top: 1px solid #ccd2d5;
    border-bottom: 1px solid #ccd2d5;

    font-size: 16px;
    font-weight: 600;
}

.custom-event-row {
    display: grid;
    grid-template-columns: 185px 1fr;
    padding: 17px 0;
    border-bottom: 1px solid #ccd2d5;
}

.custom-event-date {
    padding-right: 30px;
    font-size: 15px;
    line-height: 1.7;
}

.custom-event-information {
    padding-right: 20px;
}

.custom-event-title {
    display: inline-block;
    margin-bottom: 4px;
    color: #3377ef;
    font-size: 16px;
    line-height: 1.5;
    text-decoration: none;
}

.custom-event-title:hover {
    text-decoration: underline;
}

.custom-event-venue {
    color: #222;
    font-size: 15px;
    font-style: italic;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .custom-events-table-head,
    .custom-event-row {
        grid-template-columns: 130px 1fr;
    }
}