#base_wrap {
    background-color: #fff;
}

.nt-main {
    color: #222;
    background: #fff;
}

.nt-main * {
    box-sizing: border-box;
}

.nt-main>section {
    padding-left: clamp(20px, 5vw, 80px);
    padding-right: clamp(20px, 5vw, 80px);
}

/* =========================================================
   1. HERO  (min-height + padding, 추후 배경이미지)
   ========================================================= */
.nt-main .nt-hero {
    border-bottom: 1px solid #e6eaec;
    padding: 0;
    background: url(/static/app_www/main/img/cm08177973.jpg) no-repeat center/cover;
}

.nt-hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: clamp(300px, 38vw, 443px);
    padding-top: clamp(56px, 9vw, 90px);
    padding-bottom: clamp(56px, 9vw, 90px);
    text-align: center;
    background:
        linear-gradient(180deg, rgba(40, 50, 55, .3) 0%, rgba(40, 50, 55, 0) 60%);
}

.nt-hero__eyebrow {
    margin-bottom: 12px;
    font-size: clamp(12px, 1.6vw, 13px);
    font-weight: 600;
    letter-spacing: .12em;
    color: #fff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, .18);
}

.nt-hero__title {
    font-size: clamp(28px, 5.4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .22);
}

/* =========================================================
   2. LIST
   ========================================================= */
.nt-list {
    padding-top: clamp(40px, 6vw, 70px);
    padding-bottom: clamp(40px, 6vw, 70px);
    background: #fff;
}

.nt-count {
    margin-bottom: 16px;
    font-size: 15px;
    color: #222;
}

.nt-count b {
    font-weight: 400;
    color: #5e5e5e;
}

/* 테이블 */
.nt-table {
    width: 100%;
}

.nt-row {
    display: flex;
    align-items: center;
    min-height: 60px;
    border-bottom: 1px solid #bbb;
    color: #222;
}

/* 헤더 행 */
.nt-row--head {
    border-bottom: 2px solid #bbb;
}

.nt-row--head .nt-no,
.nt-row--head .nt-title,
.nt-row--head .nt-date {
    font-size: clamp(15px, 1.9vw, 18px);
    font-weight: 700;
    color: #5e5e5e;
}

.nt-row--head .nt-title {
    text-align: center;
}

/* 데이터 행(링크) */
a.nt-row {
    transition: background-color .12s ease;
}

a.nt-row:hover {
    background: #f8f8f8;
}

/* 셀 */
.nt-no {
    flex: 0 0 100px;
    padding: 16px 8px;
    text-align: center;
    font-size: clamp(14px, 1.7vw, 16px);
    color: #5e5e5e;
}

.nt-title {
    flex: 1 1 0;
    min-width: 0;
    padding: 16px;
    font-size: clamp(15px, 1.9vw, 18px);
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nt-date {
    flex: 0 0 130px;
    padding: 16px;
    text-align: right;
    font-size: clamp(13px, 1.7vw, 16px);
    color: #5e5e5e;
}

.nt-empty {
    padding: 60px 16px;
    text-align: center;
    font-size: 15px;
    color: #8a939b;
    border-bottom: 1px solid #bbb;
}

/* =========================================================
   3. PAGINATION
   ========================================================= */
.nt-page {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-top: clamp(36px, 6vw, 60px);
}

.nt-page__num,
.nt-page__arr {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 44px;
    /* padding: 0 12px; */
    border-radius: 10px;
    font-size: 16px;
    color: #222;
}

.nt-page__arr img {
    width: 28px;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.nt-page__num.is-active {
    background: #ebebeb;
    font-weight: 700;
}

.nt-page__num:not(.is-active):hover,
.nt-page__arr:hover {
    background: #f3f4f5;
}

.nt-page__arr i {
    font-size: 22px;
    line-height: 1;
    color: #222;
}

/* =========================================================
   반응형 - 태블릿/모바일 (≤ 640px)
   ========================================================= */
@media (max-width: 640px) {

    .nt-no {
        flex-basis: 52px;
        padding-left: 4px;
        padding-right: 4px;
    }

    .nt-title {
        padding-left: 10px;
        padding-right: 10px;
    }

    .nt-date {
        flex-basis: 96px;
        padding-left: 6px;
        padding-right: 6px;
    }

    .nt-page {
        gap: 0;
    }

    .nt-page__num,
    .nt-page__arr {
        min-width: 36px;
        height: 40px;
    }

    .nt-page__num {
        /* padding: 0 9px; */
    }

    .nt-page__arr {
        /* padding: 0 3px; */
    }

    .nt-page__arr img {
        width: 20px;
    }
}