@charset "utf-8";
 
/* ═══════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════ */
:root {
  --navy:        #0a1628;
  --navy-mid:    #112240;
  --navy-light:  #1b3a6b;
  --purple:      #5e1a84;
  --purple-soft: #7b35a3;
  --purple-pale: #f0e8f8;
  --gold:        #c8a84b;
  --gold-light:  #e8c97a;
  --cream:       #faf8f4;
  --white:       #ffffff;
  --text-main:   #1a1a2e;
  --text-sub:    #666680;
  --border:      #e8e4f0;
  --radius:      16px;
  --shadow:      0 4px 24px rgba(10,22,40,0.10);
  --shadow-hover:0 12px 40px rgba(94,26,132,0.18);
  --ff-display:  'Playfair Display', Georgia, serif;
  --ff-body:     'DM Sans', 'Noto Sans KR', sans-serif;
  --transition:  0.25s ease;
}
 
/* ═══════════════════════════════════════════════════
   SHARED BUTTONS
═══════════════════════════════════════════════════ */
.rv-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.rv-btn--write {
  background: linear-gradient(135deg, var(--purple), var(--purple-soft));
  color: var(--white);
}
.rv-btn--write:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(94,26,132,0.35);
  color: var(--white);
  text-decoration: none;
}
.rv-btn--outline {
  background: var(--white);
  color: var(--purple);
  border: 1.5px solid var(--purple);
}
.rv-btn--outline:hover {
  background: var(--purple-pale);
  color: var(--purple);
  text-decoration: none;
}
.rv-btn--submit {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
}
.rv-btn--submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,168,75,0.40);
}
.rv-btn--icon {
  width: 40px;
  height: 40px;
  padding: 0;
  justify-content: center;
  background: var(--white);
  color: var(--purple);
  border: 1.5px solid var(--border);
}
.rv-btn--icon:hover { background: var(--purple-pale); }
.rv-btn--sm  { font-size: 12px; padding: 6px 14px; }
.rv-btn--lg  { font-size: 15px; padding: 14px 32px; }
 
/* ═══════════════════════════════════════════════════
   ADMIN DROPDOWN
═══════════════════════════════════════════════════ */
.rv-admin-opts { position: relative; display: inline-block; }
.rv-more-opt {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-hover);
  list-style: none;
  margin: 0; padding: 6px 0;
  z-index: 999;
  min-width: 130px;
}
.rv-more-opt::before {
  content: '';
  position: absolute;
  top: -6px; right: 14px;
  width: 10px; height: 10px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: rotate(45deg);
}
.rv-more-opt li { padding: 0; margin: 0; }
.rv-more-opt li a,
.rv-more-opt li button {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-main);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.rv-more-opt li a:hover,
.rv-more-opt li button:hover {
  background: var(--purple-pale);
  color: var(--purple);
}
 
/* ═══════════════════════════════════════════════════
   SEARCH OVERLAY
═══════════════════════════════════════════════════ */
.bo_sch_wrap { display:none; width:100%; height:100%; position:fixed; top:0; left:0; z-index:9999; }
.rv-sch {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border);
  overflow: hidden;
}
.rv-sch h3 {
  padding: 18px 22px;
  font-family: var(--ff-display);
  font-size: 16px;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
}
.rv-sch form { padding: 18px 22px; }
.rv-sch select {
  width: 100%; height: 42px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0 12px;
  font-family: var(--ff-body);
  color: var(--text-main);
  margin-bottom: 12px;
}
.rv-sch .sch_bar {
  display: flex;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.rv-sch .sch_input {
  flex: 1; height: 42px;
  border: none; padding: 0 14px;
  font-family: var(--ff-body);
  font-size: 14px;
}
.rv-sch .sch_btn {
  width: 44px; height: 42px;
  border: none;
  background: var(--purple);
  color: var(--white);
  font-size: 15px;
  cursor: pointer;
}
.rv-sch .bo_sch_cls {
  position: absolute; top: 12px; right: 14px;
  background: none; border: none;
  font-size: 18px; color: var(--text-sub); cursor: pointer;
}
.bo_sch_bg { background: rgba(10,22,40,0.45); width:100%; height:100%; }
 
 
/* ═══════════════════════════════════════════════════
   LIST — #rv_board
═══════════════════════════════════════════════════ */
#rv_board {
  font-family: var(--ff-body);
  color: var(--text-main);
  padding: 40px 0 60px;
}
 
