.sub0401-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    position: relative;
    margin-top: -30%;
    left: 0;
    z-index: 1;
    overflow: hidden;
    padding-bottom: 5%;    
    background-color:#fbf5f1;
}

.sub0401-images {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    width: 65%;
    max-width: 980px;
    margin: 0;
    flex: 0 0 65%;
}

.sub0401-images>div {
    display: inline-flex;
    justify-content: center;
    align-items: flex-start;
}

.sub0401-single {
    width: 30%;
    display: flex;
    justify-content: center;
    margin-top: 0;
    flex: 0 0 30%;
}

.img-overlap-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -35%);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 60vw;
    max-width: 80%;
    height: auto;
    gap: 2vw;
    pointer-events: none;
}

.img-overlap {
    position: static;
    width: 33.3333%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    pointer-events: none;
}

@media (max-width: 768px) {
    .img-overlap-wrap {
        width: 90vw;
        max-width: 98vw;
        gap: 3vw;
    }
}

.sub0401-single img {
    max-width: 100%;
    height: auto;
}

.sub0401-row::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 60px;
    background: url('/assets/images/sub0401/pc/saeron_full_sign.png') repeat-x bottom left;
    z-index: 1;
    animation: scrollLeft 20s linear infinite;
}

.sub0401-100-list {
    top: 32%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    width: 55%;
    padding: 0 8px;
}

.sub0401-100-list .title {
    margin-bottom:10px;
}

.sub0401-100-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 25%;
    gap: 8px;
}

.sub0401-100-badge img {
    width: 100%;
    height: auto;
    transition: transform 0.25s ease;
}

.sub0401-100-badge:hover img:last-child {
    transform: scale(1.05);
}

@keyframes scrollLeft {
    0% {
        background-position: 0 bottom;
    }

    100% {
        background-position: -100% bottom;
    }
}
