.events-section {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    padding: 0;
}

.event-row {
    min-height: 100vh;
    display: flex;
    flex-wrap: nowrap;
}

.text-column,
.image-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 40px 20px 40px 40px;
}
.event-image {
    max-height: 300px;
    object-fit: cover;
    width: 100%;
    border-radius: 16px;
}

.gallery-scroll-wrapper {
    flex: 1;
    max-height: 100vh;
    overflow-y: auto;
    padding-right: 20px;
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
    scroll-behavior: smooth;
}

.gallery-scroll-wrapper::-webkit-scrollbar {
    width: 6px;
}
.gallery-scroll-wrapper::-webkit-scrollbar-thumb {
    background-color: #aaa;
    border-radius: 10px;
}
@media (max-width: 767px) {
    .text-column,
    .image-column {
        padding: 20px;
    }
    .gallery-scroll-wrapper {
        padding-right: 0;
    }
    .event-row {
        flex-wrap: wrap;
    }
}
