/* Lady Learner Banner Styles */

.ll-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.ll-banner__viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 5;
    min-height: 100px;
}

.ll-banner__track {
    display: flex;
    height: 100%;
    will-change: transform;
}

.ll-banner__slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 100%;
}

.ll-banner__inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    box-sizing: border-box;
}

.ll-banner__text {
    flex: 0 0 60%;
    max-width: 60%;
}

.ll-banner__title {
    /*font-family: ReperipointSpecial;
    letter-spacing: 0.35px;
    font-size: 1.125rem;*/
    line-height: 1.3;
    margin: 0 0 8px;
    font-weight: 600;
    color: #333;}

.ll-banner__desc {
    font-size: 1rem;
    margin: 0;
    color: #777;
    white-space: normal;
}

.ll-banner__media {
    flex: 0 0 40%;
    max-width: 40%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
}

.ll-banner__img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: right center;
    display: block;
}

.ll-banner__link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.ll-banner__prev,
.ll-banner__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: transparent;
    border: none;
    width: 36px;
    height: 100px;
    border-radius: 999px;
    cursor: pointer;
    color: white;
    transition: color 0.2s ease;
}

.ll-banner__prev {
    left: 0;
}

.ll-banner__next {
    right: 0;
}

.ll-banner__prev:hover,
.ll-banner__next:hover {
    color: #bf3f36;
}


/* 하단 우측 캡슐 컨트롤 */
.ll-banner__controls {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: flex;
    align-items: center;
    padding: 2px 2px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .2);
    color: #fff;
    backdrop-filter: saturate(140%) blur(2px);
    z-index: 5;
}

.ll-banner__controls .ll-banner__prev,
.ll-banner__controls .ll-banner__next {
    all: unset;
    cursor: pointer;
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 30px;
    color: #fff;
}

.ll-banner__controls svg {
    width: 14px;
    height: 14px;
}


.ll-banner__pager {
    font-weight: 500;
    font-size: 10px;
    letter-spacing: .2px;
    cursor: pointer;
    width: 26px;
    text-align: center;
}

.ll-banner__pager .sep {
    opacity: .7;
    margin:0 2px;
}

/* 모바일에서 캡슐 조금 키우기 */
@media (max-width: 720px) {
    .ll-banner__controls {
        padding: 2px 6px;
    }

    .ll-banner__controls .ll-banner__prev,
    .ll-banner__controls .ll-banner__next {
        display: none;
    }
}

@media (min-width: 720px) {
    .ll-banner__desc {
        white-space: pre-line;
    }
}
/*
@media (max-width: 768px) {
    .ll-banner__title {
        font-size: 1rem;
        line-height: 1.3;
        margin: 0 0 8px;
        font-weight: 600;
        color: #333;
    }

    .ll-banner__desc {
        font-size: 0.8rem;
        margin: 0;
        color: #777;
    }
} */

@media (max-width: 720px) {
    .ll-banner__inner {
        padding: 0px;
    }

    .ll-banner__text {
        padding-left: 30px;
    }

    .ll-banner__prev,
    .ll-banner__next {
        display: none;
    }

    .ll-banner__title {
        font-size: 1rem;
        margin: 0 0 4px;
    }

    .ll-banner__desc {
        font-size: var(--text-tiny) !important;
        line-height: 1.35;
    }
}

@media (hover: none) and (pointer: coarse) {

    .ll-banner__prev,
    .ll-banner__next {
        display: none;
    }
}