/* Category nav */
#rv_cate { margin-bottom: 32px; }
#rv_cate h2 { position:absolute; font-size:0; overflow:hidden; }
#rv_cate_ul {
  display: flex; flex-wrap: wrap; gap: 8px;
  list-style: none; margin: 0; padding: 0;
}
#rv_cate_ul li a,
#rv_cate_ul .rv-cate-all a {
  display: inline-block;
  padding: 7px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sub);
  text-decoration: none;
  transition: all var(--transition);
}
#rv_cate_ul li a:hover,
#rv_cate_ul #bo_cate_on,
#rv_cate_ul .rv-cate-all a {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--white);
}
 
/* Toolbar */
.rv-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 12px;
}
.rv-toolbar-right { display: flex; align-items: center; gap: 8px; }
.rv-total-label { font-size: 14px; color: var(--text-sub); }
.rv-total-label strong { color: var(--purple); font-weight: 700; }
 
/* Empty state */
.rv-empty {
  text-align: center;
  padding: 80px 20px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 2px dashed var(--border);
}
.rv-empty-icon { font-size: 52px; color: var(--border); margin-bottom: 20px; }
.rv-empty-title { font-family: var(--ff-display); font-size: 22px; color: var(--text-main); margin-bottom: 8px; }
.rv-empty-sub { font-size: 14px; color: var(--text-sub); margin-bottom: 28px; }
 
/* Card grid */
.rv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
 
