/* 공식보증업체 스킨 style.css - 반응형 전용 */
/* PC / 태블릿 / 모바일 완전 대응 */

/* ── verified 보드 전용 레이아웃 ── */
/* 사이드바는 항상 유지 (기존 참고 사이트 동일) */

/* ─── 전체 래퍼 ─── */
#verified-wrap {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* ─── 상단 배너 (기존 참고 사이트 스타일) ─── */
.vf-top-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(120deg, #8b0000 0%, #c0392b 45%, #e74c3c 100%);
    border-radius: 10px;
    padding: 24px 28px;
    margin-bottom: 16px;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 140px;
}
.vf-top-banner::before {
    content: '';
    position: absolute;
    right: -20px; top: -30px;
    width: 280px; height: 280px;
    background: rgba(0,0,0,.12);
    border-radius: 50%;
}
.vf-top-banner::after {
    content: '';
    position: absolute;
    right: 60px; bottom: -60px;
    width: 180px; height: 180px;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
}
.vf-banner-sub  { font-size: 12px; color: rgba(255,255,255,.75); margin: 0 0 5px; letter-spacing: .3px; }
.vf-top-banner h1,
.vf-top-banner h2 { font-size: 18px; font-weight: 800; color: #fff; margin: 0 0 6px; letter-spacing: -1px; text-shadow: 0 2px 8px rgba(0,0,0,.3); }
.vf-banner-desc { font-size: 12px; color: rgba(255,255,255,.85); margin: 0; }
.vf-banner-badge {
    display: inline-block;
    background: #f59e0b;
    color: #7c3900;
    font-size: 11px;
    font-weight: 900;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 10px;
    letter-spacing: .3px;
}
.vf-banner-trophy {
    font-size: 52px;
    color: #f59e0b;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,.4));
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

/* ─── 검색 바 ─── */
.vf-search-row {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    align-items: center;
}
.vf-cat-select {
    border: 1px solid #dde; border-radius: 6px;
    padding: 10px 12px; font-size: 13px;
    background: #fff; color: #333;
    min-width: 90px; cursor: pointer;
}
.vf-search-input {
    flex: 1; border: 1px solid #dde; border-radius: 6px;
    padding: 10px 14px; font-size: 13px;
    outline: none; transition: border-color .2s;
}
.vf-search-input:focus { border-color: #e63946; }
.vf-search-btn {
    background: #e63946; color: #fff; border: none;
    border-radius: 6px; padding: 10px 20px;
    font-size: 15px; cursor: pointer; transition: background .2s;
}
.vf-search-btn:hover { background: #c0392b; }

/* ─── 태그 필터 ─── */
.vf-tag-filter { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.vf-tag {
    display: inline-block; padding: 5px 14px;
    border-radius: 20px; border: 1px solid #dde;
    font-size: 12px; color: #555;
    text-decoration: none; transition: all .2s; background: #fff;
}
.vf-tag:hover, .vf-tag.active { background: #e63946; color: #fff; border-color: #e63946; }

/* ─── 목록 헤더 ─── */
.vf-list-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 0; margin-bottom: 14px;
    border-bottom: 2px solid #1a1a2e;
    font-size: 13px; color: #555;
}
.vf-total-count strong { color: #e63946; }
.vf-sca-label { background: #e63946; color: #fff; border-radius: 3px; padding: 2px 8px; font-size: 12px; }
.vf-write-btn {
    display: inline-flex; align-items: center; gap: 5px;
    background: #1a1a2e; color: #fff !important;
    border-radius: 5px; padding: 7px 14px;
    font-size: 12px; font-weight: 700;
    text-decoration: none; transition: background .2s;
}
.vf-write-btn:hover { background: #e63946; color: #fff !important; }

/* ─── 카드 그리드 (반응형, 기존 참고 사이트 3열) ─── */
.vf-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}
.vf-empty {
    grid-column: 1 / -1; text-align: center;
    padding: 60px 20px; color: #bbb; font-size: 15px;
}
.vf-empty i { font-size: 48px; display: block; margin-bottom: 14px; }

/* ─── 개별 카드 ─── */
.vf-card {
    background: #fff; border-radius: 12px;
    border: 1px solid #e8e8e8; overflow: hidden;
    transition: box-shadow .25s, transform .25s;
    display: flex; flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.vf-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,.14);
    transform: translateY(-4px);
}
.vf-card.is-notice { border-color: #e63946; border-width: 2px; }

/* ─── 카드 이미지 (4:3 반응형) ─── */
.vf-card-img-wrap {
    position: relative; display: block;
    overflow: hidden; aspect-ratio: 4 / 3;
    background: #1a1a2e;
}
.vf-card-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; transition: transform .35s ease;
}
.vf-card:hover .vf-card-img { transform: scale(1.06); }
.vf-card-img-placeholder {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    background: linear-gradient(145deg, #1a1a2e 0%, #0f3460 100%);
    color: rgba(255,255,255,.45); gap: 8px; font-size: 12px;
}
.vf-card-img-placeholder i { font-size: 44px; color: rgba(255,255,255,.25); }

/* ─── 배지 ─── */
.vf-badge-hot {
    position: absolute; top: 8px; right: 8px;
    background: #e63946; color: #fff;
    font-size: 11px; font-weight: 900;
    padding: 3px 8px; border-radius: 4px; letter-spacing: .5px;
}
.vf-badge-new {
    position: absolute; top: 8px; left: 8px;
    background: #2196f3; color: #fff;
    font-size: 11px; font-weight: 700;
    padding: 3px 8px; border-radius: 4px;
}
.vf-badge-notice {
    position: absolute; bottom: 8px; left: 8px;
    background: #f59e0b; color: #fff;
    font-size: 11px; font-weight: 700;
    padding: 3px 8px; border-radius: 4px;
}

/* ─── 카드 본문 ─── */
.vf-card-body {
    padding: 10px 12px; flex: 1;
    border-bottom: 1px solid #f2f2f2;
}
.vf-card-meta {
    display: flex; align-items: center;
    gap: 6px; font-size: 12px; margin-bottom: 5px;
}
.vf-card-meta:last-child { margin-bottom: 0; }
.vf-meta-label {
    background: #f0f0f0; color: #666; border-radius: 3px;
    padding: 2px 7px; font-size: 11px;
    flex-shrink: 0; white-space: nowrap;
}
.vf-meta-value {
    color: #222; font-weight: 700;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.vf-meta-value.code { color: #e63946; font-family: monospace; letter-spacing: .5px; }

/* ─── 카드 버튼 ─── */
.vf-card-btns { display: flex; }
.vf-btn {
    flex: 1; text-align: center;
    padding: 10px 6px; font-size: 12px; font-weight: 700;
    text-decoration: none; transition: all .2s;
    border: none; cursor: pointer;
}
.vf-btn-detail {
    background: #f5f5f5; color: #333;
    border-right: 1px solid #e0e0e0;
}
.vf-btn-detail:hover { background: #1a1a2e; color: #fff; }
.vf-btn-go { background: #e63946; color: #fff !important; }
.vf-btn-go:hover { background: #c0392b; color: #fff !important; }

/* ─── 페이지네이션 ─── */
.vf-paging { text-align: center; margin-top: 20px; padding-bottom: 10px; }

/* ─────────────────────────────────────────────
   상세보기 (view.skin.php)
   ───────────────────────────────────────────── */
#vf-view-wrap { padding: 0; }

.vf-view-infobox {
    display: flex; gap: 0;
    background: #fff; border: 1px solid #e8e8e8;
    border-radius: 12px; overflow: hidden; margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    align-items: stretch; min-height: 320px;
}
.vf-view-banner {
    width: 420px; min-width: 420px; max-width: 420px;
    height: 320px;
    background: #1a1a2e; flex-shrink: 0;
    overflow: hidden; position: relative;
}
.vf-view-banner img { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; top:0; left:0; }
.vf-info-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.vf-info-table th {
    width: 100px; text-align: left;
    padding: 10px 14px; background: #f7f7f7;
    color: #555; font-weight: 700;
    border-bottom: 1px solid #eee; white-space: nowrap;
}
.vf-info-table td {
    padding: 10px 14px; color: #222; border-bottom: 1px solid #eee;
}
.vf-info-table td a { color: #1a1a2e; text-decoration: none; }
.vf-info-table td a:hover { color: #e63946; }
.vf-code-cell { color: #e63946 !important; font-weight: 700; font-family: monospace; letter-spacing: .5px; }
.vf-game-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.vf-game-tag {
    display: inline-block; background: #f0f0f0; color: #444;
    border-radius: 4px; padding: 3px 10px;
    font-size: 12px; font-weight: 600;
}
/* 뷰 - 사이트명 제목 */
.vf-view-site-name {
    font-size: 20px; font-weight: 900; color: #1a1a2e;
    margin-bottom: 14px; padding-bottom: 10px;
    border-bottom: 2px solid #e63946; letter-spacing: -.5px;
}
.vf-view-table-wrap { flex: 1; padding: 22px 24px; min-width: 0; }
/* 뷰 - 배너 없을 때 플레이스홀더 */
.vf-view-banner-placeholder {
    width: 100%; height: 100%; min-height: 200px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    background: #1a1a2e; color: #777;
}
/* 뷰 - 사이트 바로가기 버튼 */
.vf-view-go-btn {
    display: block; text-align: center;
    background: #e63946; color: #fff !important;
    border-radius: 6px; padding: 11px 20px;
    font-size: 14px; font-weight: 700;
    margin-top: 16px; text-decoration: none;
    transition: background .2s;
}
.vf-view-go-btn:hover { background: #c0392b; color: #fff !important; }
/* ── 뷰 - 사진/글 분리 레이아웃 ── */
.vf-view-split {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    align-items: stretch;
}

/* ── 사진 카드 (헤더 없음) ── */
.vf-img-card {
    width: 420px; min-width: 420px; flex-shrink: 0;
    border-radius: 10px; overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
    display: flex; flex-direction: column;
}
.vf-img-card .vf-view-banner {
    width: 100% !important; max-width: 100% !important;
    flex: 1 1 0 !important; height: 0 !important;
    min-height: 280px;
    min-width: 0; border-radius: 0;
    position: relative;
}

/* ── 글/정보 카드 (헤더 없음) ── */
.vf-info-card {
    flex: 1; min-width: 0;
    background: #fff; border: 1px solid #e8e8e8;
    border-radius: 10px; overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    display: flex; flex-direction: column;
}

/* ── 작성자 행 ── */
.vf-view-author-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 0 6px; margin-bottom: 4px;
}
.vf-author-info { display: flex; align-items: center; gap: 8px; }
.vf-author-icon {
    width: 28px; height: 28px; border-radius: 50%;
    background: #e63946; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; flex-shrink: 0;
}
.vf-author-name { font-size: 14px; font-weight: 700; color: #1a1a2e; }
.vf-post-date   { font-size: 12px; color: #999; }

/* ── 통계 + 버튼 행 ── */
.vf-view-stats-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 6px 0 16px; border-bottom: 1px solid #eee;
    margin-bottom: 16px; flex-wrap: wrap; gap: 8px;
}
.vf-stats-left { display: flex; align-items: center; gap: 14px; }
.vf-stat { font-size: 13px; color: #555; display: flex; align-items: center; gap: 4px; }
.vf-stat i { font-size: 13px; color: #999; }
.vf-stats-right { display: flex; gap: 6px; }
.vf-stat-btn {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 5px 14px; border-radius: 4px; border: 1px solid #d0d0d0;
    font-size: 12px; font-weight: 600; text-decoration: none;
    color: #555; background: #fff; transition: all .15s;
}
.vf-stat-btn:hover { background: #f0f0f0; }
.vf-stat-btn-report {
    border-color: #e63946; color: #e63946;
    background: #fff4f4;
}
.vf-stat-btn-report:hover { background: #e63946; color: #fff; }

/* ── 상세내용 탭 스타일 ── */
.vf-tab-bar {
    display: flex; align-items: flex-end;
    border-bottom: 2px solid #e63946;
    margin-bottom: 0;
}
.vf-tab-item {
    padding: 10px 20px; font-size: 14px; font-weight: 700;
    color: #e63946; cursor: pointer; border: 1px solid #e63946;
    border-bottom: none; border-radius: 6px 6px 0 0;
    background: #fff; margin-bottom: -2px;
    position: relative; z-index: 1;
}

/* ── 뷰 - 게시물 제목 행 ── */
.vf-view-title-row { padding: 16px 0 4px; }
.vf-view-title {
    font-size: 22px; font-weight: 900; color: #1a1a2e;
    margin: 0; letter-spacing: -.5px; line-height: 1.5;
}

/* ── 뷰 - 메타 행 (작성자·날짜·통계·버튼) ── */
.vf-view-meta-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 8px 0 12px; border-bottom: 1px solid #eee;
    margin-bottom: 16px; flex-wrap: wrap; gap: 8px;
}
.vf-meta-left {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; color: #888; flex-wrap: wrap;
}
.vf-meta-author { color: #1a1a2e; font-weight: 700; }
.vf-meta-sep { color: #ddd; }
.vf-meta-item i { margin-right: 2px; }
.vf-meta-right { display: flex; gap: 6px; flex-shrink: 0; }
.vf-meta-btn {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 4px 10px; border-radius: 4px; border: 1px solid #e0e0e0;
    font-size: 11px; font-weight: 600; text-decoration: none;
    color: #666; background: #fff; transition: all .15s;
}
.vf-meta-btn:hover { background: #1a1a2e; color: #fff; border-color: #1a1a2e; }
.vf-meta-btn-danger:hover { background: #e63946; color: #fff; border-color: #e63946; }
.vf-tip-icon { color: #aaa; font-size: 11px; margin-left: 4px; cursor: help; }
.vf-tip-icon:hover { color: #e63946; }

/* 뷰 - 섹션 타이틀 */
.vf-section-title {
    background: #f7f7f7; border-bottom: 2px solid #1a1a2e;
    padding: 11px 18px; font-size: 14px; font-weight: 700;
    color: #1a1a2e; display: flex; align-items: center; gap: 7px;
}
/* 뷰 - 홍보 이미지 갤러리 */
.vf-promo-gallery {
    background: #fff; border: 1px solid #e8e8e8;
    border-radius: 12px; overflow: hidden; margin-bottom: 18px;
}
.vf-promo-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 12px; padding: 16px;
}
.vf-promo-item { border-radius: 8px; overflow: hidden; }
.vf-promo-item img { width: 100%; height: auto; display: block; transition: transform .2s; }
.vf-promo-item a:hover img { transform: scale(1.02); }
/* 뷰 - 상세 내용 박스 */
.vf-view-content-wrap {
    background: #fff; border: 1px solid #e8e8e8;
    border-radius: 12px; overflow: hidden; margin-bottom: 18px;
}
.vf-content-body { padding: 22px 18px; font-size: 14px; line-height: 1.8; color: #333; }
.vf-content-body img { max-width: 100%; height: auto; display: block; }
.vf-promo-img-row { margin-bottom: 16px; text-align: center; }
.vf-promo-img-row img { max-width: 100%; height: auto; border-radius: 6px; display: inline-block; }
.vf-view-footer-btns {
    display: flex; justify-content: space-between;
    align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 8px;
}
.vf-foot-btn {
    display: inline-block; padding: 9px 20px;
    border-radius: 6px; font-size: 13px; font-weight: 700;
    text-decoration: none; transition: all .2s; cursor: pointer; border: none;
}
.vf-foot-list { background: #f0f0f0; color: #333; }
.vf-foot-list:hover { background: #1a1a2e; color: #fff; }
.vf-foot-edit { background: #1a1a2e; color: #fff; }
.vf-foot-edit:hover { background: #333; color: #fff; }
.vf-foot-del { background: #fff0f0; color: #e63946; border: 1px solid #e63946; }
.vf-foot-del:hover { background: #e63946; color: #fff; }
.vf-foot-go { background: #e63946; color: #fff !important; }
.vf-foot-go:hover { background: #c0392b; color: #fff !important; }

/* ─────────────────────────────────────────────
   SEO 컨텐츠 섹션 (보증업체 선정 기준 + 먹튀 대처)
   ───────────────────────────────────────────── */
.vf-seo-section { margin-top: 24px; }
.vf-seo-intro-banner {
    background: linear-gradient(120deg, #c8930a 0%, #e8b420 50%, #f4c430 100%);
    border-radius: 12px; padding: 28px 32px; margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(200,147,10,.25);
}
.vf-seo-intro-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.vf-seo-intro-text h2 { font-size: 20px; font-weight: 900; color: #1a1a2e; margin: 0 0 10px; }
.vf-seo-intro-text p { font-size: 13px; color: #3d2800; line-height: 1.8; margin: 0; }
.vf-seo-coin { font-size: 64px; flex-shrink: 0; opacity: .85; }

.vf-seo-criteria {
    background: #fff; border: 1px solid #e8e8e8; border-radius: 12px;
    overflow: hidden; margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.vf-seo-criteria-title {
    background: linear-gradient(90deg, #c8930a, #f4c430);
    color: #1a1a2e; font-size: 16px; font-weight: 900;
    padding: 14px 20px; letter-spacing: -.3px;
}
.vf-criteria-list {
    list-style: none; margin: 0; padding: 16px 20px; counter-reset: criteria;
}
.vf-criteria-list li {
    counter-increment: criteria;
    display: flex; gap: 14px; align-items: flex-start;
    padding: 14px 0; border-bottom: 1px solid #f5f5f5;
}
.vf-criteria-list li:last-child { border-bottom: none; }
.vf-criteria-list li::before {
    content: counter(criteria);
    width: 28px; height: 28px; border-radius: 50%;
    background: #e63946; color: #fff;
    font-size: 13px; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 2px;
}
.vf-criteria-list li strong { display: block; font-size: 15px; color: #1a1a2e; margin-bottom: 4px; }
.vf-criteria-list li p { font-size: 13px; color: #555; line-height: 1.7; margin: 0; }

.vf-seo-fraud {
    background: #fff; border: 1px solid #e8e8e8; border-radius: 12px;
    overflow: hidden; margin-bottom: 16px;
}
.vf-seo-fraud-title {
    background: #e63946; color: #fff;
    font-size: 16px; font-weight: 900; padding: 14px 20px;
    display: flex; align-items: center; gap: 8px;
}
.vf-seo-fraud-body { padding: 18px 20px; }
.vf-seo-fraud-body p { font-size: 13px; color: #444; line-height: 1.8; margin: 0 0 12px; }
.vf-seo-fraud-body ul { list-style: none; margin: 0 0 12px; padding: 0; }
.vf-seo-fraud-body ul li {
    font-size: 13px; color: #333; padding: 5px 0;
    display: flex; align-items: flex-start; gap: 7px;
}
.vf-seo-fraud-body ul li i { color: #e63946; margin-top: 3px; flex-shrink: 0; }

/* ─────────────────────────────────────────────
   쓰기 폼 (write.skin.php)
   ───────────────────────────────────────────── */
#vfw-wrap {
    background: #fff; border: 1px solid #e8e8e8;
    border-radius: 12px; overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    margin-bottom: 20px;
}
.vfw-header {
    padding: 16px 22px; background: linear-gradient(135deg,#1a1a2e,#2d2d4e);
    border-bottom: 1px solid #eee;
}
.vfw-title {
    font-size: 16px; font-weight: 800; color: #fff; margin: 0;
    display: flex; align-items: center; gap: 8px;
}
.vfw-section {
    border-bottom: 1px solid #f0f0f0; padding: 18px 22px 14px;
}
.vfw-section-title {
    font-size: 13px; font-weight: 700; color: #1a1a2e;
    margin-bottom: 14px; display: flex; align-items: center; gap: 6px;
}
.vfw-section-title i { color: #e63946; }
.vfw-field-row {
    display: flex; align-items: flex-start;
    gap: 12px; margin-bottom: 10px;
}
.vfw-field-row:last-child { margin-bottom: 0; }
.vfw-label {
    width: 100px; min-width: 100px; font-size: 13px;
    font-weight: 600; color: #444; padding-top: 9px; flex-shrink: 0;
}
.vfw-required::after {
    content: ' *'; color: #e63946; font-weight: 900;
}
.vfw-input {
    flex: 1; height: 38px; padding: 0 12px;
    border: 1px solid #dde; border-radius: 6px;
    font-size: 13px; color: #333; outline: none;
    transition: border-color .2s; box-sizing: border-box;
}
.vfw-input:focus { border-color: #e63946; box-shadow: 0 0 0 2px rgba(230,57,70,.1); }
.vfw-input-sm { max-width: 240px; }
.vfw-hint { font-size: 11px; color: #aaa; margin-top: 4px; display: block; }
.vfw-field-full { padding: 0; }
.vfw-file-wrap { display: flex; flex-direction: column; gap: 6px; }
.vfw-file-input { display: none; }
.vfw-file-label {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 18px; border-radius: 6px; cursor: pointer;
    font-size: 13px; font-weight: 600;
    background: #f5f5f5; border: 1px solid #dde; color: #555;
    transition: all .15s;
}
.vfw-file-label:hover { background: #1a1a2e; color: #fff; border-color: #1a1a2e; }
.vfw-actions {
    display: flex; justify-content: flex-end; gap: 8px;
    padding: 16px 22px; background: #fafbfc;
}
.vfw-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 24px; border-radius: 6px; font-size: 13px;
    font-weight: 700; text-decoration: none; cursor: pointer;
    border: none; transition: all .15s;
}
.vfw-btn-cancel { background: #f0f0f0; color: #555; }
.vfw-btn-cancel:hover { background: #ddd; color: #333; }
.vfw-btn-submit { background: #e63946; color: #fff; box-shadow: 0 2px 8px rgba(230,57,70,.3); }
.vfw-btn-submit:hover { background: #c0392b; color: #fff; transform: translateY(-1px); }

/* ─────────────────────────────────────────────
   반응형 미디어쿼리
   PC 1200+ → 4열 | 900~1199 → 3열
   600~899  → 2열 | ~599     → 2열(작음)
   ~420     → 1열
   ───────────────────────────────────────────── */
@media (max-width: 1199px) {
    .vf-card-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .vf-top-banner { padding: 24px 28px; min-height: 140px; }
    .vf-top-banner h1,
    .vf-top-banner h2 { font-size: 26px; }
    .vf-banner-trophy { font-size: 64px; }
}
@media (max-width: 768px) {
    .vf-card-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .vf-top-banner { flex-direction: column; text-align: center; gap: 8px; padding: 20px 16px; min-height: auto; }
    .vf-banner-trophy { font-size: 52px; }
    .vf-view-infobox { flex-direction: column; }
    .vf-view-banner { width: 100%; max-width: 100%; min-width: 0; height: 220px; }
    .vf-view-split { flex-direction: column; align-items: stretch; }
    .vf-img-card { width: 100% !important; min-width: 0 !important; }
    .vf-img-card .vf-view-banner { height: 240px !important; min-height: 0; flex: none !important; }
    .vf-view-author-row { flex-wrap: wrap; gap: 6px; }
    .vf-view-stats-row { flex-wrap: wrap; }
}
@media (max-width: 480px) {
    #content-wrap { padding: 8px !important; }
    .vf-card-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .vf-top-banner { display: none; }
    .vf-search-row { flex-wrap: wrap; }
    .vf-cat-select { flex: 0 0 auto; }
    .vf-card-body { padding: 8px 8px; }
    .vf-meta-label { font-size: 10px; padding: 1px 5px; }
    .vf-btn { padding: 8px 4px; font-size: 11px; }
    .vf-view-title { font-size: 16px; }
    .vf-view-meta-row { flex-direction: column; align-items: flex-start; }
    .vf-meta-right { width: 100%; }
}
@media (max-width: 360px) {
    .vf-card-grid { grid-template-columns: 1fr; }
    .vf-card-img-wrap { aspect-ratio: 16 / 9; }
}
