.event-thumb {
    width: 100%;
    max-width: 370px;
    height: 260px;
    margin: 0 auto;
    border-radius: 6px 6px 0 0;
    overflow: hidden;
    background: #eee;
}

.event-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event-thumb:hover img {
    transform: scale(1.05);
}
