/*
기본 CSS를 작성합니다
기본으로 작성되는 CSS는 1199px보다 큰 화면에서 작동 됩니다.
*/


section {
    width: 100%;
    margin: 0 auto;
}

.hero-section {
    width: 100%;
    max-width: 98rem;
    height: 15rem;
    margin: 8rem auto 0;
    transition: all 0.3s ease;
}

.hero-content {
    width: 100%;
    height: 100%;
    padding: 3rem 5rem;
}

.title-wrapper {
    width: 100%;
    text-align: center;
    padding: 0 3rem;
    margin: 1rem 0;
}

.breadcrumb li, .breadcrumb li a {
    font-family: "Noto Sans KR", sans-serif;
    color: #999;
    white-space: nowrap;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #999;
}

.breadcrumb-item.active, .breadcrumb-item.active a {
    color: var(--brand-color);
}

.title-wrapper span {
    font-family: "Noto Sans KR", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-color);
}

.board-section {
    width: 100%;
    max-width: 98rem;
    min-height: 40rem;
    transition: all 0.3s ease;
}

.board-content {
    width: 100%;
    height: 100%;
    min-height: 40rem;
    text-align: center;
    padding: 1rem 8rem;
}

.table-wrapper {
    width: 100%;
    height: 100%;
    min-height: 30rem;
    max-width: 56.25rem;
    margin: auto;
}

.table {
    width: 100%;
}

.table th {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: var(--brand-color);
    color: white;
}

.table td, .table a {
    font-family: 'Noto Sans KR', sans-serif;
}


 .page-link {
     color: var(--brand-color) !important;
 }

.active > .page-link {
    color: white !important;
    background-color: var(--brand-color) !important;
    border-color: var(--brand-color) !important;
}



/*테스크탑 (가로 해상도가 1200px 보다 작은 화면에 적용)*/
@media (max-width: 1199px) {
    .hero-section {
        height: 10rem;
    }

    .hero-content {
        padding: 1rem;
    }


}

/*태블릿 디바이스 (가로 해상도가 992px 보다 작은 화면에 적용)*/
@media (max-width: 991px) {



    .board-content {
        padding: 1rem 2rem;
    }
}

/*가로모드 모바일 디바이스 (가로 해상도가 768px 보다 작은 화면에 적용)*/
@media (max-width: 767px) {

    .table tr th:first-child,
    .table tr td:first-child,
    .table tr th:nth-child(3),
    .table tr td:nth-child(3){
     display: none;
    }

}

/*세로모드 모바일 디바이스 (가로 해상도가 576px 보다 작은 화면에 적용)*/
@media (max-width: 575px) {

    .hero-section {
        height: 8rem;
        margin-top: 6rem;
    }

    .title-wrapper {
        padding: 0;
        margin: 0 auto;
    }

    .board-content {
        padding: 1rem .5rem;
    }

    .table td, .table a {
        font-size: .9rem;
    }

}

