@charset "UTF-8";

@media screen and (max-width: 768px) {

    /* *******************************************************************
        공통
    ******************************************************************* */
    #contents {
        padding: 0 0 80px;
    }
    #contents .article {
        padding: 44px 0 0;
    }

    /* *******************************************************************
        전체강의
    ******************************************************************* */
    /*키워드 리스트*/
    .inner-wrap .keyword-area ul {
        flex-flow: row wrap;
        justify-content: center;
    }
    .inner-wrap .keyword-area ul li a {
        padding: 8px 16px 6px;
        line-height: 1.3;
        font-size: 14px;
    }

    /*강의 리스트*/
    .lecture-list-area {
        display: flex;
        flex-flow: row wrap;
        gap: 24px 4%;
        padding: 0 0 44px;
    }
    .lecture-list-area li {
        width: 48%;
    }


    /* *******************************************************************
        전체강의 > 강의 세부 페이지 (재생페이지)
    ******************************************************************* */
    #contents .article.vimeo-iframe-area {
        flex-grow: unset;
        padding: 0;
    }
    #contents .article.vimeo-iframe-area .inner-wrap {
        padding: 0;
    }

    /* 비메오 영상 */
    .view-area {
        width: 100%;
        height: 300px;
        border-radius: 0;
        background-color: #000;
    }

    /* 하단의 강의 정보 */
    .view-bottom-area {
        display: flex;
        flex-flow: column nowrap;
        justify-content: flex-start;
        gap: 60px;
        padding-top: 24px;
    }

    /* 왼쪽 */
    .view-info {
        order: 1;
        gap: 10px;
        width: 100%;
        padding: 0 16px;
    }
    .view-info .title-area {
        display: flex;
        flex-flow: column nowrap;
        justify-content: flex-start;
        gap: 16px;
        margin: 0 0 24px;
        align-items: center;
    }
    .view-info .keyword {
        text-align: center;
    }
    .view-info .title-area .title {
        line-height: 1.4;
        margin: 0 0 16px;
        text-align: center;
        font-size: 24px;
    }
    .view-info .title-area .icon-area {
        justify-content: center;
        gap: 16px;
    }
    .view-info .title-area .icon-area a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        border-radius: 40px;
        background-color: #eee;
    }
    .view-info .title-area .icon-area .feather {
        width: 16px;
    }

    .view-info .profile-area {
        justify-content: center;
        gap: 12px;
    }
    .view-tab-area .nav-tabs.nav-justified {
        display: flex;
        flex-flow: row nowrap;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .view-tab-area .nav-tabs.nav-justified > li {
        width: 30%;
    }
    .view-tab-area .nav-tabs.nav-justified > li a {
        margin: 0;
    }

    /* 오른쪽 */
    .view-price {
        display: flex;
        flex-flow: column nowrap;
        width: calc(100% - 32px);
        height: auto;
        margin: 0 16px;
    }
    .view-price .top-area {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 20px;
    }
    .view-price .price {
        justify-content: space-between;
        font-size: 21px;
    }
    .view-price .price .discount {
        color: #FF3636;
    }
    .view-price .price .price-detail {
        gap: 16px;
    }
    .view-price .price .cost {
        font-size: 16px;
    }
    .view-price .btn-area a {
        padding: 10px 12px 7px;
        font-size: 18px;
    }
    /* 하단 탭 버튼 */
    .tab-custom .tab-bg .tab-area .button-tab li a {
        font-size: 15px;
    }
    /* 하단 강의 정보 */
    .sub-info {
        justify-content: center;
        gap: 16px;
        padding: 20px;
    }
    .sub-info svg {
        width: 20px;
    }
    .sub-info p {
        font-size: 15px;
    }
    .view-tab-area .table-responsive table.grid tr td {
        font-size: 14px;
    }
    .view-tab-area .table-responsive table.grid tr td > svg {
        width: 15px;
    }
    /*미리보기라벨*/
    .article .section .preview-label p {
        font-size: 15px;
        padding: 6px 23px;
    }
    .view-tab-area .table-responsive table.grid tr td:first-child span {
        width: 280px;
    }

}

@media screen and (max-width: 480px) {

    /*강의 리스트*/
    .lecture-list-area {
        display: flex;
        flex-flow: column nowrap;
        gap: 16px 0%;

    }
    .lecture-list-area li {
        width: 100%;
    }

    /* 하단 강의 정보 */
    .sub-info {
        gap: 12px;
        padding: 16px;
    }
    .sub-info div .feather {
        width: 16px;
    }
    .sub-info div span {
        font-size: 12px;
    }
    .sub-info div.divline {
        width: 1px;
        height: 15px;
        background-color: #dfdfdf;
    }

}

@media screen and (max-width: 360px) {

    /* 하단 강의 정보 */
    .sub-info {
        flex-flow: column nowrap;
        justify-content: center;
        align-items: center;
    }
    .sub-info div.divline {
        display: none;
    }

}


