.lc-live-section{
    position:relative;
    width:100vw;
    max-width:100vw;
    margin-left:calc(50% - 50vw);
    margin-right:calc(50% - 50vw);
    padding:72px 0 44px;
    background:#edf1f6;
    overflow:hidden;
    box-sizing:border-box;
}

.lc-live-section *{
    box-sizing:border-box;
}

.lc-live-inner{
    max-width:1280px;
    margin:0 auto;
    padding:0 18px;
}

.lc-live-head{
    margin-bottom:28px;
}

.lc-live-head h2{
    margin:0;
    font-size:35px;
    line-height:1.25;
    font-weight:800;
    color:#000;
    letter-spacing:-0.045em;
}

/* 상담 고객 수 박스 */
.lc-live-summary{
    background:#fff;
    border:1px solid #dfe6f1;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 18px 42px rgba(22, 42, 76, 0.06);
}

.lc-live-summary.lc-summary-count{
    width:100%;
    padding:10px 36px;
}

.lc-summary-count-box{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:30px;
    width:100%;
    min-height:90px;
    text-align:center;
}

.lc-count-digits{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    flex:0 0 auto;
}

.lc-count-digit{
    width:50px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#000;
    color:#fff;
    border-radius:6px;
    font-size:35px;
    line-height:1;
    font-weight:900;
    letter-spacing:-0.04em;
}

.lc-count-comma{
    display:flex;
    align-items:flex-end;
    justify-content:center;
    height:72px;
    margin:0 -4px;
    padding-bottom:0;
    color:#000;
    font-style:normal;
    font-size:56px;
    line-height:1;
    font-weight:900;
}

.lc-count-message{
    flex:0 0 auto;
    min-width:0;
    font-size:35px;
    line-height:1.2;
    font-weight:900;
    color:#000;
    letter-spacing:-0.06em;
    white-space:nowrap;
    text-align:center;
}

.lc-live-date{
    margin:18px 0 0;
    padding-left:26px;
    font-size:14px;
    line-height:1.4;
    font-weight:700;
    color:#111;
}

/* 2줄 무한 슬라이드 영역 */
.lc-live-marquee-wrap{
    width:100%;
    margin-top:34px;
    /*display:flex;*/
    display: none;
    flex-direction:column;
    gap:42px;
    overflow:hidden;
}

.lc-live-row{
    position:relative;
    width:100%;
    overflow:hidden;
}

.lc-live-track{
    display:flex;
    align-items:stretch;
    gap:34px;
    width:max-content;
    will-change:transform;
    transform:translate3d(0, 0, 0);
    backface-visibility:hidden;
}

.lc-live-row.is-animated[data-direction="left"] .lc-live-track{
    animation:lcLiveMarqueeLeft var(--lc-marquee-duration, 32s) linear infinite;
}

.lc-live-row.is-animated[data-direction="right"] .lc-live-track{
    animation:lcLiveMarqueeRight var(--lc-marquee-duration, 32s) linear infinite;
}

@keyframes lcLiveMarqueeLeft{
    0%{
        transform:translate3d(0, 0, 0);
    }
    100%{
        transform:translate3d(calc(-1 * var(--lc-loop-width, 0px)), 0, 0);
    }
}

@keyframes lcLiveMarqueeRight{
    0%{
        transform:translate3d(calc(-1 * var(--lc-loop-width, 0px)), 0, 0);
    }
    100%{
        transform:translate3d(0, 0, 0);
    }
}

/* 카드 */
.lc-live-card{
    width:500px;
    min-width:500px;
    flex:0 0 500px;
    height:148px;
    position:relative;
    text-decoration:none !important;
    color:inherit;
    cursor:default;
    pointer-events:none;
}

.lc-live-card-box{
    width:100%;
    height:100%;
    background:#fff;
    border:0;
    border-radius:12px;
    padding:14px 22px 14px 18px;
    display:grid;
    grid-template-columns:205px minmax(0, 1fr);
    align-items:center;
    column-gap:26px;
    box-shadow:none;
    overflow:hidden;
}

/* 차량 이미지 영역 */
.lc-live-card-image{
    position:relative;
    width:100%;
    height:100%;
    min-width:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
}

.lc-live-brand-logo{
    position:absolute;
    left:0;
    top:0;
    z-index:3;
    width:34px;
    height:22px;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    pointer-events:none;
}

.lc-live-brand-logo img{
    max-width:100%;
    max-height:100%;
    width:auto;
    height:auto;
    object-fit:contain;
    display:block;
}

