.events-upcoming {
    position: relative;
    z-index: 1;
}

.past-events-button {
    width: fit-content !important;
    position: relative;
    z-index: 1;
    height: 48px;
    display: flex;
    align-items: center;
}

.index-item {
    display: flex;
    background-color: white;
    border: 1px solid #e2e2e2;
    border-radius: 4px;
    gap: 20px;
    overflow: hidden;
    margin-top: clamp(10px, 2vw, 20px);
    margin-bottom: clamp(10px, 2vw, 20px);
}

.index-item .entry-thumbnail {
    width: 20%;
    aspect-ratio: 1 / 1;
    position: relative;
}

.index-item .entry-thumbnail a {
    height: 100%;
    width: 100%;
    display: block;
}

.index-item .entry-thumbnail img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.index-item .entry {
    padding-top: clamp(10px, 1.5vw, 20px);
    padding-bottom: clamp(10px, 1.5vw, 20px);
    width: calc(80% - 20px);
    padding-right: 20px;

}

.index-item .entry .entry-body {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 20px;
}

.index-item .entry .entry-meta {
    width: 75%;
}

.index-item .entry .entry-body .entry-excerpt {
    width: 75%;
}

.index-item .entry .entry-body .entry-controls {
    width: 25%;
}

.event-start,
.event-end,
.event-location {
    display: block;
    font-size: 14px;
}