/* 캠핑장 방문후기 (newthankq /review/camp 퍼블) */
.camp_rv_page {
  padding-bottom: 40px;
  background: #fff;
}

.camp_rv_page * {
  box-sizing: border-box;
}

/* 숙소평점 */
.camp_rv_score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 0;
  height: 58px;
}

.camp_rv_score_label {
  display: flex;
  align-items: center;
  gap: 4px;
}

.camp_rv_score_label .tit {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #171719;
  letter-spacing: -0.3px;
}

.camp_rv_score_label .btn_info {
  display: inline-flex;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(55, 56, 60, 0.28);
  cursor: pointer;
}

.camp_rv_score_val {
  display: flex;
  align-items: center;
  gap: 4px;
}

.camp_rv_score_val .star {
  width: 32px;
  height: 32px;
  color: #f1cc58;
}

.camp_rv_score_val .num {
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.027em;
  color: #171719;
}

/* 이런 점이 좋았어요 */
.camp_rv_liked {
  padding: 20px 20px 0;
}

.camp_rv_liked .sec_tit {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #171719;
  letter-spacing: -0.3px;
}

.camp_rv_liked_list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.camp_rv_liked_list .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 8px;
  background: #f7f7f8;
}

.camp_rv_liked_list .item .name,
.camp_rv_liked_list .item .cnt {
  font-size: 14px;
  line-height: 1.43;
  color: rgba(46, 47, 51, 0.88);
  letter-spacing: 0.01em;
}

.camp_rv_liked_list .item .name {
  flex: 1;
  min-width: 0;
}

.camp_rv_liked_list .item .cnt {
  flex-shrink: 0;
  margin-left: 8px;
}

.camp_rv_liked_list .item.hide {
  display: none;
}

.camp_rv_liked_list.expanded .item.hide {
  display: flex;
}

.camp_rv_liked_more {
  display: flex;
  justify-content: center;
  margin-top: 4px;
  position: relative;
}

.camp_rv_liked_more .btn_more {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #171719;
  cursor: pointer;
}

.camp_rv_liked_more .btn_more svg {
  transition: transform 0.2s ease;
}

.camp_rv_liked_more .btn_more.on svg {
  transform: rotate(180deg);
}

.camp_rv_liked_more:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  pointer-events: none;
}

.camp_rv_liked.expanded .camp_rv_liked_more:before {
  display: none;
}

/* 사진 모아보기 */
.camp_rv_photos {
  padding: 24px 20px 0;
}

.camp_rv_photos .sec_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.camp_rv_photos .sec_tit {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #171719;
}

.camp_rv_photos .btn_more_txt {
  font-size: 14px;
  font-weight: 500;
  color: rgba(55, 56, 60, 0.61);
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.camp_rv_photos_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.camp_rv_photos_grid .thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  background: #f7f7f8;
}

.camp_rv_photos_grid .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 사진 모아보기 전체 페이지 */
.camp_rv_photo_list_container {
  padding: 0 !important;
}

.camp_rv_photo_list_page {
  padding: 0 0 40px;
  background: #fff;
}

.camp_rv_photo_list_tit {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #171719;
  letter-spacing: -0.3px;
}

.camp_rv_photo_list_grid {
  gap: 2px;
  padding: 0;
}

.camp_rv_photo_list_grid .thumb {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #f7f7f8;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.camp_rv_photo_list_grid .thumb:active {
  opacity: 0.85;
}

.camp_rv_photo_empty {
  grid-column: 1 / -1;
  padding: 80px 20px;
  text-align: center;
  font-size: 14px;
  color: rgba(55, 56, 60, 0.61);
}

.camp_rv_photo_empty.camp_rv_load_error {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* 사진 크게 보기 */
.camp_rv_photo_viewer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #000;
}

.camp_rv_photo_viewer.on {
  display: block;
}

.camp_rv_photo_viewer_dim {
  position: absolute;
  inset: 0;
  background: #000;
}

.camp_rv_photo_viewer_top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 12px 0 16px;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 100%);
}

.camp_rv_photo_viewer_top .cnt {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.camp_rv_photo_viewer_top .btn_close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.camp_rv_photo_viewer .btn_nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  cursor: pointer;
}

.camp_rv_photo_viewer .btn_nav:disabled {
  opacity: 0.25;
  cursor: default;
}

.camp_rv_photo_viewer .btn_nav.prev {
  left: 8px;
}

.camp_rv_photo_viewer .btn_nav.next {
  right: 8px;
}

.camp_rv_photo_viewer_stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 52px;
  box-sizing: border-box;
}

.camp_rv_photo_viewer_stage img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

/* 방문후기 헤더 / 필터 */
.camp_rv_list_sec {
  padding: 24px 20px 0;
}

.camp_rv_list_head {
  margin-bottom: 12px;
}

.camp_rv_list_head .sec_tit {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  color: #171719;
}

.camp_rv_site_btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  max-width: 100%;
  padding: 10px 14px;
  border: 1px solid #e1e2e4;
  border-radius: 10px;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: #171719;
  cursor: pointer;
}

.camp_rv_site_btn svg {
  flex-shrink: 0;
  color: #171719;
}

.camp_rv_filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  gap: 12px;
}

.camp_rv_photo_only {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.camp_rv_photo_only .txt {
  font-size: 14px;
  font-weight: 600;
  color: rgba(55, 56, 60, 0.61);
}

.camp_rv_switch {
  position: relative;
  width: 40px;
  height: 24px;
  flex-shrink: 0;
}

.camp_rv_switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.camp_rv_switch .slider {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #d9d9de;
  cursor: pointer;
  transition: background 0.2s ease;
}

.camp_rv_switch .slider:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}

.camp_rv_switch input:checked + .slider {
  background: #ff4802;
}

.camp_rv_switch input:checked + .slider:before {
  transform: translateX(16px);
}

.camp_rv_sort_btn {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 6px 8px 6px 10px;
  border: 0;
  border-radius: 999px;
  background: #171719;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}

.camp_rv_sort_btn svg {
  color: #fff;
}

/* 후기 카드 */
.camp_rv_cards {
  margin-top: 8px;
}

.camp_rv_card {
  padding: 20px 0;
  border-bottom: 1px solid #f1f1f3;
  cursor: pointer;
}

.camp_rv_card:last-child {
  border-bottom: 0;
}

.camp_rv_profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.camp_rv_profile_user {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.camp_rv_profile_user:active .nick {
  opacity: 0.7;
}

.camp_rv_profile .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: #f1f1f3;
  flex-shrink: 0;
}

.camp_rv_profile .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.camp_rv_profile .meta {
  flex: 1;
  min-width: 0;
}

.camp_rv_profile_user .meta {
  flex: 1;
  min-width: 0;
}

.camp_rv_profile .nick {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #171719;
  line-height: 1.4;
  letter-spacing: -0.2px;
}

.camp_rv_profile .meta .cnt {
  margin: 2px 0 0;
  font-size: 12px;
  font-weight: 500;
  color: rgba(55, 56, 60, 0.61);
  line-height: 1.4;
}

.camp_rv_profile .side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.camp_rv_profile .date {
  margin: 0;
  font-size: 12px;
  color: rgba(55, 56, 60, 0.61);
  line-height: 1.4;
}

.camp_rv_profile .score {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 8px;
  border-radius: 6px;
  background: #fff8e8;
  font-size: 13px;
  font-weight: 700;
  color: #f1a100;
  line-height: 1.2;
}

.camp_rv_profile .score svg {
  width: 12px;
  height: 12px;
  color: #f1cc58;
}

.camp_rv_status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.2px;
}