/* Card */
.rv-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
}
.rv-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  opacity: 0;
  transition: opacity var(--transition);
}
.rv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(94,26,132,0.25);
}
.rv-card:hover::before { opacity: 1; }
.rv-card--notice { border-color: var(--gold); }
.rv-card--notice::before { opacity: 1; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
 
/* Card checkbox */
.rv-card-chk { position: absolute; top: 14px; left: 14px; z-index: 2; }
.rv-card-chk .selec_chk { position:absolute; opacity:0; width:0; height:0; }
.rv-card-chk label span {
  display: block; width: 17px; height: 17px;
  background: var(--white); border: 1.5px solid var(--border); border-radius: 4px;
}
.rv-card-chk input:checked + label span {
  background: var(--purple); border-color: var(--purple);
}
 
/* Notice badge */
.rv-notice-badge {
  position: absolute; top: 14px; right: 14px;
  padding: 4px 10px;
  background: var(--gold); color: var(--navy);
  font-size: 11px; font-weight: 700;
  border-radius: 50px; letter-spacing: 0.5px;
}
 
/* Card link */
.rv-card-link {
  display: block; padding: 26px 24px 22px;
  text-decoration: none; color: inherit;
}
.rv-card-link:hover { text-decoration: none; color: inherit; }
 
/* Stars row */
.rv-card-stars {
  display: flex; align-items: center; gap: 6px; margin-bottom: 12px;
}
.rv-stars-on  { color: var(--gold); font-size: 15px; letter-spacing: 1px; line-height: 1; }
.rv-stars-off { color: var(--border); font-size: 15px; letter-spacing: 1px; line-height: 1; }
.rv-star-num  { font-size: 12px; font-weight: 700; color: var(--gold); }
.rv-new-badge {
  display: inline-block; width: 18px; height: 18px; line-height: 18px;
  font-size: 10px; font-weight: 700; text-align: center;
  background: #b9ffda; color: #23db79; border-radius: 3px;
}
.rv-comment-cnt { font-size: 12px; color: var(--text-sub); margin-left: auto; }
 
/* Card title */
.rv-card-title {
  font-family: var(--ff-display);
  font-size: 16px; font-weight: 700;
  color: var(--text-main); line-height: 1.45;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
 
/* Card preview */
.rv-card-preview {
  font-size: 13px; color: var(--text-sub); line-height: 1.7;
  margin: 0 0 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
 
/* Card footer */
.rv-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; padding-top: 16px; border-top: 1px solid var(--border);
}
.rv-card-author { display: flex; align-items: center; gap: 10px; min-width: 0; }
.rv-avatar {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--white);
}
.rv-author-info { min-width: 0; }
.rv-author-info strong {
  display: block; font-size: 13px; font-weight: 700;
  color: var(--text-main); white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.rv-company-tag {
  display: inline-block; font-size: 11px;
  color: var(--navy); background: #eef0f8;
  padding: 1px 7px; border-radius: 50px; margin-top: 2px;
  margin-right: 4px;
}
.rv-service-tag {
  display: inline-block; font-size: 11px;
  color: var(--purple); background: var(--purple-pale);
  padding: 1px 7px; border-radius: 50px; margin-top: 2px;
}
.rv-card-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; flex-shrink: 0; }
.rv-date, .rv-hit { font-size: 11px; color: var(--text-sub); }
.rv-hit i { margin-right: 2px; }
 
/* Pagination */
.rv-pagination { display: flex; justify-content: center; margin: 10px 0 30px; }
.rv-pagination .pg_wrap { text-align: center; }
 
/* Bottom bar */
.rv-bottom-bar { display: flex; justify-content: flex-end; gap: 10px; margin-top: 10px; }
 
/* Responsive list */
@media (max-width: 1024px) { .rv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .rv-grid { grid-template-columns: 1fr; } .rv-toolbar { flex-wrap: wrap; } }
 
 
/* ═══════════════════════════════════════════════════
   WRITE — #rv_write
═══════════════════════════════════════════════════ */
#rv_write {
  max-width: 780px;
  padding-top: 60px;
  margin: 0 auto 60px;
  font-family: var(--ff-body);
}
 
/* Write header */
.rv-w-header {
  display: flex; align-items: center; gap: 18px;
  background: linear-gradient(135deg, var(--navy), var(--purple));
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 30px 36px;
  color: var(--white);
}
.rv-w-header-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--gold-light); flex-shrink: 0;
}
.rv-w-header-title {
  font-family: var(--ff-display); font-size: 22px; font-weight: 700;
  margin: 0 0 4px; color: var(--white);
}
.rv-w-header-sub { font-size: 13px; color: rgba(255,255,255,0.65); margin: 0; }
 
/* Form body */
.rv-w-form {
  background: var(--white);
  border: 1.5px solid var(--border); border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 36px 36px 28px;
}
 