.lc-live-card-image .lc-live-car-photo{
    max-width:205px;
    max-height:105px;
    width:auto;
    height:auto;
    object-fit:contain;
    display:block;
    position:relative;
    z-index:1;
    transform:translateY(8px);
}

.lc-live-card-noimg{
    width:100%;
    height:100%;
    background:#f6f8fc;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:700;
    color:#8da0bd;
}

/* 카드 오른쪽 정보 */
.lc-live-card-body{
    min-width:0;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    gap:8px;
    padding:2px 0 1px;
}

.lc-live-card-title-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    min-width:0;
}

.lc-live-card-title-row h3{
    margin:0;
    font-size:19px;
    line-height:1.25;
    font-weight:900;
    color:#252525;
    letter-spacing:-0.045em;
    word-break:keep-all;
    flex:1 1 auto;
    min-width:0;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.lc-live-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:47px;
    height:29px;
    padding:0 11px;
    border-radius:999px;
    font-size:12px;
    line-height:1;
    font-weight:900;
    letter-spacing:-0.035em;
    white-space:nowrap;
    flex:0 0 auto;
}

.lc-live-badge.rent,
.lc-live-badge.lease{
    background:#111;
    border:1px solid #111;
    color:#fff;
}

/* 가격 */
.lc-live-card-price-row{
    display:flex;
    align-items:baseline;
    justify-content:space-between;
    gap:12px;
    width:100%;
    min-width:0;
}