.camp_rv_status .ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.camp_rv_status .ico svg {
  width: 16px;
  height: 16px;
}

.camp_rv_status.host {
  background: #eef5ff;
  color: #171719;
}

.camp_rv_status.host .ico {
  color: #2f6bff;
}

.camp_rv_status.blind-ing {
  background: #fff8e6;
  color: #171719;
}

.camp_rv_status.blind-ing .ico {
  color: #f5a623;
}

.camp_rv_status.blind {
  background: #ffefef;
  color: #171719;
}

.camp_rv_status.blind .ico {
  color: #f04452;
}

.camp_rv_rate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
  color: rgba(55, 56, 60, 0.61);
}

.camp_rv_rate .visit {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  line-height: 1.4;
}

.camp_rv_rate .badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 6px;
  background: #f7f7f8;
  font-size: 12px;
  font-weight: 500;
  color: rgba(46, 47, 51, 0.88);
}

.camp_rv_pick_badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  margin-left: auto;
  padding: 4px 8px;
  border-radius: 6px;
  background: #f0edff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  color: #6b4eff;
}

.camp_rv_pick_badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.camp_rv_content {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: #171719;
  letter-spacing: -0.2px;
  word-break: break-word;
  white-space: pre-line;
}

.camp_rv_content.clamp {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.camp_rv_content_more {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  margin: 4px 0 0;
  padding: 0;
  width: 100%;
  border: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: rgba(55, 56, 60, 0.61);
  cursor: pointer;
  text-align: right;
}

.camp_rv_content_more .label {
  line-height: 1.4;
}

.camp_rv_content_more .ico {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.15s ease;
}

.camp_rv_content_more.is_open .ico {
  transform: rotate(180deg);
}

.camp_rv_imgs {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.camp_rv_imgs .img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #f7f7f8;
}

.camp_rv_imgs .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.camp_rv_imgs .img .more_num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  text-align: center;
}

/* 사진 1장: 전체 너비 */
.camp_rv_imgs.count_1 {
  grid-template-columns: 1fr;
}

.camp_rv_imgs.count_1 .img {
  aspect-ratio: 1 / 1;
}

/* 사진 2장: 좌우 1:1 */
.camp_rv_imgs.count_2 {
  grid-template-columns: 1fr 1fr;
}

.camp_rv_imgs.count_2 .img {
  aspect-ratio: 1 / 1;
  border-radius: 10px;
}

/* 사진 3장 이상: 큰 사진 1 + 작은 사진 2 */
.camp_rv_imgs.count_many {
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  aspect-ratio: 3 / 2;
}

.camp_rv_imgs.count_many .img {
  border-radius: 10px;
  min-height: 0;
}

.camp_rv_imgs.count_many .img.main {
  grid-row: 1 / 3;
}

.camp_rv_imgs.count_many .img .more_num {
  font-size: 13px;
}

.camp_rv_keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.camp_rv_keywords .tag {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 6px;
  background: #fff5f0;
  font-size: 12px;
  font-weight: 500;
  color: #ff4802;
}

.camp_rv_reply {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f7f7f8;
}

.camp_rv_reply .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.camp_rv_reply .top .who {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
  color: #171719;
}

.camp_rv_reply .top .who:before {
  content: "★";
  display: inline-block;
  width: auto;
  height: auto;
  margin-right: 2px;
  background: none;
  color: #ffb800;
  font-size: 13px;
  line-height: 1;
}

.camp_rv_reply .top .date {
  font-size: 12px;
  color: rgba(55, 56, 60, 0.61);
  flex-shrink: 0;
}

.camp_rv_reply .txt {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(55, 56, 60, 0.88);
  word-break: break-word;
}

.camp_rv_like {
  display: flex;
  align-items: center;
  margin-top: 14px;
}

.camp_rv_like .btn_like {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid #e1e2e4;
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: #171719;
  cursor: pointer;
}

.camp_rv_like .btn_like.on {
  border-color: #ff4802;
  color: #ff4802;
  background: #fff5f0;
}

.camp_rv_like .btn_like svg {
  width: 16px;
  height: 16px;
}

.camp_rv_empty {
  padding: 60px 20px;
  text-align: center;
  font-size: 14px;
  color: rgba(55, 56, 60, 0.61);
}

.camp_rv_load_error {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 20px;
}

.camp_rv_load_error .msg {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(55, 56, 60, 0.61);
}

.camp_rv_retry_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  height: 36px;
  padding: 0 16px;
  border: 1px solid #e1e2e4;
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: #171719;
  cursor: pointer;
}

.camp_rv_retry_btn:active {
  background: #f7f7f8;
}

/* 바텀시트 (사이트/정렬) */
.camp_rv_sheet .pop_layer {
  max-height: 75vh;
  display: flex;
  flex-direction: column;
}

.camp_rv_sheet .pop_con {
  display: flex;
  flex-direction: column;
  min-height: 0;
  max-height: calc(75vh - 48px);
  padding-bottom: 8px;
  box-sizing: border-box;
}

.camp_rv_sheet .pop_title {
  flex-shrink: 0;
}

.camp_rv_sheet .pop_title .tit {
  font-size: 18px;
  font-weight: 600;
}

.camp_rv_sheet .opt_list {
  list-style: none;
  margin: 0;
  padding: 0 0 16px;
  max-height: 55vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.camp_rv_sheet .opt_list::-webkit-scrollbar {
  width: 4px;
}

.camp_rv_sheet .opt_list::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.15);
}

.camp_rv_sheet .opt_list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #f1f1f3;
  cursor: pointer;
}

.camp_rv_sheet .opt_list li:last-child {
  border-bottom: 0;
}

.camp_rv_sheet .opt_list .label {
  font-size: 16px;
  font-weight: 500;
  color: #171719;
}

.camp_rv_sheet .opt_list .label.on {
  font-weight: 700;
  color: #ff4802;
}

.camp_rv_sheet .opt_list .desc {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(55, 56, 60, 0.61);
}

.camp_rv_sheet .opt_list .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  border: 1.5px solid #d9d9de;
  background: #fff;
}

.camp_rv_sheet .opt_list li.on .check {
  border-color: #ff4802;
  background: #ff4802 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 12.5l4 4 8-8' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / 14px;
}

