.story-container {
    padding: 0 20px;
    overflow: hidden;
}

.story-content-header {
    color: var(--Label-Primary, #000);
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    /* 150% */
    letter-spacing: -0.6px;
    text-align: center;
}


.story-content-1-img {
    width: 100%;
    height: 300px;
    /* membership-content-1의 높이를 고정 */
    overflow: hidden;
    position: relative;
    background: url('/img/new/story_1.jpg') no-repeat center center;
    background-size: cover;
    border-radius: 50px;
}

@media (min-width: 459px) {
    .story-content-1-img {
        height: auto;
        /* 고정 높이 제거 */
        aspect-ratio: 3 / 2;
        /* 원본 비율 유지 */
    }
}

.story-content-2-img {
    width: 100%;
    height: auto;
    min-height: 300px;
    /* membership-content-1의 높이를 고정 */
    overflow: hidden;
    position: relative;
    background: url('/img/new/story_2.jpg') no-repeat center center;
    background-size: cover;
    border-radius: 50px;
    aspect-ratio: 1 / 1;
    background-position: calc(-28px) calc(-166px);
    background-size: calc(100% + 28px + 10px) calc(100% + 166px + 71px);
}

@media (min-height: 537px) {
    .story-content-3-img {
        height: auto;
        aspect-ratio: 358.00 / 537.13;
    }
}

.story-content-3-img {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    background: url('/img/new/story_3.jpg') no-repeat center center;
    background-size: cover;
    border-radius: 50px;
    aspect-ratio: 4 / 5;
    background-position: calc(-86px) calc(-187px);
    background-size: calc(100% + 86px + 549px) calc(100% + 187px + 50px);
}

.story-content-4-img {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    background: url('/img/new/story_4.jpg') no-repeat center center;
    background-size: cover;
    border-radius: 50px;
    aspect-ratio: 320 / 300;
}

@media (max-height: 636px) {
    .story-content-3-img {
        width: 100%;
        height: width * 1.25;
        aspect-ratio: 955.50/636.84;
        /* height: auto; */
    }
}

.story-content-text {
    color: var(--Label-Primary, #000);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    /* 150% */
    letter-spacing: -0.4px;
}

.story-content-text2 {
    color: var(--Label-Secondary, #5A5C63);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
    letter-spacing: -0.35px;
}

.story-content-text3 {
    color: var(--Label-Secondary, #000);
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    /* 142.857% */
    letter-spacing: -0.45px;
}