/* ===================================================
   먹튀검증 (blacklist) 게시판 style.css
=================================================== */
#verify_board { width: 100%; }

/* ── 상단 배너 ── */
.vf-top-banner {
    display: flex; align-items: center; justify-content: space-between;
    background: #fff; border: 1px solid #e8e8e8; border-radius: 12px;
    padding: 24px 28px; margin-bottom: 16px;
    min-height: 140px; position: relative; overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.vf-top-banner::after {
    content: ''; position: absolute; right: 0; top: 0; bottom: 0;
    width: 40%;
    background: linear-gradient(135deg, #e94560 0%, #c0392b 100%);
    clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
}
.vf-banner-left { position: relative; z-index: 1; flex: 1; }
.vf-banner-eyebrow {
    font-size: 11px; font-weight: 700; color: #e94560;
    text-transform: uppercase; letter-spacing: 1.5px; margin: 0 0 6px;
}
.vf-banner-left h1 {
    font-size: 18px; font-weight: 800; color: #111;
    margin: 0 0 6px; line-height: 1.4; letter-spacing: -.3px;
}
.vf-banner-highlight {
    display: inline-block; background: #e94560; color: #fff;
    font-size: 13px; font-weight: 800; padding: 1px 8px; border-radius: 4px; margin: 0 2px;
}
.vf-banner-sub { font-size: 12px; color: #666; margin: 0; line-height: 1.7; }
.vf-banner-right {
    position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    gap: 10px; padding-left: 20px;
}
.vf-banner-icon-main { font-size: 48px; color: rgba(255,255,255,.9); }
.vf-banner-icon-sub  { font-size: 28px; color: rgba(255,255,255,.5); position: absolute; right: 0; bottom: -4px; }

/* ── 카운트 바 ── */
.verify-count-bar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 8px 0 10px; font-size: 13px; color: #555;
    border-bottom: 2px solid #e94560; margin-bottom: 12px;
    flex-wrap: wrap; gap: 8px;
}
.verify-count-bar strong { color: #111; font-weight: 700; }
.verify-count-bar .vbar-right { display: flex; align-items: center; gap: 6px; }
.verify-write-btn {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 5px 14px; font-size: 12px; font-weight: 700;
    border-radius: 6px; border: none;
    background: #e94560; color: #fff; text-decoration: none;
    box-shadow: 0 2px 8px rgba(233,69,96,.3);
    transition: all .15s; white-space: nowrap;
}
.verify-write-btn:hover { background: #c0392b; color: #fff; }
.verify-sch-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 30px; height: 30px; border: 1px solid #ddd; border-radius: 5px;
    background: #fff; color: #555; cursor: pointer; font-size: 13px;
    text-decoration: none; transition: all .15s;
}
.verify-sch-btn:hover { background: #e94560; color: #fff; border-color: #e94560; }

/* ── 검색 폼 ── */
.verify-search-form {
    display: none;
    background: #fff; border: 1px solid #ddd; border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0,0,0,.09);
    padding: 10px 14px; margin-bottom: 12px;
    gap: 6px; align-items: center;
}
.verify-search-form.open { display: flex; }
.verify-search-form select {
    border: 1px solid #ddd; border-radius: 5px;
    padding: 0 8px; font-size: 12px; outline: none;
    background: #fafafa; height: 36px; cursor: pointer;
}
.verify-search-form input[type=text] {
    flex: 1; border: 1px solid #ddd; border-radius: 5px;
    padding: 0 10px; font-size: 12px; outline: none; height: 36px;
}
.verify-search-form input[type=text]:focus { border-color: #e94560; }
.verify-search-form button[type=submit] {
    background: #e94560; color: #fff; border: none;
    border-radius: 5px; padding: 0 16px; height: 36px;
    font-size: 13px; cursor: pointer; transition: background .15s;
}
.verify-search-form button[type=submit]:hover { background: #c0392b; }

/* ── 카드 그리드 ── */
.verify-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px; margin-bottom: 16px;
}
@media (max-width: 900px) { .verify-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .verify-grid { grid-template-columns: 1fr; } }

/* ── 카드 ── */
.verify-card {
    background: #fff; border: 1px solid #e0e0e0; border-radius: 10px;
    overflow: hidden; transition: box-shadow .2s, transform .2s;
    text-decoration: none; display: flex; flex-direction: column; color: inherit;
}
.verify-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,.13); transform: translateY(-3px);
    text-decoration: none; color: inherit;
}

/* 썸네일 */
.verify-thumb {
    position: relative; width: 100%; padding-top: 56.25%;
    overflow: hidden; background: #1a1a2e; flex-shrink: 0;
}
.verify-thumb img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; display: block; transition: transform .3s;
}
.verify-card:hover .verify-thumb img { transform: scale(1.05); }
.verify-thumb .no-img {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: rgba(255,255,255,.2); font-size: 40px;
}
.verify-date-badge {
    position: absolute; bottom: 8px; left: 8px;
    background: rgba(233,69,96,.9); color: #fff;
    font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 3px;
}
.verify-danger-badge {
    position: absolute; top: 8px; right: 8px;
    background: #111; color: #fff;
    font-size: 10px; font-weight: 800; padding: 2px 8px; border-radius: 3px;
    letter-spacing: .5px;
}

/* 정보 영역 */
.verify-info { padding: 11px 13px 8px; flex: 1; }
.verify-info-row {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 11px; padding: 4px 0; border-bottom: 1px solid #f5f5f5;
}
.verify-info-row:last-of-type { border-bottom: none; }
.verify-info-label { color: #999; font-size: 11px; flex-shrink: 0; margin-right: 8px; }
.verify-info-value {
    color: #222; font-weight: 600; font-size: 11px;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap; text-align: right; flex: 1;
}
.verify-info-value.url { color: #4466bb; }

/* 별점 */
.verify-stars { color: #f59e0b; font-size: 12px; letter-spacing: 1px; }
.verify-stars-num { color: #e94560; font-weight: 700; font-size: 12px; margin-left: 3px; }

/* 카드 푸터 */
.verify-card-footer {
    display: flex; align-items: center; padding: 7px 13px;
    border-top: 1px solid #f0f0f0; font-size: 11px; color: #bbb; gap: 8px;
}
.verify-card-footer span { display: inline-flex; align-items: center; gap: 3px; }
.verify-detail-btn {
    margin-left: auto; font-size: 11px; font-weight: 700;
    color: #e94560; text-decoration: none;
    border: 1px solid #e94560; border-radius: 4px; padding: 3px 9px;
    transition: all .15s; white-space: nowrap;
}
.verify-detail-btn:hover { background: #e94560; color: #fff; }

/* 빈 결과 */
.verify-empty {
    grid-column: 1/-1; text-align: center;
    padding: 60px 0; color: #bbb; font-size: 14px;
}
.verify-empty i { font-size: 40px; display: block; margin-bottom: 12px; }

/* ── 페이지네이션 ── */
.verify-pg-wrap { text-align: center; padding: 14px 0 6px; }
.verify-pg-wrap .pg_wrap { display: inline-block; }
.verify-pg-wrap .pg { display: inline-flex; gap: 3px; list-style: none; margin: 0; padding: 0; }
.verify-pg-wrap .pg li a,
.verify-pg-wrap .pg li strong {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 28px; height: 28px; padding: 0 6px;
    border: 1px solid #ddd; border-radius: 4px;
    font-size: 12px; color: #555; text-decoration: none;
    background: #fff; cursor: pointer;
}
.verify-pg-wrap .pg li.on a,
.verify-pg-wrap .pg li.on strong,
.verify-pg-wrap .pg_current a,
.verify-pg-wrap .pg_current strong {
    background: #e94560; color: #fff; border-color: #e94560; font-weight: 700;
}
.verify-pg-wrap .pg li a:hover { background: #e94560; color: #fff; border-color: #e94560; }

/* ── 하단 정보 섹션 ── */
.vf-info-section { margin-top: 20px; }
.vf-what-box {
    position: relative; background: #111; border-radius: 10px;
    overflow: hidden; margin-bottom: 12px; padding: 28px 32px; color: #fff;
}
.vf-tape-deco {
    position: absolute; top: 0; right: 0; width: 160px; height: 160px;
    background: repeating-linear-gradient(-45deg,
        rgba(255,220,0,.15) 0, rgba(255,220,0,.15) 12px,
        rgba(0,0,0,.06) 12px, rgba(0,0,0,.06) 24px);
    border-radius: 0 10px 0 0;
}
.vf-what-inner { position: relative; z-index: 1; }
.vf-what-title {
    font-size: 18px; font-weight: 900; color: #fff; margin: 0 0 14px; letter-spacing: -.3px;
}
.vf-what-box p {
    font-size: 12px; line-height: 2; color: rgba(255,255,255,.75); margin: 0;
}
.vf-guide-block {
    background: #fff; border-radius: 8px; overflow: hidden;
    margin-bottom: 10px; border: 1px solid #eee;
}
.vf-guide-hd {
    background: linear-gradient(90deg, #e94560 0%, #c0392b 100%);
    color: #fff; font-size: 14px; font-weight: 900;
    padding: 11px 20px; letter-spacing: -.2px;
}
.vf-guide-body { padding: 16px 20px; }
.vf-guide-body p {
    font-size: 12px; line-height: 1.9; color: #444; margin: 0 0 12px;
}
.vf-guide-body p:last-child { margin-bottom: 0; }

/* ── 반응형 ── */
@media (max-width: 1024px) {
    .vf-top-banner { padding: 22px 20px; }
}
@media (max-width: 768px) {
    .vf-top-banner { padding: 20px 16px; min-height: 110px; }
    .vf-banner-right { display: none; }
    .vf-banner-left h1 { font-size: 15px; }
    .vf-banner-eyebrow { font-size: 10px; }
}
@media (max-width: 480px) {
    .vf-top-banner { padding: 16px 12px; min-height: 90px; }
    .vf-banner-left h1 { font-size: 13px; }
}
