.upcoming-events {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.event {
    display: flex;
    align-items: flex-start;
    padding: 0 15px;
    border-bottom: 1px solid #efefef;
    position: relative;
    padding-bottom: 10px;
}

.event-date-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #2d5c88; /* Adjust the color to match your design */
    color: #ffffff;
    padding: 7px 0;
    border-radius: 3px;
    margin-right: 2rem;
}

.event-date-month {
    font-size: 14px;
    text-transform: uppercase;
}

.event-date-day {
    font-size: 24px;
    font-weight: bold;
    background: rgba(255, 255, 255, .1);
    padding: 0 2rem;
}

.event-details h3 {
    margin: 0;
    font-size: 18px;
}

.event-details h3 a:hover {
    color: #2d5c88;
}

.event-details h3 a {
    color: #292929;
    text-transform: uppercase;
}

.event-details p {
    margin: 0;
    font-size: 14px;
    color: #555;
}
