﻿.custom-width {
    max-width: 1440px !important; /* İstediğin değer */
    width: 100%; /* responsive olsun */
}
.scroll-gallery-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.scroll-gallery-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE ve Edge */
}

    .scroll-gallery-track::-webkit-scrollbar {
        display: none; /* Chrome, Safari */
    }
    .scroll-gallery-track img {
        height: 300px; /* Önceki 200px'ti */
        flex-shrink: 0;
        border-radius: 8px;
    }