/* Field */
.rv-w-field { margin-bottom: 26px; }
.rv-w-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.rv-w-label {
  display: block; font-size: 13px; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.rv-w-label i { margin-right: 5px; color: var(--purple); }
.rv-w-required {
  display: inline-block; font-size: 10px; font-weight: 700;
  color: var(--white); background: var(--purple);
  padding: 1px 6px; border-radius: 4px;
  margin-left: 6px; vertical-align: middle;
}
.rv-w-hint { font-size: 12px; color: var(--text-sub); margin-bottom: 8px; }
.rv-w-hint-inline { font-size: 11px; color: var(--text-sub); font-weight: 400; margin-left: 6px; }
 
/* Inputs */
.rv-w-input {
  width: 100%; height: 46px;
  border: 1.5px solid var(--border); border-radius: 10px;
  padding: 0 16px;
  font-family: var(--ff-body); font-size: 14px; color: var(--text-main);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  box-sizing: border-box;
}
.rv-w-input:focus {
  outline: none; border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(94,26,132,0.10);
}
.rv-w-select {
  width: 100%; height: 46px;
  border: 1.5px solid var(--border); border-radius: 10px;
  padding: 0 16px;
  font-family: var(--ff-body); font-size: 14px; color: var(--text-main);
  background: var(--white);
  transition: border-color var(--transition);
  box-sizing: border-box;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235e1a84' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.rv-w-select:focus { outline: none; border-color: var(--purple); }
 
/* Star picker */
.rv-star-picker {
  display: flex; align-items: center; gap: 4px;
  padding: 12px 16px;
  background: var(--cream);
  border: 1.5px solid var(--border); border-radius: 10px;
}
.rv-sp-star {
  font-size: 30px; color: var(--border);
  cursor: pointer;
  transition: color var(--transition), transform var(--transition);
  line-height: 1;
}
.rv-sp-star--on { color: var(--gold); }
.rv-sp-star:hover { transform: scale(1.15); }
.rv-sp-label { margin-left: 10px; font-size: 13px; font-weight: 600; color: var(--text-sub); }
 
/* Editor area */
.rv-w-editor textarea {
  width: 100%; min-height: 200px;
  border: 1.5px solid var(--border); border-radius: 10px;
  padding: 14px 16px;
  font-family: var(--ff-body); font-size: 14px;
  line-height: 1.7; color: var(--text-main);
  resize: vertical; box-sizing: border-box;
  transition: border-color var(--transition);
}
.rv-w-editor textarea:focus {
  outline: none; border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(94,26,132,0.10);
}
.rv-char-count { text-align: right; font-size: 12px; color: var(--text-sub); margin-top: 6px; }
#char_count { font-weight: 700; color: var(--purple); }
 
/* Options (공지/비밀) */
.rv-w-field--opts .bo_v_option {
  display: flex; flex-wrap: wrap; gap: 12px;
  list-style: none; margin: 0; padding: 0;
}
.rv-w-field--opts .bo_v_option .chk_box label {
  font-size: 13px; color: var(--text-main);
  padding-left: 22px; position: relative; cursor: pointer;
}
.rv-w-field--opts .selec_chk { position:absolute; opacity:0; width:0; height:0; }
.rv-w-field--opts .chk_box label span {
  position: absolute; left: 0; top: 1px;
  width: 16px; height: 16px;
  background: var(--white); border: 1.5px solid var(--border); border-radius: 4px;
}
.rv-w-field--opts input:checked + label span {
  background: var(--purple); border-color: var(--purple);
}
 
/* Submit actions */
.rv-w-actions {
  display: flex; justify-content: flex-end; align-items: center;
  gap: 12px; margin-top: 10px; padding-top: 24px;
  border-top: 1px solid var(--border);
}
 
/* Autosave popup */
#autosave_wrapper { position: relative; }
#autosave_pop {
  display: none; position: absolute;
  top: 52px; right: 0; width: 320px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-hover); z-index: 99;
}
#autosave_pop strong {
  display: block; padding: 14px 18px; font-size: 14px;
  border-bottom: 1px solid var(--border);
}
#autosave_pop ul { list-style: none; padding: 8px; margin: 0; max-height: 160px; overflow-y: auto; }
#autosave_pop li { padding: 8px 10px; border-radius: 6px; font-size: 13px; }
#autosave_pop li:hover { background: var(--purple-pale); }
.autosave_close {
  display: block; width: 100%; padding: 10px;
  border: none; border-top: 1px solid var(--border);
  background: var(--cream); font-size: 13px; color: var(--text-sub);
  cursor: pointer; border-radius: 0 0 var(--radius) var(--radius);
}
 
/* Responsive write */
@media (max-width: 768px) {
  .rv-w-form    { padding: 24px 20px 20px; }
  .rv-w-header  { padding: 22px 22px; }
  .rv-w-row     { grid-template-columns: 1fr; }
  .rv-w-actions { flex-direction: column; }
  .rv-w-actions .rv-btn { width: 100%; justify-content: center; }
}
 
 
/* ═══════════════════════════════════════════════════
   GNUBOARD PAGINATION (shared)
═══════════════════════════════════════════════════ */
.pg_wrap { margin: 10px 0; text-align: center; }
.pg_wrap a, .pg_wrap strong {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  text-decoration: none; color: var(--text-sub);
  transition: all var(--transition); margin: 2px;
}
.pg_wrap a:hover { background: var(--purple-pale); color: var(--purple); }
.pg_wrap strong  { background: var(--purple); color: var(--white); }
 
