h3 {
    text-transform: none;
}

.events {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 0;
    padding: 0;
    gap: 30px 30px;
    max-width: 1100px;
}

.events li {
    background: #fff;
    border-radius: 7px;
}

.image-container {
    height: 175px;
    overflow: hidden;
}

.image-container img {
    border-radius: 7px;
}

.theme-name {
    margin-top: 1em;
    margin-bottom: 0;
}

.event-details {
    color: #200064;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 175px);
    padding: 0 25px 25px;
}

.tickets {
    background-repeat: no-repeat;
    background-position: left center;
    font-size: small;
    padding-left: 18px;
}

.tickets.in-person {
    background-image: url('/img/icons/in-person-event.png');
}

.tickets.in-person-workshop {
    background-image: url('/img/icons/in-person-workshop.png');
}

.tickets.in-person-online {
    background-image: url('/img/icons/in-person-and-online-event.png');
}

.tickets.online {
    background-image: url('/img/icons/online-event.png');
}

.button-link {
    display: block;
    width: 100%;
}

.last {
    margin: 0;
}



@media only screen and (max-width: 775px) {
    .events {
        display: block;
    }

    .events li {
        max-width: 346px;
        margin-bottom: 1em;
    }
}