﻿.story-section {
    background-color: #12223E;
    width: 100%;
}

.story-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    padding-left: 50px;
    padding-right: 50px;
    margin-bottom: 50px;
}
    .story-container .story-label {
        color: #FFFFFF;
        font-family: gotham-narrow;
        font-size: 32px;
        font-weight: 700;
        line-height: 36px;
        letter-spacing: 0em;
        text-align: left;
        padding-top: 70px;
        padding-bottom: 30px;
    }
    .story-container .story-list {
        display: flex;
        gap: 10px;
        overflow-x: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
        .story-container .story-list::-webkit-scrollbar {
            display: none; /* Safari and Chrome */
        }
    .story-container .story-item {
        background-color: #FFFFFF;
        gap: 10px;
        border-radius: 20px;
        padding: 50px;
        width: 350px !important;
        flex: 0 0 auto;
    }
        .story-container .story-item .story-img {
            height: 50px;
            width: 50px;
            border-radius: 50%;
            margin-right: 25px;
            float: left;
        }
.story-header-container{
    margin-bottom: 25px;
}
.story-container .story-item .story-name {
    font-family: gotham-narrow;
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
    letter-spacing: 0em;
    text-align: left;
    color: #53565A;
}
.story-container .story-item .story-location {
    font-family: gotham-narrow;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 0em;
    text-align: left;
    color: #97999B;
}
.story-container .story-item .story-body {
    font-family: gotham;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: #343333;
}
            .story-container .story-item.story-long {
                width: 650px !important;
            }


@media (max-width: 767px) {
    .story-container .story-item.story-long {
        width: 350px !important;
    }

    .story-container .story-label {
        text-align: left;
    }
}