/* ═══════════════════════════════════════════════════
   ACCESSIBILITY UTILITY
═══════════════════════════════════════════════════ */
.sound_only {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ── Admin-only banner (view page) ── */
.rv-admin-only-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(200,168,75,0.12);
  border: 1px solid rgba(200,168,75,0.35);
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
}
.rv-admin-only-banner i { font-size: 15px; }
 
/* ── View page — #rv_view ── */
#rv_view {
  max-width: 860px;
  padding-top: 60px;
  margin: 0 auto 60px;
  font-family: var(--ff-body);
  color: var(--text-main);
}
 
.rv-v-header {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, var(--purple) 100%);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 44px 48px 36px;
  color: var(--white);
}
.rv-v-cate {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(200,168,75,0.4);
  border-radius: 50px; padding: 4px 14px; margin-bottom: 16px;
}
.rv-v-title {
  font-family: var(--ff-display); font-size: 28px; font-weight: 700;
  line-height: 1.4; margin: 0 0 14px; word-break: keep-all; color: var(--white);
}
 
/* Stars in view */
.rv-v-stars {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 24px;
}
.rv-v-stars-on  { color: var(--gold-light); font-size: 22px; letter-spacing: 3px; line-height: 1; }
.rv-v-stars-off { color: rgba(255,255,255,0.2); font-size: 22px; letter-spacing: 3px; line-height: 1; }
.rv-v-star-label { font-size: 16px; font-weight: 700; color: var(--gold-light); margin-left: 4px; }
 