.camp_rv_tooltip {
  display: none;
  position: absolute;
  z-index: 20;
  top: 28px;
  left: 0;
  width: 240px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #171719;
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.camp_rv_score_label {
  position: relative;
}

.camp_rv_score_label .btn_info.on + .camp_rv_tooltip,
.camp_rv_tooltip.on {
  display: block;
}

/* ===== 후기 상세 ===== */
.camp_rv_detail_page {
  background: #fff;
  padding-bottom: 40px;
}

.camp_rv_detail {
  padding: 20px;
}

.camp_rv_detail .camp_rv_profile {
  margin-bottom: 4px;
}

.camp_rv_detail .camp_rv_status {
  margin-top: 16px;
}

.camp_rv_detail_carousel {
  position: relative;
  margin: 16px -20px 0;
  background: #f1f1f3;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.camp_rv_detail_carousel .camp_rv_detail_swiper,
.camp_rv_detail_carousel .swiper-container {
  width: 100%;
  height: 100%;
}

.camp_rv_detail_carousel .swiper-wrapper {
  height: 100%;
}

.camp_rv_detail_carousel .swiper-slide {
  width: 100%;
  height: 100%;
}

.camp_rv_detail_carousel .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

.camp_rv_detail_carousel .cnt {
  position: absolute;
  right: 20px;
  bottom: 12px;
  z-index: 2;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(23, 23, 25, 0.55);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  pointer-events: none;
}

.camp_rv_detail_camp_card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 12px;
  border: 1px solid #e8e8ec;
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
}

.camp_rv_detail_camp_card .thumb {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  background: #f1f1f3;
  flex-shrink: 0;
}

.camp_rv_detail_camp_card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.camp_rv_detail_camp_card .info {
  flex: 1;
  min-width: 0;
}

.camp_rv_detail_camp_card .name {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #171719;
  line-height: 1.4;
}

.camp_rv_detail_camp_card .addr {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 500;
  color: rgba(55, 56, 60, 0.61);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.camp_rv_detail_camp_card .arrow {
  display: inline-flex;
  color: rgba(55, 56, 60, 0.45);
  flex-shrink: 0;
}

.camp_rv_detail_camp_card.is_closed .thumb {
  position: relative;
}

.camp_rv_detail_camp_card.is_closed .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  border-radius: inherit;
  pointer-events: none;
}

.camp_rv_detail_camp_card .closed_msg {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(55, 56, 60, 0.61);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.camp_rv_detail_badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.camp_rv_detail_badges .badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 10px;
  border-radius: 8px;
  border: 1px solid #e1e2e4;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  color: #171719;
  line-height: 1.3;
}

.camp_rv_detail_badges .badge svg {
  width: 14px;
  height: 14px;
  color: rgba(55, 56, 60, 0.61);
  flex-shrink: 0;
}

.camp_rv_detail_content {
  margin-top: 20px;
  font-size: 15px;
  font-weight: 500;
  color: #171719;
  line-height: 1.6;
  letter-spacing: -0.2px;
  word-break: break-word;
}

.camp_rv_detail_keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.camp_rv_detail_keywords .chip {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff4ef;
  color: #ff4802;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.camp_rv_detail_reply {
  margin-top: 20px;
  padding: 16px;
  border-radius: 12px;
  background: #f7f7f8;
}

.camp_rv_detail_reply .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.camp_rv_detail_reply .who {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #171719;
}

.camp_rv_detail_reply .who svg {
  width: 16px;
  height: 16px;
  color: #171719;
}

.camp_rv_detail_reply .date {
  font-size: 13px;
  color: rgba(55, 56, 60, 0.61);
  flex-shrink: 0;
}

.camp_rv_detail_reply .txt {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(55, 56, 60, 0.88);
  word-break: break-word;
}

.camp_rv_detail_help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.camp_rv_detail_help .ask {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: rgba(55, 56, 60, 0.61);
  line-height: 1.4;
}

.camp_rv_detail_help .btn_help {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border: 1px solid #e1e1e5;
  border-radius: 999px;
  background: #fff;
  color: #171719;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.camp_rv_detail_help .btn_help svg {
  width: 16px;
  height: 16px;
}

.camp_rv_detail_help .btn_help.on {
  border-color: #ff4802;
  color: #ff4802;
  background: #fff4ef;
}

.camp_rv_detail_site {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #f1f1f3;
}

.camp_rv_card .camp_rv_detail_site {
  margin-top: 0;
  padding-top: 16px;
  border-top: 0;
}

.camp_rv_detail_site .sec_tit {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: #171719;
  line-height: 1.4;
}

.camp_rv_detail_site .site_card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  text-decoration: none;
  color: inherit;
  cursor: default;
  pointer-events: none;
}

.camp_rv_detail_site .thumb {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  background: #e8e8ec;
  flex-shrink: 0;
}

.camp_rv_detail_site .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.camp_rv_detail_site .info {
  flex: 1;
  min-width: 0;
}

.camp_rv_detail_site .site_name {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #171719;
  line-height: 1.4;
}

.camp_rv_detail_site .site_people {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 500;
  color: rgba(55, 56, 60, 0.61);
  line-height: 1.4;
}

.camp_rv_detail_site .site_type {
  display: inline-flex;
  margin-top: 8px;
  padding: 4px 8px;
  border-radius: 6px;
  background: #f4f4f5;
  border: 0;
  font-size: 12px;
  font-weight: 600;
  color: rgba(55, 56, 60, 0.61);
}

.camp_rv_detail_site .arrow {
  display: none;
}

.camp_rv_detail_others {
  margin: 24px -20px 0;
  padding: 24px 20px 8px;
  border-top: 10px solid #f4f4f5;
}

.camp_rv_detail_others_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.camp_rv_detail_others_head .sec_tit {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #171719;
  line-height: 1.4;
}

.camp_rv_detail_others_head .btn_arrow {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(55, 56, 60, 0.61);
  text-decoration: none;
  flex-shrink: 0;
}

.camp_rv_detail_others_head .btn_arrow svg {
  width: 14px;
  height: 14px;
}

