/* 데스크탑 화면에서만 pl50 패딩 적용 */
@media (min-width: 992px) {
    /* 기본적으로 'headerWrap'을 표시 */
    /* #headerWrap, #footer, .col-md-10 h2 {
        display: block;
    }
    .notice-table {
        display: table;
    }
    #m-headerWrap, #m-footer, .m-notice-table, .m-banner {
        display: none;
    }
    .pl50 {
        padding-left: 50px;
    }
    .pt10 {
        padding-top: 10px;
    }
    .mt-5 {
        margin-top : 3rem !important;
    } */
}

/* 모바일 화면에서는 pl50 제거 */
@media (max-width: 991px) {
    /* .pl50 {
        padding-left: calc(var(--bs-gutter-x)* 0.5) !important;
    }
    .pt10 {
        padding-top: 30px;
    }
    .container {
        min-height: calc(80vh - 120px);
    }
    .mt-5 {
        margin-top : 10px !important;
    }
    #headerWrap, #footer, .notice-table, .col-md-10 h2 {
        display: none; 
    }
    #m-headerWrap, #m-footer, .m-banner {
        display: block;
    }
    .m-notice-table {
        display: table;
    } */
}