.ist_wrap {
    width: 100%;
    height: 100%;
}

.ist_inner {
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
}

.fb_image {
    width: 40%;
    height: 100%;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
    border: 5px dashed #00bfff;
    border-radius: 10px;
}

.fb_img {
    width: 70%;
    height: auto;
    box-sizing: border-box;
    object-fit: cover;
    border-radius: 10px;
}

.ist_right {
    /* flex: 1; */
    width: 60%;
    height: 100%;
    overflow: hidden;
    border: 3px dashed #eeaaee;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ist_cap {
    height: 100%;
    overflow-y: auto;
    text-align: left;
    padding-left: 10px;
    font-size: 16px;
    direction: ltr;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1280px) {

    .ist_cap {
        font-size: 12px;
    }
}


/* 스크롤바 스타일 */
.ist_cap::-webkit-scrollbar {
    width: 12px;
    /* 스크롤바 너비 */
}

.ist_cap::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #eeaaee, #00bfff);
    /* 그라데이션 색상 */
    border-radius: 10px;
    /* 둥근 모서리 */
}

.ist_cap::-webkit-scrollbar-track {
    background: #b5e0be;
    /* 스크롤바 트랙 배경 */
    border-radius: 10px;
}