@charset "utf-8";

:root{
    --bt-bg:#f6f1e8;
    --bt-card:#fffdf9;
    --bt-line:#e8dcc9;
    --bt-text:#171410;
    --bt-sub:#7f7160;
    --bt-gold:#b68a47;
    --bt-gold-dark:#8d6930;
    --bt-shadow:0 10px 30px rgba(42,28,10,.08);
    --bt-radius:24px;
}

#bo_list.bt-review-list-wrap{
    max-width:1400px;
    margin:0 auto;
    padding:34px 20px 80px;
    color:var(--bt-text);
}

.bt-review-hero{
    margin:0 0 24px;
    padding:32px 34px;
    border:1px solid rgba(182,138,71,.18);
    border-radius:30px;
    background:
        radial-gradient(circle at top right, rgba(182,138,71,.10), transparent 28%),
        linear-gradient(180deg,#fffdf9 0%,#f8f1e7 100%);
    box-shadow:var(--bt-shadow);
}

.bt-review-hero-label{
    display:inline-block;
    margin:0 0 10px;
    padding:7px 12px;
    border-radius:999px;
    background:rgba(182,138,71,.11);
    color:var(--bt-gold-dark);
    font-size:12px;
    font-weight:800;
    letter-spacing:.08em;
}

.bt-review-hero h1{
    margin:0;
    font-size:34px;
    line-height:1.2;
    font-weight:800;
    color:#15120e;
}

.bt-review-hero p{
    margin:10px 0 0;
    font-size:15px;
    line-height:1.8;
    color:var(--bt-sub);
}

.bt-review-topbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    margin:0 0 24px;
}

.bt-review-count{
    font-size:14px;
    color:var(--bt-sub);
}

.bt-review-count strong{
    color:var(--bt-text);
    font-weight:800;
}

.bt-review-actions,
.bt-bottom-actions,
.bt-admin-buttons{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.bt-admin-row{
    margin:0 0 20px;
}

.bt-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:92px;
    height:46px;
    padding:0 18px;
    border-radius:999px;
    border:1px solid var(--bt-line);
    background:#fff;
    color:var(--bt-text);
    font-size:14px;
    font-weight:700;
    text-decoration:none;
    transition:all .2s ease;
    cursor:pointer;
    box-sizing:border-box;
}

.bt-btn:hover{
    transform:translateY(-1px);
    box-shadow:0 10px 24px rgba(120,90,30,.12);
}

.bt-btn-primary{
    border-color:#a27b3d;
    background:linear-gradient(180deg,#caa96d 0%,#b1843d 100%);
    color:#fff;
}

.bt-btn-line{
    background:#fffdfa;
    color:var(--bt-text);
}

.bt-review-grid{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:22px;
}

.bt-review-card{
    position:relative;
    overflow:hidden;
    border:1px solid var(--bt-line);
    border-radius:24px;
    background:var(--bt-card);
    box-shadow:var(--bt-shadow);
    transition:transform .2s ease, box-shadow .2s ease;
}

.bt-review-card:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 36px rgba(42,28,10,.12);
}

.bt-review-thumb-wrap{
    display:block;
    position:relative;
    width:100%;
    aspect-ratio:1 / 1;
    overflow:hidden;
    background:#f2eadf;
}

.bt-review-thumb{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .35s ease;
}

.bt-review-card:hover .bt-review-thumb{
    transform:scale(1.04);
}

.bt-review-body{
    padding:16px 16px 18px;
}

.bt-review-text{
    display:-webkit-box;
    min-height:48px;
    overflow:hidden;
    color:var(--bt-text);
    font-size:14px;
    line-height:1.7;
    font-weight:600;
    text-decoration:none;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    word-break:break-word;
}

.bt-review-text:hover{
    color:var(--bt-gold-dark);
}

.bt-review-meta{
    display:flex;
    align-items:center;
    gap:8px;
    margin-top:12px;
    color:var(--bt-sub);
    font-size:12px;
    flex-wrap:wrap;
}

.bt-review-name{
    font-weight:700;
    color:#5f5245;
}

.bt-review-dot{
    width:4px;
    height:4px;
    border-radius:50%;
    background:#c8b18a;
}

.bt-card-check{
    position:absolute;
    top:12px;
    left:12px;
    z-index:3;
    display:flex;
    align-items:center;
    justify-content:center;
}

.bt-card-check input{
    width:18px;
    height:18px;
}

.bt-board-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    margin:26px 0 0;
}

.bt-check-all-wrap{
    font-size:14px;
    color:var(--bt-sub);
}

.bt-bottom-actions{
    margin:28px 0 0;
}

.bt-search-wrap{
    margin:28px 0 0;
    padding:18px;
    border:1px solid var(--bt-line);
    border-radius:24px;
    background:#fffdf9;
    box-shadow:var(--bt-shadow);
}

.bt-search-wrap form{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}

.bt-search-wrap select,
.bt-search-input{
    height:46px;
    padding:0 14px;
    border:1px solid var(--bt-line);
    border-radius:14px;
    background:#fff;
    color:var(--bt-text);
    box-sizing:border-box;
}

.bt-search-input{
    min-width:240px;
    flex:1;
}

/* ̼ */
.pg_wrap{
    margin:34px 0 0;
    text-align:center;
}

.pg{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    flex-wrap:wrap;
}

.pg_page,
.pg_current,
.pg_start,
.pg_prev,
.pg_next,
.pg_end{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    min-width:44px;
    height:44px;
    padding:0 14px;
    border-radius:999px;
    border:1px solid var(--bt-line);
    background:#fff;
    color:var(--bt-text);
    font-size:14px;
    font-weight:700;
    text-decoration:none;
    box-sizing:border-box;
}

.pg_page:hover,
.pg_start:hover,
.pg_prev:hover,
.pg_next:hover,
.pg_end:hover{
    border-color:#c7a164;
    color:var(--bt-gold-dark);
    box-shadow:0 10px 24px rgba(120,90,30,.10);
}

.pg_current{
    border-color:#a27b3d;
    background:linear-gradient(180deg,#caa96d 0%,#b1843d 100%);
    color:#fff;
}

.bt-empty-review{
    grid-column:1 / -1;
    padding:80px 20px;
    border:1px solid var(--bt-line);
    border-radius:24px;
    background:#fffdf9;
    text-align:center;
    color:var(--bt-sub);
    font-size:15px;
}
.bt-review-seo-links{
    margin-top:40px;
    padding-top:20px;
    border-top:1px solid #eee;
}
.bt-review-seo-links a{
    display:block;
    margin:10px 0;
    font-size:15px;
    line-height:1.5;
    font-weight:800;
    color:#111;
    text-decoration:none;
}
.bt-review-seo-links a:hover{
    text-decoration:underline;
}

/* 후기 상세 첨부파일 목록 숨김 */
#bo_v_file,
.bo_v_file,
.view_file,
.file_view,
.bt-file-box,
.bt-review-file,
section:has(h3) h3 {
    display:none !important;
}
