.brandstroy {
    position: relative;
    max-height: 816px;
    overflow-x: hidden;
}

.brandstroyImgListWrapper{
    padding: 40px 70px;
    display: flex;
    flex-direction: row;
    gap: 50px;

    overflow-x: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    position: relative;
}
.brandstroyImgListWrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.brandstoryImgWrapper {
    background-color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.brandstoryImg {
    max-height: 650px;
    pointer-events: none;
    -webkit-tap-highlight-color : rgba(0, 0, 0, 0);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

@media (max-width: 768px) {
    .brandstoryImg {
        max-height: 450px;
    }
}

.brandstroyBackground {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 75%;
    background-image: url('../../img/08_paper_bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
    pointer-events: none;
}

.brandstory-bottom-space {
    height: 78px;
}

.brandstroy-arrow {
    position: sticky;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    z-index: 2;
    min-width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: background 0.2s;
}
.brandstroy-arrow:hover {
    background: rgba(155, 225, 93, 1);
}
.brandstroy-arrow svg {
    width: 30px;
    height: 24px;
    fill: #333;
    transition: fill 0.2s;
}
.brandstroy-arrow:hover svg {
    fill: #fff;
}
