.image-container {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.event-img-fluid {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.event-img-fluid:hover {
    transform: scale(1.03);
}