.rv-v-meta {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 24px;
}
.rv-v-author { display: flex; align-items: center; gap: 12px; }
.rv-v-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--white);
}
.rv-v-name    { display: block; font-size: 15px; font-weight: 700; color: var(--white); }
.rv-v-company { display: block; font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 2px; }
.rv-v-company i { margin-right: 4px; }
.rv-v-service { display: block; font-size: 12px; color: var(--gold); margin-top: 2px; }
.rv-v-stats   { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.rv-v-stat    { font-size: 13px; color: rgba(255,255,255,0.65); }
.rv-v-stat i  { margin-right: 4px; }
 
.rv-v-buttons { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.rv-v-buttons .rv-btn--outline {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
}
.rv-v-buttons .rv-btn--outline:hover {
  background: rgba(255,255,255,0.18); color: var(--white);
}
.rv-v-buttons .rv-more-opt .rv-btn--outline,
.rv-v-buttons .rv-more-opt a { color: var(--text-main); }
 
.rv-v-body {
  background: var(--white);
  border-left: 1.5px solid var(--border);
  border-right: 1.5px solid var(--border);
  padding: 48px 48px 40px;
}
.rv-v-content { font-size: 16px; line-height: 1.9; color: #333; word-break: keep-all; }
.rv-v-content p { margin-bottom: 20px; }
.rv-v-content img {
  display: block; max-width: 100%; margin: 30px auto;
  border-radius: 10px; box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}
.rv-v-content a { color: var(--purple); border-bottom: 1px solid rgba(94,26,132,0.3); text-decoration: none; }
.rv-v-content a:hover { border-bottom-color: var(--purple); }
.rv-v-sig { margin-top: 40px; padding-top: 20px; border-top: 1px dashed var(--border); font-size: 13px; color: var(--text-sub); }
 
.rv-v-react {
  display: flex; justify-content: center; gap: 16px;
  padding: 36px 48px;
  background: var(--cream);
  border-left: 1.5px solid var(--border); border-right: 1.5px solid var(--border);
  border-top: 1px solid var(--border);
}
.rv-v-act-wrap { position: relative; }
.rv-react-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 50px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: all var(--transition); border: 1.5px solid var(--border);
}
.rv-react-btn--good { background: var(--white); color: var(--purple); }
.rv-react-btn--good:hover { background: var(--purple-pale); border-color: var(--purple); transform: translateY(-2px); color: var(--purple); }
.rv-react-btn--bad  { background: var(--white); color: #c0392b; }
.rv-react-btn--bad:hover  { background: #fff1f1; border-color: #c0392b; transform: translateY(-2px); color: #c0392b; }
.rv-react-btn strong { display: inline-block; min-width: 20px; text-align: center; font-size: 16px; }
#bo_v_act_good, #bo_v_act_nogood {
  display: none; position: absolute; bottom: calc(100% + 8px); left: 50%;
  transform: translateX(-50%); white-space: nowrap;
  background: var(--navy); color: var(--white);
  font-size: 12px; padding: 6px 14px; border-radius: 8px;
}
 
.rv-v-files {
  background: var(--white);
  border-left: 1.5px solid var(--border); border-right: 1.5px solid var(--border);
  border-top: 1px solid var(--border); padding: 28px 48px;
}
.rv-v-files h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.rv-v-files ul { list-style: none; margin: 0; padding: 0; }
.rv-v-files li {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; background: var(--cream);
  border-left: 3px solid var(--purple); border-radius: 8px; margin-bottom: 10px;
}
.rv-v-files li i { color: var(--purple); font-size: 18px; }
.rv-v-files a { font-size: 14px; font-weight: 600; color: var(--navy); text-decoration: none; }
.rv-v-files a:hover { color: var(--purple); text-decoration: underline; }
.rv-file-info { font-size: 12px; color: var(--text-sub); margin-left: auto; }
 
.rv-v-nav {
  background: var(--white);
  border: 1.5px solid var(--border); border-top: none;
  border-radius: 0 0 var(--radius) var(--radius); overflow: hidden;
}
.rv-nav-item {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 14px; padding: 18px 28px;
  text-decoration: none; color: var(--text-main);
  border-top: 1px solid var(--border);
  transition: background var(--transition);
}
.rv-nav-item:first-child { border-top: none; }
.rv-nav-item:hover { background: var(--purple-pale); text-decoration: none; color: var(--text-main); }
.rv-nav-label { font-size: 12px; font-weight: 700; color: var(--text-sub); white-space: nowrap; }
.rv-nav-item:hover .rv-nav-label { color: var(--purple); }
.rv-nav-title { font-size: 14px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rv-nav-date  { font-size: 12px; color: var(--text-sub); white-space: nowrap; }
 
.rv-v-bottom {
  display: flex; justify-content: space-between; align-items: center; margin-top: 28px;
}
 
/* ── Masked name / company (일반 사용자) ── */
.rv-masked {
  color: var(--text-sub) !important;
  letter-spacing: 0.04em;
}
 
/* ── Non-clickable card (일반 사용자 — view 진입 불가) ── */
.rv-card-link--no-click {
  cursor: default;
}
.rv-card-link--no-click:hover {
  text-decoration: none;
  color: inherit;
}
/* 카드 자체도 hover 효과 제거 */
.rv-card:has(.rv-card-link--no-click):hover {
  transform: none;
  box-shadow: var(--shadow);
  border-color: var(--border);
}
.rv-card:has(.rv-card-link--no-click)::before {
  opacity: 0 !important;
}
 
/* ── Responsive view ── */
@media (max-width: 768px) {
  .rv-v-header { padding: 28px 24px 22px; }
  .rv-v-body   { padding: 28px 24px; }
  .rv-v-react  { padding: 24px; flex-wrap: wrap; }
  .rv-v-files  { padding: 20px 24px; }
  .rv-v-title  { font-size: 22px; }
  .rv-nav-item { grid-template-columns: auto 1fr; }
  .rv-nav-date { display: none; }
}