.camp_rv_detail_others_list {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.camp_rv_detail_others_list .divider {
  width: 1px;
  margin: 0 12px;
  background: #f1f1f3;
  flex-shrink: 0;
}

.camp_rv_detail_others_list .other_item {
  display: flex;
  gap: 10px;
  flex: 1;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.camp_rv_detail_others_list .thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
  background: #f1f1f3;
  flex-shrink: 0;
}

.camp_rv_detail_others_list .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.camp_rv_detail_others_list .meta {
  flex: 1;
  min-width: 0;
}

.camp_rv_detail_others_list .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.camp_rv_detail_others_list .nick {
  font-size: 13px;
  font-weight: 700;
  color: #171719;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.camp_rv_detail_others_list .score {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 12px;
  font-weight: 700;
  color: #171719;
  flex-shrink: 0;
}

.camp_rv_detail_others_list .score svg {
  width: 12px;
  height: 12px;
  color: #f1cc58;
}

.camp_rv_detail_others_list .txt {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 500;
  color: #171719;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}

/* 예약상세 방문후기 프리뷰 */
.camp_rv_preview {
  padding-bottom: 8px;
}

.camp_rv_preview .camp_rv_liked {
  padding: 0 0 8px;
}

.camp_rv_preview .camp_rv_cards {
  margin-top: 0;
}

.camp_rv_preview_more {
  padding: 8px 0 4px;
}

.camp_rv_preview_more_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  border: 1px solid #e1e2e4;
  border-radius: 10px;
  background: #fff;
  font-size: 15px;
  font-weight: 600;
  color: #171719;
  cursor: pointer;
}

/* ========== 후기 작성 (/talk/write.hbb) ========== */
.camp_rv_write_page {
  min-height: 100%;
  background: #f2f3f5;
}

.camp_rv_write_page * {
  box-sizing: border-box;
}

.camp_rv_write {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px 16px 24px;
}

.camp_rv_write_card {
  padding: 20px 16px;
  border-radius: 16px;
  background: #fff;
}

.camp_rv_write_card .sec_head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.camp_rv_write_card .sec_titles {
  flex: 1;
  min-width: 0;
}

.camp_rv_write_card .sec_tit {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: #171719;
  letter-spacing: -0.2px;
}

.camp_rv_write_card .sec_desc {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(55, 56, 60, 0.61);
}

.camp_rv_write_card .sec_count {
  flex: 0 0 auto;
  margin-top: 2px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(55, 56, 60, 0.45);
}

.camp_rv_write_card .badge_req,
.camp_rv_write_card .badge_opt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  margin-left: 6px;
  padding: 0 6px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  vertical-align: middle;
}

.camp_rv_write_card .badge_req {
  background: #ff6a3d;
  color: #fff;
}

.camp_rv_write_card .badge_opt {
  background: #f1f1f3;
  color: rgba(55, 56, 60, 0.61);
}

.camp_rv_write_trip_card .trip_q {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  color: #171719;
  letter-spacing: -0.3px;
  word-break: keep-all;
}

.camp_rv_write_trip_card .trip_box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid #e8e8ec;
  border-radius: 12px;
  background: #fff;
}

.camp_rv_write_trip_card .thumb {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: #f1f1f3;
}

.camp_rv_write_trip_card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.camp_rv_write_trip_card .meta {
  flex: 1;
  min-width: 0;
}

.camp_rv_write_trip_card .site {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: #171719;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.camp_rv_write_trip_card .period {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(55, 56, 60, 0.61);
}

.camp_rv_write_stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 4px 0 0;
}

.camp_rv_write_stars .star {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #d9d9dc;
  cursor: pointer;
}

.camp_rv_write_stars .star svg {
  width: 40px;
  height: 40px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linejoin: round;
}

.camp_rv_write_stars .star.on {
  color: #f1cc58;
}

.camp_rv_write_stars .star.on svg {
  fill: currentColor;
  stroke: currentColor;
}

.camp_rv_write_chips {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: visible !important;
}

.camp_rv_write_chips > li {
  display: inline-flex !important;
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer;
}

.camp_rv_write_chips > li > span {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 14px !important;
  border: 1px solid #e1e2e4 !important;
  border-radius: 8px !important;
  background: #fff !important;
  background-image: none !important;
  font-size: 14px !important;
  font-weight: 500;
  line-height: 1.3;
  color: rgba(55, 56, 60, 0.61) !important;
  letter-spacing: -0.2px;
  text-indent: 0 !important;
  white-space: nowrap;
}

.camp_rv_write_chips > li.on > span {
  border-color: #171719 !important;
  background: #fff !important;
  color: #171719 !important;
  font-weight: 600;
}

.camp_rv_write_photo_banner {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #edf6ff;
}

.camp_rv_write_photo_banner .ico_cam {
  display: inline-flex;
  color: #3b82f6;
  flex: 0 0 auto;
}

.camp_rv_write_photo_banner .ico_cam svg {
  width: 20px;
  height: 20px;
}

.camp_rv_write_photo_banner .txt {
  flex: 1;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: #171719;
}

.camp_rv_write_photo_banner .point_pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: #3b82f6;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.camp_rv_write_page #balloon_noti {
  display: none !important;
}

.camp_rv_write_photos .ph_file_swiper {
  padding-top: 0;
}

.camp_rv_write_photos .ph_file_swiper .swiper-slide {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  border: 1px solid #e1e2e4;
  background: #fff;
  overflow: hidden;
}

.camp_rv_write_photos .ph_file_swiper .swiper-slide.camp_rv_write_add {
  border: 1px dashed #c9c9cc;
  background: #fafafa;
  cursor: pointer;
  z-index: 2;
}

.camp_rv_write_photos .camp_rv_write_add .wp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 4px;
  position: relative;
  z-index: 3;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.camp_rv_write_photos .camp_rv_write_add .ico_cam {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #8b8b8e;
  pointer-events: none;
}

.camp_rv_write_photos .camp_rv_write_add .ico_cam svg {
  width: 24px;
  height: 24px;
}

