.main_sect:not(.main_slide) {
    padding: 70px 0;
}

.main_sect .title_area .title {
    font-size: 28px;
    font-weight: 700;
}

/* 메인 배너 */
.main_sect.main_slide .swiper-slide {
    /* aspect-ratio: 1/0.217; */
}

.main_sect.main_slide .swiper-slide img {
    display: block;
    object-fit: cover;
    object-position: center;
}

.mainSlide .swiper-pagination {
    --swiper-pagination-bottom: 50px;
}

.mainSlide .swiper-pagination-bullet {
    --swiper-pagination-bullet-horizontal-gap: 6px;
    --swiper-pagination-bullet-size: 10px;
    --swiper-pagination-bullet-inactive-color: #FFF;
    --swiper-pagination-bullet-inactive-opacity: 1;
    --swiper-pagination-color: var(--main-color);
    transition: 0.3s width;
}

.mainSlide .swiper-pagination-bullet-active {
    width: 15px;
    border-radius: 50px;
}

/* 클래스 검색, 리스트 영역 */
.class_search_sect {
    margin-bottom: 50px;
}

.class_list_sect {
    padding: 0;
    margin-bottom: 70px;
}

.class_title_area {
    margin-bottom: 32px;
}

.class_title_area .title_badge {
    margin-bottom: 8px;
    border-radius: 6px;
    padding: 2px 6px;
    font-size: 16px;
    font-weight: 600;
    width: fit-content;
}

.class_title_area .title_badge.best {
    color: var(--main-color);
    background-color: rgba(38, 118, 224, 0.14);
}

.class_title_area .title_badge.new {
    color: var(--sub-color);
    background-color: rgba(255, 153, 51, 0.14);
}

.class_title_area .title {
    margin-bottom: 6px;
    font-size: 24px;
    font-weight: 700;
    color: #222;
}

.class_title_area .sub_title {
    color: #5E5E5E;
    font-size: 16px;
}

/* 튜터 알아보기 섹션 */
.main_sect.view_tutor {
    background: linear-gradient(90deg, #EEF8FF 0%, #FFF7EE 100%);
}

.main_sect.view_tutor .view_tutor_wrap {
    display: flex;
    justify-content: space-between;
}

.main_sect.view_tutor .title_area {
    flex-shrink: 0;
}

.main_sect.view_tutor .title_area .btn_default {
    display: block;
    width: fit-content;
    margin-top: 40px;
    font-size: 18px;
    font-weight: 700;
    padding: 14px 50px;
}

.main_sect.view_tutor .banner_area {
    width: 100%;
    max-width: 710px;
    aspect-ratio: 1/0.524;
    display: flex;
    overflow: hidden;
    border-radius: 20px;
}

/* 클래스 슬라이드 */

.main_sect.bestclass .title_area {
    text-align: center;
    margin-bottom: 40px;
}

.main_sect.bestclass .title_area .title_flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.main_sect.bestclass .title_flex .icon_box {
    width: 24px;
    display: flex;
    aspect-ratio: 1/1;
}

.main_sect.bestclass .classSlide_area {
    position: relative;
    padding: 0 18px;
}

.main_sect.bestclass .btn_swiper {
    width: 36px;
    height: 36px;
    box-shadow: 0px 8.45px 8.45px 0px rgba(0, 0, 0, 0.1);
    background: url("/static/app_www/base/img/icon_arrow_circle_left_active.png") center / cover no-repeat;
    color: transparent;
    border-radius: 100px;
}

.main_sect.bestclass .swiper-button-prev {
    left: 0;
}

.main_sect.bestclass .swiper-button-next {
    right: 0;
    transform: rotate(180deg);
}

@media screen and (max-width:1023px) {
    .main_sect:not(.main_slide) {
        padding: 30px 0;
    }

    .main_sect .title_area .title {
        font-size: 20px;
    }

    .mainSlide .swiper-pagination {
        --swiper-pagination-bottom: 30px;
    }

    /* 클래스 검색, 리스트 영역 */
    .class_search_sect {
        margin-bottom: 30px;
    }

    .class_list_sect {
        margin-bottom: 30px;
    }

    .class_title_area .title_badge {
        font-size: 14px;
    }

    .class_title_area .title {
        font-size: 20px;
    }

    .class_title_area .sub_title {
        font-size: 14px;
    }

    /* 튜터 알아보기 섹션 */
    .main_sect.view_tutor .view_tutor_wrap {
        flex-wrap: wrap;
        gap: 20px;
    }

    .main_sect.view_tutor .title_area {
        width: 100%;
        text-align: center;
    }

    .main_sect.view_tutor .title_area .btn_default {
        margin: 20px auto 0;
        font-size: 16px;
        padding: 12px 30px;
    }

    /* 클래스 슬라이드 */
    .main_sect.bestclass .title_area {
        margin-bottom: 20px;
    }

    .main_sect.bestclass .title_flex .icon_box {
        width: 16px;
    }

}

@media screen and (max-width:767px) {
    .main_sect.bestclass .classSlide_area {
        padding: 0;
    }

    .main_sect.bestclass .btn_swiper {
        display: none;
    }
}