/* Wrapper for the button group */
.event-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin: 1rem 0;
}

.event-buttons ul {
    padding: 0;
    margin: 0;
}

.event-buttons li {
    list-style: none;
}

/* Individual image links */
.event-button-link img {
    display: block;
    max-width: 325px;
    height: auto;
    border: none;
}

/* Optional hover enhancement */
.event-button-link img:hover {
    opacity: 0.8;
    transition: opacity 0.2s;
}