.camp_rv_write_photos .camp_rv_write_add .ico {
  position: absolute;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.camp_rv_write_photos .camp_rv_write_add .txt_fig {
  position: static !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 12px;
  font-weight: 500;
  color: #8b8b8e;
  background: transparent !important;
  pointer-events: none;
}

.camp_rv_write_photos .ph_file_swiper .swiper-slide .pic {
  width: 100%;
  height: 100%;
}

.camp_rv_write_photos .ph_file_swiper .swiper-slide .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.camp_rv_write_photos .ph_file_swiper .swiper-slide .btn_ph_del {
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 2;
}

.camp_rv_write_kw {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.camp_rv_write_kw .kw_chip {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: #f2f7ff;
  color: #3b82f6;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.camp_rv_write_textarea {
  position: relative;
}

.camp_rv_write_textarea textarea {
  display: block;
  width: 100%;
  min-height: 160px;
  padding: 14px 16px 44px;
  border: 1px solid #e1e2e4;
  border-radius: 10px;
  background: #fff;
  font-size: 15px;
  line-height: 1.5;
  color: #171719;
  resize: vertical;
}

.camp_rv_write_textarea textarea:focus {
  outline: none;
  border-color: #171719;
}

.camp_rv_write_textarea textarea::placeholder {
  color: #b0b0b3;
}

.camp_rv_write_textarea .ta_footer {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.camp_rv_write_textarea .ta_min {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 8px;
  border-radius: 6px;
  background: #f2f3f5;
  font-size: 12px;
  font-weight: 500;
  color: rgba(55, 56, 60, 0.61);
}

.camp_rv_write_textarea .ta_min.ok {
  background: #eaf7f7;
  color: #3a9a9a;
}

.camp_rv_write_textarea .ta_count {
  font-size: 12px;
  font-weight: 500;
  color: rgba(55, 56, 60, 0.45);
}

.camp_rv_write_textarea .ta_count em {
  font-style: normal;
  font-weight: 600;
  color: rgba(55, 56, 60, 0.61);
}

.camp_rv_write_card .ta_warn {
  margin: 10px 0 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(55, 56, 60, 0.45);
}

.camp_rv_write_guide_btn {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 0;
  border-radius: 10px;
  background: #f7f7f8;
  text-align: left;
  cursor: pointer;
}

.camp_rv_write_guide_btn .ico_q {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(55, 56, 60, 0.4);
  font-size: 11px;
  font-weight: 700;
  color: rgba(55, 56, 60, 0.61);
  flex-shrink: 0;
}

.camp_rv_write_guide_btn .txt {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: #171719;
}

.camp_rv_write_guide_btn .arr {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M6 3.5L10.5 8 6 12.5' stroke='%238B8B8E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 16px no-repeat;
}

.camp_rv_write_agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  cursor: pointer;
}

.camp_rv_write_agree input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.camp_rv_write_agree .box {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border: 1.5px solid #d0d1d4;
  border-radius: 5px;
  background: #fff;
}

.camp_rv_write_agree input:checked + .box {
  border-color: #171719;
  background: #171719 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.2l2.8 2.8 6.2-6.4' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 14px no-repeat;
}

.camp_rv_write_agree .txt {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  color: #171719;
}

.camp_rv_write_agree .txt em {
  font-style: normal;
  font-weight: 700;
  color: #ff6a3d;
}

.camp_rv_write_host_card .host_row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.camp_rv_write_host_card .host_txt {
  flex: 1;
  min-width: 0;
}

.camp_rv_write_host_card .tit {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #171719;
}

.camp_rv_write_host_card .desc {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(55, 56, 60, 0.61);
}

.camp_rv_toggle {
  position: relative;
  flex: 0 0 auto;
  width: 48px;
  height: 28px;
  cursor: pointer;
}

.camp_rv_toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.camp_rv_toggle .track {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: #e1e2e4;
  transition: background 0.2s ease;
}

.camp_rv_toggle .track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}

.camp_rv_toggle input:checked + .track {
  background: #171719;
}

.camp_rv_toggle input:checked + .track::after {
  transform: translateX(20px);
}

.camp_rv_write_bottom {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 100;
  width: 100%;
  max-width: 640px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: #fff;
  box-sizing: border-box;
  transform: translateX(-50%);
}

.camp_rv_write_bottom .btn_submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  margin: 0;
  padding: 0 16px;
  border: 0;
  border-radius: 10px;
  background: #dedfe0;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
}

.camp_rv_write_bottom .btn_submit.is_ready {
  background: #171719;
}

.camp_rv_write_bottom .btn_submit.is_ing {
  background: #8b8b8e;
  cursor: default;
}

.camp_rv_guide_sheet .pop_layer {
  display: flex;
  flex-direction: column;
  height: min(88vh, 760px);
  max-height: 88vh;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

.camp_rv_guide_sheet .guide_head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 12px 48px;
  border-bottom: 1px solid #f1f1f3;
}

.camp_rv_guide_sheet .guide_head .tit {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #171719;
}

.camp_rv_guide_sheet .guide_head .close {
  position: absolute;
  right: 12px;
  top: 50%;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  border: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 6l12 12M18 6L6 18' stroke='%23171719' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E") center / 20px no-repeat;
  cursor: pointer;
}

.camp_rv_guide_sheet .guide_tabs {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.camp_rv_guide_sheet .guide_tabs .tab {
  flex: 0 0 auto;
  height: 34px;
  padding: 0 12px;
  border: 1px solid #e1e2e4;
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: rgba(55, 56, 60, 0.61);
  white-space: nowrap;
  cursor: pointer;
}

.camp_rv_guide_sheet .guide_tabs .tab.on {
  border-color: #171719;
  background: #171719;
  color: #fff;
}

.camp_rv_guide_sheet .guide_body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 20px 28px;
  -webkit-overflow-scrolling: touch;
}

.camp_rv_guide_sheet .guide_panel {
  display: none;
}

.camp_rv_guide_sheet .guide_panel.on {
  display: block;
}

.camp_rv_guide_sheet .guide_sec_tit {
  margin: 8px 0 16px;
  font-size: 18px;
  font-weight: 700;
  color: #171719;
}

.camp_rv_guide_sheet .guide_block {
  margin-bottom: 18px;
}

.camp_rv_guide_sheet .guide_sub {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: #171719;
}

.camp_rv_guide_sheet .guide_sub .bar {
  display: inline-block;
  width: 3px;
  height: 14px;
  border-radius: 2px;
  background: #c9c9cc;
}

.camp_rv_guide_sheet .guide_list,
.camp_rv_guide_sheet .guide_list_sub {
  margin: 0;
  padding: 0;
  list-style: none;
}

.camp_rv_guide_sheet .guide_list > li,
.camp_rv_guide_sheet .guide_list_sub > li {
  position: relative;
  margin: 0 0 8px;
  padding-left: 12px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(55, 56, 60, 0.72);
}

.camp_rv_guide_sheet .guide_list > li::before,
.camp_rv_guide_sheet .guide_list_sub > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(55, 56, 60, 0.61);
}

.camp_rv_guide_sheet .guide_list_sub {
  margin-top: 8px;
  padding-left: 4px;
}

.camp_rv_guide_sheet .guide_list em {
  font-style: normal;
  font-weight: 700;
  color: #171719;
}

.my_camp_rv_point_guide_body .guide_sec_tit + .guide_list {
  margin-bottom: 28px;
}

.my_camp_rv_point_guide_body .guide_list + .guide_sec_tit {
  margin-top: 8px;
}

.camp_rv_write_products .product_list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.camp_rv_write_products .product_item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f1f1f3;
}

.camp_rv_write_products .product_item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.camp_rv_write_products .product_item:first-child {
  padding-top: 0;
}

.camp_rv_write_products .thumb {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: #f1f1f3;
}

.camp_rv_write_products .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.camp_rv_write_products .info {
  flex: 1;
  min-width: 0;
}

.camp_rv_write_products .name {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: #171719;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.camp_rv_write_products .cnt {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 500;
  color: rgba(55, 56, 60, 0.61);
}

.camp_rv_write_products .votes {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.camp_rv_write_products .btn_vote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid #e1e2e4;
  border-radius: 50%;
  background: #fff;
  color: #8b8b8e;
  cursor: pointer;
}

.camp_rv_write_products .btn_vote svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.camp_rv_write_products .btn_vote.on {
  border-color: #171719;
  color: #171719;
  background: #f7f7f8;
}

.camp_rv_write_products .btn_vote.on svg {
  fill: currentColor;
}

.camp_rv_write_page.is_loading .camp_rv_write {
  display: none;
}

.camp_rv_write_page.is_loading .camp_rv_write_skeleton {
  display: flex;
}

.camp_rv_write_page.is_load_error .camp_rv_write,
.camp_rv_write_page.is_load_error .camp_rv_write_skeleton {
  display: none;
}

.camp_rv_write_page.is_load_error .camp_rv_write_load_error {
  display: flex;
}

.camp_rv_write_load_error {
  margin: 40px 16px;
}

.camp_rv_write_skeleton {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 12px 16px 24px;
}