.lc-live-card-old-price{
    flex:1 1 auto;
    min-width:0;
    max-width:105px;
    font-size:15px;
    line-height:1.2;
    font-weight:800;
    color:#59616d;
    text-decoration:line-through;
    letter-spacing:-0.035em;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.lc-live-card-new-price{
    flex:0 0 auto;
    font-size:21px;
    line-height:1.1;
    font-weight:900;
    color:#12377c;
    letter-spacing:-0.055em;
    white-space:nowrap;
}

/* 맨아래: 금액절약 / 개월수 / 이름 */
.lc-live-card-saving-row{
    display:grid;
    grid-template-columns:minmax(0, 1fr) auto auto;
    align-items:center;
    column-gap:16px;
    width:100%;
    min-width:0;
}

.lc-live-card-saving-text{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:4px;
    min-width:0;
    white-space:nowrap;
}

.lc-live-card-saving-text strong{
    font-size:16px;
    line-height:1.2;
    font-weight:900;
    color:#12377c;
    letter-spacing:-0.045em;
}

.lc-live-card-saving-text span{
    font-size:16px;
    line-height:1.2;
    font-weight:900;
    color:#222;
    letter-spacing:-0.045em;
}

.lc-live-card-period{
    font-size:14px;
    line-height:1.2;
    font-weight:900;
    color:#404040;
    letter-spacing:-0.045em;
    white-space:nowrap;
}

.lc-live-card-saving-name{
    font-size:14px;
    line-height:1.2;
    font-weight:900;
    color:#5b6470;
    letter-spacing:-0.045em;
    white-space:nowrap;
}

.lc-live-empty{
    margin-top:24px;
    padding:30px 20px;
    border-radius:24px;
    background:#fff;
    border:1px solid #dfe6f1;
    text-align:center;
    font-size:15px;
    font-weight:600;
    color:#666;
}

/* 태블릿 */
@media (max-width: 1024px){
    .lc-live-section{
        padding:56px 0 42px;
    }

    .lc-live-head h2{
        font-size:30px;
    }

    .lc-live-summary.lc-summary-count{
        padding:18px 24px;
        border-radius:12px;
    }

    .lc-summary-count-box{
        min-height:70px;
        gap:22px;
    }

    .lc-count-digits{
        gap:9px;
    }

    .lc-count-digit{
        width:46px;
        height:46px;
        font-size:32px;
    }

    .lc-count-comma{
        height:62px;
        font-size:42px;
    }

    .lc-count-message{
        font-size:30px;
    }

    .lc-live-date{
        padding-left:8px;
    }

    .lc-live-marquee-wrap{
        margin-top:28px;
        gap:30px;
    }

    .lc-live-track{
        gap:24px;
    }

    .lc-live-card{
        width:440px;
        min-width:440px;
        flex-basis:440px;
        height:138px;
    }

    .lc-live-card-box{
        grid-template-columns:178px minmax(0, 1fr);
        column-gap:22px;
        padding:13px 20px 13px 16px;
    }

    .lc-live-card-image .lc-live-car-photo{
        max-width:178px;
        max-height:96px;
    }

    .lc-live-card-title-row h3{
        font-size:18px;
    }

    .lc-live-card-new-price{
        font-size:19px;
    }

    .lc-live-card-saving-row{
        column-gap:12px;
    }
}

/* 모바일 */
@media (max-width: 768px){
    .lc-live-section{
        padding:36px 0 34px;
    }

    .lc-live-inner{
        padding:0 12px;
    }

    .lc-live-head{
        margin-bottom:16px;
    }

    .lc-live-head h2{
        font-size:21px;
        line-height:1.3;
    }

    .lc-live-summary{
        border-radius:24px;
    }

    .lc-live-summary.lc-summary-count{
        padding:18px 12px 16px;
    }

    .lc-summary-count-box{
        min-height:auto;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:7px;
        text-align:center;
    }

    .lc-count-digits{
        justify-content:center;
        gap:6px;
    }

    .lc-count-digit{
        width:34px;
        height:34px;
        border-radius:5px;
        font-size:25px;
    }

    .lc-count-comma{
        height:40px;
        margin:0 -2px;
        padding-bottom:0;
        font-size:28px;
    }

    .lc-count-message{
        width:100%;
        font-size:20px;
        line-height:1.25;
        letter-spacing:-0.06em;
        white-space:normal;
    }

    .lc-live-date{
        margin-top:12px;
        font-size:13px;
        padding-left:2px;
    }

    .lc-live-marquee-wrap{
        margin-top:22px;
        gap:20px;
    }

    .lc-live-track{
        gap:14px;
    }

    .lc-live-card{
        width:330px;
        min-width:330px;
        flex-basis:330px;
        height:112px;
    }

    .lc-live-card-box{
        grid-template-columns:125px minmax(0, 1fr);
        column-gap:13px;
        padding:10px 13px 10px 12px;
    }

    .lc-live-brand-logo{
        width:28px;
        height:18px;
    }

    .lc-live-card-image .lc-live-car-photo{
        max-width:125px;
        max-height:78px;
        transform:translateY(6px);
    }

    .lc-live-card-body{
        gap:6px;
        padding:1px 0;
    }

    .lc-live-card-title-row{
        gap:8px;
    }

    .lc-live-card-title-row h3{
        font-size:15px;
    }

    .lc-live-badge{
        min-width:40px;
        height:24px;
        padding:0 8px;
        font-size:11px;
    }

    .lc-live-card-price-row{
        gap:8px;
    }

    .lc-live-card-old-price{
        max-width:72px;
        font-size:12px;
    }

    .lc-live-card-new-price{
        font-size:15px;
    }

    .lc-live-card-saving-row{
        column-gap:7px;
    }

    .lc-live-card-saving-text{
        gap:2px;
    }

    .lc-live-card-saving-text strong,
    .lc-live-card-saving-text span{
        font-size:12px;
    }

    .lc-live-card-period{
        font-size:11px;
    }

    .lc-live-card-saving-name{
        font-size:11px;
    }
}

@media (max-width: 420px){
    .lc-live-card{
        width:310px;
        min-width:310px;
        flex-basis:310px;
        height:108px;
    }

    .lc-live-card-box{
        grid-template-columns:116px minmax(0, 1fr);
        column-gap:11px;
        padding:9px 12px 9px 10px;
    }

    .lc-live-card-image .lc-live-car-photo{
        max-width:116px;
        max-height:74px;
    }

    .lc-live-card-title-row h3{
        font-size:14px;
    }

    .lc-live-badge{
        min-width:38px;
        height:23px;
        font-size:10px;
    }

    .lc-live-card-old-price{
        max-width:66px;
        font-size:11px;
    }

    .lc-live-card-new-price{
        font-size:14px;
    }

    .lc-live-card-saving-row{
        column-gap:6px;
    }

    .lc-live-card-saving-text strong,
    .lc-live-card-saving-text span{
        font-size:11px;
    }

    .lc-live-card-period,
    .lc-live-card-saving-name{
        font-size:10px;
    }
}

@media (max-width: 360px){
    .lc-count-digit{
        width:30px;
        height:30px;
        font-size:22px;
    }

    .lc-count-comma{
        height:36px;
        font-size:25px;
    }

    .lc-count-message{
        font-size:20px;
    }

    .lc-live-card{
        width:292px;
        min-width:292px;
        flex-basis:292px;
    }

    .lc-live-card-box{
        grid-template-columns:108px minmax(0, 1fr);
    }

    .lc-live-card-image .lc-live-car-photo{
        max-width:108px;
    }
}