.camp_rv_write_skeleton .camp_rv_write_card {
  pointer-events: none;
}

.camp_rv_write_skeleton .sk_line,
.camp_rv_write_skeleton .sk_thumb,
.camp_rv_write_skeleton .sk_stars span,
.camp_rv_write_skeleton .sk_chips span,
.camp_rv_write_skeleton .sk_banner,
.camp_rv_write_skeleton .sk_photo,
.camp_rv_write_skeleton .sk_textarea,
.camp_rv_write_skeleton .sk_toggle {
  position: relative;
  overflow: hidden;
  background: #ececef;
  border-radius: 8px;
}

.camp_rv_write_skeleton .sk_line::after,
.camp_rv_write_skeleton .sk_thumb::after,
.camp_rv_write_skeleton .sk_stars span::after,
.camp_rv_write_skeleton .sk_chips span::after,
.camp_rv_write_skeleton .sk_banner::after,
.camp_rv_write_skeleton .sk_photo::after,
.camp_rv_write_skeleton .sk_textarea::after,
.camp_rv_write_skeleton .sk_toggle::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  animation: campRvWriteSkimmer 1.2s ease-in-out infinite;
}

@keyframes campRvWriteSkimmer {
  100% {
    transform: translateX(100%);
  }
}

.camp_rv_write_skeleton .sk_h14 { height: 14px; }
.camp_rv_write_skeleton .sk_h16 { height: 16px; }
.camp_rv_write_skeleton .sk_h18 { height: 18px; }
.camp_rv_write_skeleton .sk_h20 { height: 20px; }
.camp_rv_write_skeleton .sk_w32 { width: 32px; }
.camp_rv_write_skeleton .sk_w40 { width: 40%; }
.camp_rv_write_skeleton .sk_w45 { width: 45%; }
.camp_rv_write_skeleton .sk_w50 { width: 50%; }
.camp_rv_write_skeleton .sk_w55 { width: 55%; }
.camp_rv_write_skeleton .sk_w60 { width: 60%; }
.camp_rv_write_skeleton .sk_w70 { width: 70%; }
.camp_rv_write_skeleton .sk_w75 { width: 75%; }
.camp_rv_write_skeleton .sk_w80 { width: 80%; }
.camp_rv_write_skeleton .sk_w90 { width: 90%; }
.camp_rv_write_skeleton .sk_mt8 { margin-top: 8px; }
.camp_rv_write_skeleton .sk_mt12 { margin-top: 12px; }
.camp_rv_write_skeleton .sk_mt14 { margin-top: 14px; }

.camp_rv_write_skeleton .sk_trip {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid #e8e8ec;
  border-radius: 12px;
}

.camp_rv_write_skeleton .sk_thumb {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 8px;
}

.camp_rv_write_skeleton .sk_meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.camp_rv_write_skeleton .sk_stars {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.camp_rv_write_skeleton .sk_stars span {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.camp_rv_write_skeleton .sk_head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.camp_rv_write_skeleton .sk_chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.camp_rv_write_skeleton .sk_chips span {
  width: 72px;
  height: 36px;
  border-radius: 8px;
}

.camp_rv_write_skeleton .sk_chips_many span:nth-child(3n) { width: 96px; }
.camp_rv_write_skeleton .sk_chips_many span:nth-child(4n) { width: 110px; }
.camp_rv_write_skeleton .sk_chips_many span:nth-child(5n) { width: 84px; }

.camp_rv_write_skeleton .sk_banner {
  height: 48px;
  border-radius: 10px;
}

.camp_rv_write_skeleton .sk_photo {
  width: 80px;
  height: 80px;
  margin-top: 12px;
  border-radius: 8px;
}

.camp_rv_write_skeleton .sk_textarea {
  height: 160px;
  border-radius: 10px;
}

.camp_rv_write_skeleton .sk_host {
  display: flex;
  align-items: center;
  gap: 12px;
}

.camp_rv_write_skeleton .sk_toggle {
  flex: 0 0 48px;
  width: 48px;
  height: 28px;
  border-radius: 999px;
}

/* ========== 나의 후기 (/my/resList.hbb?status=RESBRD) ========== */
.my_camp_rv_page {
  padding: 8px 20px 40px;
  background: #fff;
}

.my_camp_rv_profile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0 16px;
}

.my_camp_rv_profile .avatar {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  background: #f1f1f3 url("/images/no_img_user.png") center / cover no-repeat;
}

.my_camp_rv_profile .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.my_camp_rv_profile .nick {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #171719;
}

.my_camp_rv_profile .help {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: #5a5a5e;
}

.my_camp_rv_profile .help .ico {
  margin-right: 2px;
}

.my_camp_rv_profile .help em {
  font-style: normal;
  font-weight: 700;
  color: #171719;
}

.my_camp_rv_point {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 10px;
  background: #f7f7f8;
}

.my_camp_rv_point .txt {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #171719;
}

.my_camp_rv_point .txt em {
  font-style: normal;
  color: #ff6a00;
}

.my_camp_rv_point .btn_info {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border: 1px solid #c8c8cc;
  border-radius: 50%;
  background: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  color: #8b8b8e;
  cursor: pointer;
}

.my_camp_rv_tabs {
  display: flex;
  gap: 0;
  margin-bottom: 12px;
  border-radius: 10px;
  background: #f1f1f3;
}

.my_camp_rv_tabs .tab {
  flex: 1;
  height: 44px;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: #8b8b8e;
  cursor: pointer;
}

.my_camp_rv_tabs .tab:first-child {
  border-radius: 10px 0 0 10px;
}

.my_camp_rv_tabs .tab:last-child {
  border-radius: 0 10px 10px 0;
}

.my_camp_rv_tabs .tab.on {
  background: #fff;
  box-shadow: inset 0 0 0 1px #e1e2e4;
  color: #171719;
  position: relative;
  z-index: 1;
}

.my_camp_rv_tip {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.4;
  color: #8b8b8e;
}

.my_camp_rv_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.my_camp_rv_card {
  padding: 16px;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  background: #fff;
}

.my_camp_rv_card .info_row {
  display: flex;
  gap: 12px;
}

.my_camp_rv_card .thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  background: #f1f1f3;
}

.my_camp_rv_card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.my_camp_rv_card .meta {
  flex: 1;
  min-width: 0;
}

.my_camp_rv_card .name {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: #171719;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.my_camp_rv_card .visit {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.4;
  color: #8b8b8e;
}

.my_camp_rv_card .badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.my_camp_rv_card .badge.dday {
  font-size: 13px;
  font-weight: 700;
  color: #ff6a00;
}

.my_camp_rv_card .badge.coupon {
  font-size: 13px;
  font-weight: 600;
  color: #2f6bff;
}

.my_camp_rv_card .btns {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.my_camp_rv_card .btns button {
  flex: 1;
  height: 44px;
  border: 0;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.my_camp_rv_card .btn_write {
  background: #ff6a00;
  color: #fff;
}

.my_camp_rv_card .btn_rebook {
  background: #f1f1f3;
  color: #171719;
}

.my_camp_rv_card.written.is_link {
  cursor: pointer;
}

.my_camp_rv_card.written .meta_row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.my_camp_rv_card.written .written_date {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 4px;
  background: #eef4ff;
  font-size: 12px;
  font-weight: 600;
  color: #2f6bff;
}

.my_camp_rv_card.written .score {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 13px;
  font-weight: 700;
  color: #171719;
}

.my_camp_rv_card.written .score svg {
  width: 14px;
  height: 14px;
  color: #ffb800;
}

.my_camp_rv_card.written .score em {
  font-style: normal;
}

.my_camp_rv_card.written .foot_row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.my_camp_rv_card.written .point_pending {
  margin: 0;
  min-height: 18px;
  text-align: right;
  font-size: 13px;
  font-weight: 700;
  color: #ff6a00;
}

.my_camp_rv_card.written .point_pending.placeholder {
  min-height: 0;
}

.my_camp_rv_card.written .btns {
  margin-top: 0;
}

.my_camp_rv_card.written .btn_rebook {
  flex: 1;
}

.my_camp_rv_card.written .btn_more {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: #f1f1f3;
  color: #171719;
  cursor: pointer;
}

.my_camp_rv_card.written .btn_more svg {
  display: block;
  margin: 0 auto;
}

.my_camp_rv_edit_actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 8px 0 20px;
}

.my_camp_rv_edit_actions button {
  width: 100%;
  height: 52px;
  border: 1px solid #e1e2e4;
  border-radius: 12px;
  background: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.my_camp_rv_edit_actions .btn_edit {
  color: #171719;
}

.my_camp_rv_edit_actions .btn_delete {
  color: #ff3b30;
}

.my_camp_rv_loading_more {
  padding: 16px 0 8px;
  text-align: center;
  font-size: 13px;
  color: #8b8b8e;
}

/* ========== 메인 생생한 후기 (/main.hbb) ========== */
.main_camp_rv_sec {
  margin-top: 45px;
  padding: 0 0 8px;
}

.main_camp_rv_head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 0 20px;
  margin-bottom: 14px;
  overflow: visible;
}

.main_camp_rv_head .tit_wrap {
  flex: 1;
  min-width: 0;
}

.main_camp_rv_head .tit_wrap .tit {
  display: block;
  float: none;
  margin: 0;
  padding: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.4px;
  color: #171719;
}

.main_camp_rv_head .tit_wrap .sub {
  display: block;
  float: none;
  margin: 6px 0 0;
  padding: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: #8b8b8e;
}

.main_camp_rv_head .more {
  flex: 0 0 auto;
  float: none;
  margin-top: 2px;
  padding: 0;
  background: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #ff4802;
  text-decoration: none;
}

.main_camp_rv_filters {
  display: flex;
  gap: 8px;
  padding: 0 20px 14px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.main_camp_rv_filters::-webkit-scrollbar {
  display: none;
}

.main_camp_rv_filters .chip {
  flex: 0 0 auto;
  height: 34px;
  padding: 0 14px;
  border: 1px solid #e1e2e4;
  border-radius: 8px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: #171719;
  white-space: nowrap;
  cursor: pointer;
}

.main_camp_rv_filters .chip.on {
  border-color: #171719;
  background: #171719;
  color: #fff;
}

.main_camp_rv_swiper {
  padding: 0 20px 4px;
  overflow: hidden;
}

.main_camp_rv_swiper .swiper-slide {
  width: 260px;
}

.main_camp_rv_empty {
  width: 100% !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px 0;
  text-align: center;
  font-size: 14px;
  color: #8b8b8e;
}

.main_camp_rv_empty .msg {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #8b8b8e;
}

.main_camp_rv_card {
  display: block;
  width: 100%;
  border: 1px solid #ebebeb;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  color: inherit;
}

.main_camp_rv_card .thumb {
  position: relative;
  width: 100%;
  height: 160px;
  background: #f1f1f3;
  overflow: hidden;
}

.main_camp_rv_card .thumb.noimg {
  background: linear-gradient(135deg, #f1f1f3, #e8e8ea);
}

.main_camp_rv_card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main_camp_rv_card .badges {
  position: absolute;
  left: 10px;
  top: 10px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.main_camp_rv_card .badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.main_camp_rv_card .badge svg {
  width: 12px;
  height: 12px;
}

.main_camp_rv_card .badge.score svg {
  color: #ffb800;
}

.main_camp_rv_card .badge em {
  font-style: normal;
}

.main_camp_rv_card .btn_favor {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 2;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.main_camp_rv_card .btn_favor svg {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.main_camp_rv_card .btn_favor.on {
  color: #ff3b30;
}

.main_camp_rv_card .body {
  padding: 12px 12px 8px;
}

.main_camp_rv_card .camp {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: #171719;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.main_camp_rv_card .loc {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: #8b8b8e;
}

.main_camp_rv_card .cont {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: #5a5a5e;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 38px;
}

.main_camp_rv_card .foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 12px 12px;
}

.main_camp_rv_card .user {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.main_camp_rv_card .avatar {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  overflow: hidden;
  background: #f1f1f3;
}

.main_camp_rv_card .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main_camp_rv_card .nick {
  font-size: 12px;
  font-weight: 600;
  color: #171719;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main_camp_rv_card .date {
  flex: 0 0 auto;
  font-size: 11px;
  color: #8b8b8e;
}

/* ========== 전체 방문후기 (/talk/list.hbb) ========== */
.camp_rv_all_page .camp_rv_list_sec {
  padding-top: 8px;
}

.camp_rv_all_filter_body {
  max-height: 55vh;
  overflow-y: auto;
  padding-bottom: 8px;
}

.camp_rv_all_filter_body .filter_group {
  margin-bottom: 18px;
}

.camp_rv_all_filter_body .group_tit {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
  color: #171719;
}

.camp_rv_all_filter_body .chip_list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.camp_rv_all_filter_body .chip {
  height: 34px;
  padding: 0 12px;
  border: 1px solid #e1e2e4;
  border-radius: 8px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: #171719;
  cursor: pointer;
}

.camp_rv_all_filter_body .chip.on {
  border-color: #171719;
  background: #171719;
  color: #fff;
}

.camp_rv_all_filter_actions {
  display: flex;
  gap: 8px;
  padding: 12px 0 calc(12px + env(safe-area-inset-bottom, 0px));
}

.camp_rv_all_filter_actions .btn_reset,
.camp_rv_all_filter_actions .btn_apply {
  height: 48px;
  border: 0;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.camp_rv_all_filter_actions .btn_reset {
  flex: 0 0 96px;
  background: #f1f1f3;
  color: #171719;
}

.camp_rv_all_filter_actions .btn_apply {
  flex: 1;
  background: #171719;
  color: #fff;
}

.camp_rv_rate .badge.camp {
  color: #171719;
  font-weight: 700;
}

/* 전체 방문후기 카드 v2 */
.camp_rv_card_v2 {
  padding: 20px 0;
}

.camp_rv_card_v2 .camp_rv_visit_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 6px;
}

.camp_rv_card_v2 .camp_rv_visit_row .stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.camp_rv_card_v2 .camp_rv_visit_row .star {
  display: inline-flex;
  width: 14px;
  height: 14px;
  color: #e1e2e4;
}

.camp_rv_card_v2 .camp_rv_visit_row .star.on {
  color: #ffb800;
}

.camp_rv_card_v2 .camp_rv_visit_row .star svg {
  width: 14px;
  height: 14px;
}

.camp_rv_card_v2 .camp_rv_visit_row .sep {
  width: 1px;
  height: 12px;
  background: #e1e2e4;
}

.camp_rv_card_v2 .camp_rv_visit_row .visit {
  font-size: 13px;
  line-height: 1.4;
  color: #5a5a5e;
}

.camp_rv_card_v2 .camp_rv_camp_line {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.4;
  color: #8b8b8e;
}

.camp_rv_card_v2 .camp_rv_content {
  margin-bottom: 0;
  line-height: 1.45;
  color: #171719;
}

.camp_rv_card_v2 .camp_rv_content_more {
  margin: 6px 0 0;
}

.camp_rv_card_v2 .camp_rv_imgs {
  margin-top: 12px;
  margin-bottom: 0;
}

.camp_rv_camp_link {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin: 16px 0 0;
  padding: 12px;
  border: 1px solid #e8e8ec;
  border-radius: 12px;
  background: #fff;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  color: inherit;
  outline: none;
}

.camp_rv_camp_link .thumb {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  background: #f1f1f3;
}

.camp_rv_camp_link .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.camp_rv_camp_link .info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.camp_rv_camp_link .name {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: #171719;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.camp_rv_camp_link .addr {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(55, 56, 60, 0.61);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.camp_rv_camp_link .arr {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(55, 56, 60, 0.45);
}

.camp_rv_camp_link .arr svg {
  width: 16px;
  height: 16px;
}

.camp_rv_camp_link.is_closed .thumb {
  position: relative;
}

.camp_rv_camp_link.is_closed .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  border-radius: inherit;
  pointer-events: none;
}

.camp_rv_camp_link .closed_msg {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(55, 56, 60, 0.61);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.camp_rv_camp_link .badge_closed,
.camp_rv_detail_camp_card .badge_closed {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 8px;
  border-radius: 6px;
  background: #f1f1f3;
  color: rgba(55, 56, 60, 0.61);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.camp_rv_site_closed_msg {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: #ff5c00;
}

.camp_rv_site_closed_msg .ico {
  display: inline-flex;
  flex: 0 0 auto;
  color: #ff5c00;
}

.camp_rv_site_closed_msg .ico svg {
  display: block;
}

.camp_rv_toast {
  position: fixed;
  left: 50%;
  bottom: 40px;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 8px;
  width: calc(100% - 48px);
  max-width: 592px;
  padding: 12px 16px;
  border-radius: 8px;
  background: #2c2c2e;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.camp_rv_toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.camp_rv_toast .ico {
  display: inline-flex;
  flex: 0 0 auto;
  color: #fff;
}

.camp_rv_toast .ico svg {
  display: block;
}

.camp_rv_help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

.camp_rv_help .ask {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: #8b8b8e;
}

.camp_rv_help .btn_like {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 52px;
  height: 32px;
  padding: 0 10px;
  border: 1px solid #e1e2e4;
  border-radius: 8px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: #5a5a5e;
  cursor: pointer;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
}

.camp_rv_help .btn_like.on {
  border-color: #ff4802;
  color: #ff4802;
  background: #fff;
}

.camp_rv_help .btn_like svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
/* ========== 유저 후기 내역 (/talk/user_review.hbb) ========== */
.camp_rv_user_page {
  padding: 8px 16px 40px;
  background: #fff;
  box-sizing: border-box;
}

.camp_rv_user_page * {
  box-sizing: border-box;
}

.camp_rv_user_head {
  padding: 8px 4px 4px;
}

.camp_rv_user_head .count {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #171719;
  letter-spacing: -0.3px;
}

.camp_rv_user_head .count em {
  font-style: normal;
  font-weight: 700;
}

.camp_rv_user_head .profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.camp_rv_user_head .avatar {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: #f1f1f3;
}

.camp_rv_user_head .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.camp_rv_user_head .meta {
  flex: 1;
  min-width: 0;
}

.camp_rv_user_head .nick {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #171719;
}

.camp_rv_user_head .help_badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  height: 24px;
  padding: 0 8px;
  border-radius: 6px;
  background: #ffe8df;
  color: #ff5c00;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.camp_rv_user_head .help_badge svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.camp_rv_user_toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  padding: 14px 4px;
  border-top: 1px solid #f1f1f3;
}

.camp_rv_user_sort {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.camp_rv_user_sort .sort_btn {
  height: 32px;
  padding: 0 12px;
  border: 1px solid #e1e2e4;
  border-radius: 999px;
  background: #fff;
  color: rgba(55, 56, 60, 0.61);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.camp_rv_user_sort .sort_btn.on {
  border-color: #171719;
  background: #171719;
  color: #fff;
}

.camp_rv_user_photo_only {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}

.camp_rv_user_photo_only .label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(55, 56, 60, 0.61);
}

.camp_rv_user_photo_only .camp_rv_toggle {
  width: 40px;
  height: 24px;
}

.camp_rv_user_photo_only .camp_rv_toggle .track::after {
  width: 18px;
  height: 18px;
}

.camp_rv_user_photo_only .camp_rv_toggle input:checked + .track::after {
  transform: translateX(16px);
}

.camp_rv_user_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}

.camp_rv_user_grid .card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}

.camp_rv_user_grid.photo_only .card.is_text {
  display: none;
}

.camp_rv_user_grid .card .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.camp_rv_user_grid .card .dim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.camp_rv_user_grid .card.is_text {
  padding: 20px 18px;
}

.camp_rv_user_grid .card.is_text.tone_a {
  background: linear-gradient(160deg, #4ecdc4 0%, #5563de 100%);
}

.camp_rv_user_grid .card.is_text.tone_b {
  background: linear-gradient(160deg, #5b8def 0%, #8b5cf6 100%);
}

.camp_rv_user_grid .card.is_text.tone_c {
  background: linear-gradient(160deg, #34d399 0%, #3b82f6 100%);
}

.camp_rv_user_grid .card .quote {
  display: block;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  opacity: 0.9;
}

.camp_rv_user_grid .card .snippet {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: keep-all;
  color: #fff;
}

.camp_rv_user_grid .card .info {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.camp_rv_user_grid .card .area {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  opacity: 0.9;
}

.camp_rv_user_grid .card .name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.camp_rv_user_empty {
  grid-column: 1 / -1;
  padding: 48px 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: rgba(55, 56, 60, 0.61);
}

.camp_rv_user_empty.camp_rv_load_error {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.camp_rv_user_empty.camp_rv_load_error .msg {
  margin: 0;
}
