/**
 * 픽앤뷰 리뉴얼 서브 페이지 CSS
 * Figma 디자인 기반
 */

/* ===== 공통 서브페이지 래퍼 ===== */
.renewal-sub {
  font-family: "Pretendard", "Helvetica Neue", sans-serif;
  color: #171717;
  background-color: #fff;
  padding-top: 100px;
  min-height: 100vh;
}

.renewal-sub *,
.renewal-sub *::before,
.renewal-sub *::after {
  box-sizing: border-box;
}

.renewal-sub .sub-inner {
  max-width: 1280px; /* 1200px content + 좌우 40px padding */
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== 통일 페이지 타이틀 (Campaign, Review, Youtube) ===== */
.renewal-sub .campaign-page-title,
.renewal-sub .review-page-title,
.renewal-sub .youtube-page-title {
  font-family: 'Poppins', 'Pretendard', sans-serif;
  font-size: 42px;
  font-weight: 600;
  color: #171717;
  margin: 64px 0 0;
  letter-spacing: -0.42px;
  line-height: 52px;
}

/* ===== 카테고리 필터 탭 (좌측 정렬) ===== */
.renewal-sub .category-tabs {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 32px;
  margin-bottom: 56px;
}

.renewal-sub .category-tabs a {
  font-family: "Pretendard", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #bbb;
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease;
}

.renewal-sub .category-tabs a:hover {
  color: #171717;
}

.renewal-sub .category-tabs a.active {
  color: #171717;
  font-weight: 600;
  border-bottom-color: #171717;
}

/* ===== 리뷰 탭 — 캠페인 탭과 동일 (.category-tabs 상속) ===== */

/* ===== 섹션 공통 ===== */
.renewal-sub .campaign-section {
  margin-bottom: 40px;
}

.renewal-sub .section-title {
  font-size: 24px;
  font-weight: 600;
  color: #171717;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.renewal-sub .section-divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 20px 0 48px 0;
}

/* ===== 진행중인 캠페인 - 가로 스크롤 ===== */
.renewal-sub .campaign-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.renewal-sub .campaign-scroll::-webkit-scrollbar {
  display: none;
}

.renewal-sub .campaign-scroll .campaign-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 280px;
}

/* 스크롤 카드 - 모바일과 동일한 매거진 오버레이 (PC 포함 전 해상도) */
.renewal-sub .campaign-scroll .campaign-card .card-image {
  border-radius: 2px;
}

.renewal-sub .campaign-scroll .campaign-card .card-overlay {
  padding: 0 24px 24px;
  min-height: 100%;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}

.renewal-sub .campaign-scroll .campaign-card .card-overlay-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 6px;
}

.renewal-sub .campaign-scroll .campaign-card .card-badge {
  padding: 2px 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2px;
  border-radius: 2px;
  line-height: 1.3;
}

.renewal-sub .campaign-scroll .campaign-card .card-overlay-top .card-brand {
  font-weight: 400;
  opacity: 0.88;
}

.renewal-sub .campaign-scroll .campaign-card .card-info-icon {
  display: none;
}

.renewal-sub .campaign-scroll .campaign-card .card-divider {
  font-size: 11px;
  width: auto;
  height: auto;
  background: transparent;
  color: rgba(255,255,255,0.5);
  margin: 0 2px;
}

/* ===== 캠페인 카드 (오버레이 스타일) ===== */
.renewal-sub .campaign-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.renewal-sub .campaign-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* 카드 이미지 + 오버레이 영역 */
.renewal-sub .campaign-card .card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 0;
  overflow: hidden;
  background: #e8e8e8;
}

.renewal-sub .campaign-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 하단 그라데이션 오버레이 */
.renewal-sub .campaign-card .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 28px 28px;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.02) 30%,
    rgba(0,0,0,0.08) 55%,
    rgba(0,0,0,0.22) 80%,
    rgba(0,0,0,0.38) 100%
  );
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  min-height: 65%;
}

.renewal-sub .campaign-card .card-overlay-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
}

/* 상태 배지 (D-day / 모집완료) */
.renewal-sub .campaign-card .card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1px 8px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  line-height: normal;
  letter-spacing: 0.2px;
}

.renewal-sub .campaign-card .card-badge.recruiting {
  background: #000;
}

.renewal-sub .campaign-card .card-badge.completed {
  background: rgba(0,0,0,0.5);
}

/* 브랜드명 (오버레이 위 — 보조 라벨) */
.renewal-sub .campaign-card .card-brand {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  line-height: 1.4;
  letter-spacing: -0.1px;
}

/* 캠페인명 (오버레이 메인 타이틀) */
.renewal-sub .campaign-card .card-desc {
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  letter-spacing: -0.2px;
  text-align: center;
  margin: 4px 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* 카드 하단 정보 — 모집인원·형태 (보조 강조) */
.renewal-sub .campaign-card .card-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.12px;
}

.renewal-sub .campaign-card .card-info-icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  opacity: 1;
}

.renewal-sub .campaign-card .card-recruit {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 400;
  color: #fff;
}

.renewal-sub .campaign-card .card-divider {
  font-size: 0;
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.5);
  margin: 0 2px;
}

.renewal-sub .campaign-card .card-type {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 400;
  color: #fff;
}

.renewal-sub .campaign-card .card-type-icon {
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  opacity: 1;
}

/* 진행중인 캠페인 빈 상태 */
.renewal-sub .campaign-empty {
  padding: 60px 20px;
  text-align: center;
}
.renewal-sub .campaign-empty p {
  font-size: 14px;
  color: #999;
  line-height: 1.8;
}

/* 종료된 캠페인 */
.renewal-sub .campaign-card.disabled .card-image {
  opacity: 1;
}

/* ===== 전체 캠페인 - 3열 그리드 ===== */
.renewal-sub .campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

/* 그리드 카드 - 스크롤 카드와 동일한 매거진 오버레이 (PC 전용) */
@media (min-width: 769px) {
  .renewal-sub .campaign-grid .campaign-card .card-image {
    border-radius: 2px;
  }

  .renewal-sub .campaign-grid .campaign-card .card-overlay {
    padding: 0 24px 24px;
    min-height: 100%;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
  }

  .renewal-sub .campaign-grid .campaign-card .card-overlay-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 6px;
  }

  .renewal-sub .campaign-grid .campaign-card .card-badge {
    padding: 2px 7px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2px;
    border-radius: 2px;
    line-height: 1.3;
  }

  .renewal-sub .campaign-grid .campaign-card .card-overlay-top .card-brand {
    font-weight: 400;
    opacity: 0.88;
  }

  .renewal-sub .campaign-grid .campaign-card .card-info-icon {
    display: none;
  }

  .renewal-sub .campaign-grid .campaign-card .card-divider {
    font-size: 11px;
    width: auto;
    height: auto;
    background: transparent;
    color: rgba(255,255,255,0.5);
    margin: 0 2px;
  }
}

/* ===== 캠페인 상세 페이지 - 2단 레이아웃 ===== */
.renewal-sub .detail-layout {
  display: flex;
  gap: 40px;
  align-items: stretch;
  max-width: 980px;
  margin: 0 auto;
  padding-top: 64px;
}

/* 좌측: 메인 콘텐츠 영역 */
.renewal-sub .detail-main {
  flex: 1;
  min-width: 0;
}

/* 히어로 헤더: 브랜드명 + 캠페인명 (Figma PC: brand 20px Bold, title 20px Medium/28px) */
.renewal-sub .detail-hero-header {
  margin-bottom: 24px;
}

.renewal-sub .detail-hero-brand {
  font-size: 16px;
  font-weight: 500;
  color: #171717;
  margin-bottom: 6px;
  letter-spacing: 0.2px;
  line-height: normal;
}

.renewal-sub .detail-hero-campaign-title {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  line-height: 32px;
  letter-spacing: 0;
}

.renewal-sub .detail-hero {
  position: relative;
  margin-bottom: 40px;
  overflow: hidden;
}

.renewal-sub .detail-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.renewal-sub .detail-hero-swiper {
  position: relative;
  width: 100%;
}
.renewal-sub .detail-hero-swiper .swiper-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.renewal-sub .detail-hero-counter {
  display: none;
}

/* 히어로 슬라이더 dot indicator (인스타 피드 스타일) */
.renewal-sub .detail-hero-pagination {
  position: absolute;
  bottom: 14px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
  font-size: 0;
  pointer-events: auto;
}
.renewal-sub .detail-hero-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: #fff;
  opacity: 0.4;
  margin: 0 3px;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: opacity 0.2s;
}
.renewal-sub .detail-hero-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #fff;
}

/* 캠페인 기본 정보 섹션 (Figma PC: gap 20px between columns, 130px label) */
.renewal-sub .detail-info-section {
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0f0f0;
}

.renewal-sub .detail-info-section .info-table {
  margin: 0;
}

.renewal-sub .detail-info-section .info-row {
  display: flex;
  align-items: baseline;
  padding: 4px 0;
  gap: 32px;
}

.renewal-sub .detail-info-section .info-row dt {
  flex-shrink: 0;
  width: 120px;
  font-family: 'Pretendard', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #474747;
  line-height: 22px;
  letter-spacing: -0.01em;
}

.renewal-sub .detail-info-section .info-row dd {
  font-family: 'Pretendard', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #474747;
  line-height: 22px;
  margin: 0;
  letter-spacing: -0.01em;
}

.renewal-sub .detail-info-section .info-heading {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 32px 0 20px;
  padding-top: 28px;
  border-top: 1px solid #e5e5e5;
  line-height: normal;
  letter-spacing: -0.02em;
}

/* ===== STEP 안내 섹션 (Figma PC: label 12px, title 24px, desc 18px Medium) ===== */
.renewal-sub .detail-steps {
  margin-bottom: 56px;
}

.renewal-sub .detail-steps .step-item {
  padding: 36px 0;
  border-bottom: none;
}

.renewal-sub .detail-steps .step-item:first-child {
  padding-top: 0;
}

.renewal-sub .detail-steps .step-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: auto;
  padding: 5px 10px;
  background: #f2f2f2;
  color: #555;
  border: none;
  border-radius: 4px;
  font-family: 'Poppins', 'Pretendard', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.renewal-sub .detail-steps .step-title {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.renewal-sub .detail-steps .step-desc {
  font-size: 15px;
  font-weight: 400;
  color: #8a8a8a;
  line-height: 24px;
  margin: 0;
  letter-spacing: -0.03em;
}

/* 서브 스텝 */
.renewal-sub .step-substeps {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.renewal-sub .substep {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0;
  position: relative;
  min-height: 0;
}

.renewal-sub .substep:not(:last-child) {
  padding-bottom: 36px;
}

/* 번호 원 사이 수직 연결선 */
.renewal-sub .substep:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 32px;
  bottom: 8px;
  height: auto;
  width: 0;
  border-left: 1px solid #e0e0e0;
}

.renewal-sub .substep-num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #eef0fe;
  color: #4f46e5;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  line-height: 1;
}

.renewal-sub .substep-body {
  flex: 1;
  padding-top: 0;
}

.renewal-sub .substep-body strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 24px;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.renewal-sub .substep-body p {
  font-size: 14px;
  font-weight: 400;
  color: #8a8a8a;
  line-height: 22px;
  margin: 0;
  letter-spacing: -0.03em;
}

/* ===== 유의사항 박스 (Figma PC: bg #fafafa, rounded 10px, title 20px) ===== */
.renewal-sub .detail-notice {
  margin-bottom: 48px;
}

.renewal-sub .notice-box {
  background: #f5f6fc;
  border-radius: 12px;
  padding: 24px 28px;
}

.renewal-sub .detail-notice .notice-title {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 18px;
  padding: 0 0 16px !important;
  border-bottom: 1px solid #e5e7f2;
  flex: none;
  cursor: default;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.renewal-sub .notice-title svg {
  flex-shrink: 0;
  color: #1a1a1a;
  width: 24px;
  height: 24px;
  display: block;
}

.renewal-sub .notice-list {
  margin: 0;
  padding: 0;
}

.renewal-sub .notice-list p {
  display: flex;
  gap: 12px;
  margin: 0 0 12px;
  padding: 0;
  text-indent: 0;
  font-size: 14px;
  font-weight: 400;
  color: #3a3a3a;
  line-height: 1.65;
  letter-spacing: -0.02em;
}

.renewal-sub .notice-list p:last-child {
  margin-bottom: 0;
}

.renewal-sub .notice-list .notice-num {
  flex: 0 0 auto;
  min-width: 14px;
  margin: 0;
  color: #3a3a3a;
  font-weight: 400;
}

/* 콘텐츠 본문 */
.renewal-sub .detail-content {
  padding-bottom: 48px;
}

.renewal-sub .detail-content .content-body {
  margin-bottom: 0;
  overflow: hidden;
}

.renewal-sub .detail-content .content-collapsible {
  max-height: 800px;
  position: relative;
}

.renewal-sub .detail-content .content-collapsible::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(transparent, #fff);
  pointer-events: none;
}

.renewal-sub .detail-content .content-collapsible.expanded {
  max-height: none;
}

.renewal-sub .detail-content .content-collapsible.expanded::after {
  display: none;
}

.renewal-sub .content-more-wrap {
  text-align: center;
  padding: 16px 0 40px;
}

.renewal-sub .btn-content-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  background: #fff;
  color: #171717;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.renewal-sub .btn-content-more:hover {
  background: #f5f5f5;
  border-color: #bbb;
}

.renewal-sub .btn-content-more svg {
  transition: transform 0.3s ease;
}

.renewal-sub .detail-content .content-body img {
  display: block;
  max-width: 100%;
  height: auto;
}

.renewal-sub .detail-content .content-body p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

/* 댓글 섹션 */
.renewal-sub .detail-comments {
  border-top: 1px solid #eee;
  padding-top: 40px;
  margin-bottom: 40px;
}

.renewal-sub .detail-comments .comment-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #f5f5f5;
}

.renewal-sub .detail-comments .comment-avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: #f0f0f0;
}

.renewal-sub .detail-comments .comment-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.renewal-sub .detail-comments .comment-body {
  flex: 1;
  min-width: 0;
}

.renewal-sub .detail-comments .comment-user {
  font-size: 15px;
  font-weight: 600;
  color: #171717;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.renewal-sub .detail-comments .comment-user .btn-edit {
  font-size: 13px;
  font-weight: 400;
  color: #999;
  background: none;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 2px 8px;
  cursor: pointer;
  text-decoration: none;
}

.renewal-sub .detail-comments .comment-text {
  font-size: 15px;
  font-weight: 400;
  color: #444;
  line-height: 1.6;
  margin-bottom: 8px;
  word-break: break-word;
}

.renewal-sub .detail-comments .comment-text.blinded {
  color: #aaa;
  font-style: italic;
}

.renewal-sub .detail-comments .comment-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.renewal-sub .detail-comments .comment-date {
  font-size: 13px;
  font-weight: 400;
  color: #aaa;
}

.renewal-sub .detail-comments .btn-report {
  font-size: 13px;
  font-weight: 500;
  color: #aaa;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.renewal-sub .detail-comments .btn-report:hover {
  color: #666;
}

/* 페이징 */
.renewal-sub .detail-paging {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

/* 목록 버튼 */
.renewal-sub .detail-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}

.renewal-sub .detail-actions .btn-list {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 48px;
  padding: 0 32px;
  background: #fff;
  color: #171717;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid #171717;
  border-radius: 24px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.renewal-sub .detail-actions .btn-list:hover {
  background: #171717;
  color: #fff;
}

/* ===== 우측 Sticky 사이드바 (Figma PC: 340px, thumb 130x130) ===== */
.renewal-sub .detail-sidebar {
  flex-shrink: 0;
  width: 300px;
  margin-top: 82px;
}

.renewal-sub .sidebar-card {
  position: sticky;
  top: 164px;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 0;
  background: #fff;
  box-sizing: border-box;
  z-index: 100;
}

/* 상단: 썸네일 + 브랜드/타이틀 (캠페인 목록 모바일 카드 스타일) */
.renewal-sub .sidebar-top {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 16px;
}

.renewal-sub .sidebar-thumb {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 2px;
  overflow: hidden;
  background: #f0f0f0;
  position: relative;
}

.renewal-sub .sidebar-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* D-day 배지 (모바일 전체 캠페인 카드와 동일) */
.renewal-sub .sidebar-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 6px;
  height: auto;
  width: auto;
  background: #171717;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  border-radius: 2px;
  letter-spacing: 0;
  line-height: 1.2;
  white-space: nowrap;
}

.renewal-sub .sidebar-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  padding: 6px 0 4px;
}

.renewal-sub .sidebar-brand {
  font-size: 13px;
  font-weight: 600;
  color: #171717;
  margin-bottom: 4px;
  line-height: 1.25;
  letter-spacing: -0.26px;
}

.renewal-sub .sidebar-title {
  font-size: 13px;
  font-weight: 500;
  color: #555;
  line-height: 18px;
  letter-spacing: -0.28px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* 모집 정보 (sidebar-info 안) - chip 스타일, 하단 정렬 */
.renewal-sub .sidebar-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  margin-bottom: 0;
}

.renewal-sub .sidebar-meta > span {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: #f2f2f2;
  color: #5a5a5a;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 3px;
  line-height: 1.4;
  letter-spacing: -0.1px;
}

.renewal-sub .sidebar-meta > span.sidebar-divider {
  display: none;
}

.renewal-sub .sidebar-meta .sidebar-meta-icon {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  color: #5a5a5a;
  opacity: 1;
  display: inline-block;
}

.renewal-sub .sidebar-divider {
  font-size: 0;
  width: 1px;
  height: 10px;
  background: #e0e0e0;
  opacity: 1;
  margin: 0 4px;
}

/* 신청하기 버튼 */
.renewal-sub .btn-sidebar-apply {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 46px;
  background: #171717;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: opacity 0.2s ease;
}

.renewal-sub .btn-sidebar-apply:hover {
  opacity: 0.8;
}

/* 모집완료 / 종료 상태 (사이드바) - 비활성 스타일 */
.renewal-sub .sidebar-status-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  background: #e5e5e5;
  color: #8a8a8a;
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px;
  letter-spacing: 0.2px;
  cursor: default;
  pointer-events: none;
}

.renewal-sub .sidebar-status-badge.finished {
  background: #ececec;
  color: #a0a0a0;
}

/* 공유하기 버튼 (사이드바) */
.renewal-sub .btn-sidebar-share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 44px;
  margin-top: 12px;
  background: #fff;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.renewal-sub .btn-sidebar-share:hover {
  background: #f5f5f5;
  color: #171717;
  border-color: #bbb;
}

/* ===== 캠페인 초대코드 페이지 (v0.93) ===== */

.renewal-sub .invite-page {
  max-width: 480px;
  margin: 0 auto;
  padding: 120px 20px 80px;
  text-align: center;
}

.renewal-sub .invite-page__title {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #171717;
  margin: 0 0 12px;
}

.renewal-sub .invite-page__desc {
  font-size: 14px;
  color: #888;
  margin: 0 0 40px;
}

.renewal-sub .invite-form {
  display: flex;
  gap: 8px;
}

.renewal-sub .invite-form__input {
  flex: 1;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Pretendard', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.renewal-sub .invite-form__input:focus {
  border-color: #171717;
}

.renewal-sub .invite-form__btn {
  flex-shrink: 0;
  height: 48px;
  padding: 0 24px;
  background: #171717;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Pretendard', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
}

.renewal-sub .invite-form__btn:hover {
  background: #333;
}

.renewal-sub .invite-form__msg {
  margin-top: 12px;
  font-size: 13px;
  min-height: 20px;
}

.renewal-sub .invite-form__msg.error {
  color: #e53e3e;
}

.renewal-sub .invite-form__msg.success {
  color: #38a169;
}

@media (max-width: 480px) {
  .renewal-sub .invite-page {
    padding: 80px 16px 60px;
  }

  .renewal-sub .invite-page__title {
    font-size: 26px;
  }

  .renewal-sub .invite-form {
    flex-direction: column;
  }

  .renewal-sub .invite-form__btn {
    width: 100%;
  }
}

/* ===== 캠페인 신청 페이지 (피그마 리뉴얼) ===== */

/* 신청 페이지 타이틀 */
.renewal-sub .apply-page-title {
  font-family: 'Pretendard', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin: 0 0 48px;
  letter-spacing: -0.03em;
  width: 100%;
}

.renewal-sub .apply-layout {
  flex-wrap: wrap;
  padding: 60px 40px 80px;
  max-width: 860px;
}

/* 신청 페이지 사이드바 — 캠페인 상세와 동일 */
.renewal-sub .apply-sidebar {
  width: 300px;
  flex-shrink: 0;
  margin-top: 0;
}

.renewal-sub .apply-sidebar .sidebar-card {
  position: sticky;
  top: 164px;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 0;
  background: #fff;
  box-sizing: border-box;
}

/* 섹션 구분 */
.renewal-sub .apply-section {
  margin-bottom: 56px;
}

.renewal-sub .apply-section-title {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.renewal-sub .apply-section-desc {
  font-size: 15px;
  font-weight: 400;
  color: #888;
  margin: 0 0 36px;
  line-height: 22px;
}

/* 폼 필드 */
.renewal-sub .form-field {
  margin-bottom: 24px;
}

.renewal-sub .form-field .field-label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin-bottom: 8px;
  line-height: 26px;
}

.renewal-sub .form-field input[type="text"] {
  width: 100%;
  padding: 0 12px;
  border: none;
  border-bottom: 1px solid #e3e3e3;
  border-radius: 0;
  font-size: 14px;
  font-family: "Pretendard", sans-serif;
  color: #171717;
  background: transparent;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
  height: 44px;
  line-height: 44px;
  outline: none;
}

.renewal-sub .form-field input[type="text"]:focus {
  border-bottom-color: #000;
}

.renewal-sub .form-field input[type="text"]::placeholder {
  color: #999;
}

.renewal-sub .form-field input[type="text"][readonly] {
  color: #999;
}

/* 입력 필드 클리어(X) 버튼 */
.renewal-sub .field-input-wrap {
  position: relative;
}

.renewal-sub .field-input-wrap input[type="text"] {
  padding-right: 32px;
}

.renewal-sub .btn-field-clear {
  display: none;
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 0;
  line-height: 1;
}

.renewal-sub .btn-field-clear::before,
.renewal-sub .btn-field-clear::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  background: #333;
  transition: background 0.15s;
}

.renewal-sub .btn-field-clear::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.renewal-sub .btn-field-clear::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.renewal-sub .btn-field-clear:hover::before,
.renewal-sub .btn-field-clear:hover::after {
  background: #000;
}

.renewal-sub .btn-field-clear.visible {
  display: block;
}

.renewal-sub .field-msg {
  display: block;
  font-size: 12px;
  margin-top: 4px;
}
.renewal-sub .field-msg.error {
  color: #e53e3e;
}
.renewal-sub .field-msg.success {
  color: #38a169;
}

/* 성별 토글 */
.renewal-sub .gender-toggle {
  display: flex;
  gap: 0;
  margin-top: 4px;
}

.renewal-sub .gender-btn {
  flex: 1;
  height: 38px;
  border: 1px solid #ddd;
  border-radius: 0;
  background: #fff;
  color: #999;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.renewal-sub .gender-btn:first-child {
  border-right: none;
}

.renewal-sub .gender-btn.active {
  background: #171717;
  color: #fff;
  border-color: #171717;
}

/* 주소 입력 */
.renewal-sub .form-field .address-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.renewal-sub .form-field .address-row input {
  flex: 1;
  height: 44px;
  line-height: 44px;
}

.renewal-sub .form-field .address-row + input,
.renewal-sub .form-field .address-row + .field-input-wrap,
.renewal-sub .form-field input + input,
.renewal-sub .form-field input + .field-input-wrap {
  margin-top: 8px;
}

.renewal-sub .btn-address-search {
  flex-shrink: 0;
  padding: 7px 16px;
  background: #fff;
  color: #555;
  font-size: 13px;
  font-weight: 500;
  font-family: "Pretendard", sans-serif;
  border: 1px solid #d4d4d4;
  border-radius: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s;
  line-height: 1;
}

.renewal-sub .btn-address-search:hover {
  border-color: #171717;
}

/* 동의 체크박스 영역 */

.renewal-sub .apply-consent-all {
  padding: 0 0 12px;
}

.renewal-sub .apply-consent-all strong {
  font-size: 15px;
  font-weight: 600;
}

.renewal-sub .apply-consent-divider {
  height: 1px;
  background: #e3e3e3;
  margin: 0 0 8px;
}

.renewal-sub .apply-consent-item {
  padding: 8px 0;
}

.renewal-sub .apply-consent-item + .apply-consent-item {
  border-top: none;
}

.renewal-sub .consent-required {
  color: #bbb;
  font-weight: 400;
  font-size: 13px;
}

/* 약관 동의 섹션 */
.renewal-sub .apply-terms {
  margin-bottom: 48px;
}

.renewal-sub .apply-terms .apply-section-title {
  margin-bottom: 24px;
}

/* 약관 체크박스+정보 항목 */
.renewal-sub .terms-consent-item {
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}

.renewal-sub .terms-consent-item .myqna-form-agree-check {
  align-items: flex-start;
}

.renewal-sub .terms-consent-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.renewal-sub .terms-consent-label {
  font-size: 12px;
  font-weight: 400;
  color: #999;
}

.renewal-sub .terms-consent-value {
  font-size: 16px;
  font-weight: 700;
  color: #171717;
  line-height: 1.4;
}

.renewal-sub .terms-consent-note {
  font-size: 12px;
  font-weight: 400;
  color: #bbb;
}

/* 2차 활용 제안 — 라벨 좌 + 입력 우 한 줄 */
.renewal-sub .terms-secondary {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
}

.renewal-sub .terms-secondary-label {
  font-size: 13px;
  font-weight: 500;
  color: #999;
  white-space: nowrap;
  flex-shrink: 0;
}

.renewal-sub .terms-secondary-input {
  flex: 1;
  position: relative;
}

.renewal-sub .terms-secondary-input input[type="text"] {
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding: 0 32px 0 0;
  border: none;
  border-bottom: 1px solid #e3e3e3;
  border-radius: 0;
  font-size: 14px;
  font-family: "Pretendard", sans-serif;
  color: #171717;
  background: transparent;
  outline: none;
  text-align: right;
}

.renewal-sub .terms-secondary-input input[type="text"]:focus {
  border-bottom-color: #000;
}

.renewal-sub .terms-secondary-input input[type="text"]::placeholder {
  color: #ccc;
}

/* 모바일 캠페인 미니 카드 */
.renewal-sub .apply-campaign-card {
  display: none;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  margin-bottom: 32px;
  width: 100%;
  border-bottom: 1px solid #f0f0f0;
}

.renewal-sub .apply-campaign-thumb {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  overflow: hidden;
  background: #f0f0f0;
}

.renewal-sub .apply-campaign-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.renewal-sub .apply-campaign-info {
  flex: 1;
  min-width: 0;
}

.renewal-sub .apply-campaign-brand {
  display: block;
  font-size: 12px;
  color: #999;
  margin-bottom: 2px;
}

.renewal-sub .apply-campaign-title {
  font-size: 14px;
  font-weight: 600;
  color: #171717;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 정보 카드 (신청자/배송지) */
.renewal-sub .shipping-card {
  margin-bottom: 8px;
}

.renewal-sub .shipping-card-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid #e3e3e3;
}

.renewal-sub .shipping-card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.renewal-sub .shipping-card-name {
  font-size: 15px;
  font-weight: 600;
  color: #171717;
}

.renewal-sub .shipping-card-addr {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  word-break: keep-all;
}

.renewal-sub .shipping-card-phone {
  font-size: 13px;
  color: #666;
}

.renewal-sub .shipping-card-edit {
  flex-shrink: 0;
  margin-left: 16px;
  padding: 0;
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.renewal-sub .shipping-edit-done {
  width: 100%;
  height: 40px;
  margin-top: 8px;
  background: #171717;
  color: #fff;
  border: none;
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

/* 동의 체크박스 그룹 */

.renewal-sub .terms-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #999;
  margin-bottom: 6px;
  line-height: 1;
}

.renewal-sub .terms-value {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #171717;
  margin-bottom: 4px;
  line-height: 1.4;
}

.renewal-sub .terms-note {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #bbb;
  margin-top: 4px;
  line-height: 1.3;
}

/* 원형 토글 */
.renewal-sub .toggle-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 4px;
}

.renewal-sub .toggle-switch input {
  display: none;
}

.renewal-sub .toggle-slider {
  width: 22px;
  height: 22px;
  border: 2px solid #ddd;
  border-radius: 50%;
  position: relative;
  transition: all 0.2s;
  box-sizing: border-box;
}

.renewal-sub .toggle-switch input:checked + .toggle-slider {
  background: #171717;
  border-color: #171717;
}

.renewal-sub .toggle-switch input:checked + .toggle-slider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -60%) rotate(-45deg);
}

.renewal-sub .toggle-text {
  font-size: 14px;
  font-weight: 500;
  color: #171717;
}

/* 2차 활용 입력 */
.renewal-sub .terms-input {
  width: 100%;
  height: 48px;
  line-height: 48px;
  padding: 0 12px;
  border: none;
  border-bottom: 1px solid #e3e3e3;
  border-radius: 0;
  background: transparent;
  font-size: 14px;
  font-family: "Pretendard", sans-serif;
  color: #171717;
  box-sizing: border-box;
  outline: none;
}

.renewal-sub .terms-input:focus {
  border-bottom-color: #000;
}

.renewal-sub .terms-input::placeholder {
  color: #999;
}

/* SNS 입력 (prefix + input + 변경 버튼) */
.renewal-sub .sns-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 72px;
  border-bottom: 1px solid #e3e3e3;
  transition: border-color 0.2s;
  height: 48px;
}

.renewal-sub .sns-input-wrap:focus-within {
  border-bottom-color: #000;
}

.renewal-sub .sns-input-wrap:focus-within .sns-input-prefix {
  color: #555;
  transition: color 0.2s;
}

.renewal-sub .sns-input-prefix {
  flex-shrink: 0;
  font-size: 13px;
  color: #bbb;
  white-space: nowrap;
  line-height: 48px;
  transition: color 0.2s;
}

.renewal-sub .sns-input-prefix .sns-prefix-protocol {
  display: none;
}

.renewal-sub .sns-input-wrap input[type="text"] {
  flex: 1;
  min-width: 0;
  border-bottom: none !important;
  height: 48px;
  line-height: 48px;
  padding: 0 0 0 2px;
}

.renewal-sub .btn-sns-edit {
  position: absolute;
  right: 0;
  bottom: 6px;
  padding: 7px 16px;
  background: #fff;
  color: #555;
  font-size: 13px;
  font-weight: 500;
  font-family: "Pretendard", sans-serif;
  border: 1px solid #d4d4d4;
  border-radius: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  line-height: 1;
}

.renewal-sub .btn-sns-edit:hover {
  border-color: #171717;
  color: #171717;
}

/* ===== 신청 완료 페이지 ===== */
.renewal-sub .apply-complete {
  max-width: 600px;
  margin: 0 auto;
  padding: 80px 0 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.renewal-sub .apply-complete .complete-icon {
  margin-bottom: 32px;
}

.renewal-sub .apply-complete .complete-title {
  font-size: 36px;
  font-weight: 700;
  color: #171717;
  line-height: 1.3;
  margin: 0 0 12px;
}

.renewal-sub .apply-complete .complete-sub {
  font-size: 18px;
  font-weight: 400;
  color: #171717;
  margin: 0 0 24px;
}

.renewal-sub .apply-complete .complete-desc {
  font-size: 15px;
  font-weight: 400;
  color: #999;
  line-height: 1.6;
  margin: 0;
}

.renewal-sub .apply-complete .complete-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 80px;
  width: 100%;
  max-width: 400px;
}

.renewal-sub .apply-complete .btn-complete-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  border: 1px solid #ddd;
  border-radius: 0;
  background: #fff;
  color: #171717;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s;
}

.renewal-sub .apply-complete .btn-complete-outline:hover {
  border-color: #171717;
}

.renewal-sub .apply-complete .btn-complete-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  border: none;
  border-radius: 0;
  background: #171717;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.renewal-sub .apply-complete .btn-complete-primary:hover {
  background: #333;
}

/* ===== 유튜브 목록 페이지 ===== */

/* youtube-page-title: 통일 스타일은 상단 공통 블록에서 정의 */

/* 6컬럼 그리드: 첫 2개=3칸(50%), 나머지=2칸(33%) */
.renewal-sub .youtube-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px 20px;
  margin-top: 36px;
  margin-bottom: 60px;
}

.renewal-sub .youtube-grid .yt-card {
  grid-column: span 2;
}

.renewal-sub .youtube-grid .yt-card:nth-child(1),
.renewal-sub .youtube-grid .yt-card:nth-child(2) {
  grid-column: span 3;
}

/* 구분선: 첫 행(대형 카드 2개)과 나머지 행 사이 */
.renewal-sub .youtube-grid .yt-divider {
  grid-column: 1 / -1;
  height: 1px;
  background: #eee;
  margin: 0;
}

/* 첫 행 대형 카드 텍스트 크기 */
.renewal-sub .youtube-grid .yt-card:nth-child(1) .yt-category,
.renewal-sub .youtube-grid .yt-card:nth-child(2) .yt-category {
  font-size: 15px;
}

.renewal-sub .youtube-grid .yt-card:nth-child(1) .yt-title,
.renewal-sub .youtube-grid .yt-card:nth-child(2) .yt-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.22px;
}

.renewal-sub .youtube-grid .yt-card:nth-child(1) .yt-author,
.renewal-sub .youtube-grid .yt-card:nth-child(2) .yt-author {
  font-size: 14px;
}


.renewal-sub .yt-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.renewal-sub .yt-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0;
  overflow: hidden;
  background: #000;
}

.renewal-sub .yt-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.renewal-sub .yt-card:hover .yt-thumb img {
  transform: scale(1.03);
}

.renewal-sub .yt-info {
  padding: 16px 0 0;
}

.renewal-sub .yt-category {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #bbb;
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.3px;
}

.renewal-sub .yt-title {
  font-size: 20px;
  font-weight: 600;
  color: #171717;
  line-height: 30px;
  margin: 6px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.renewal-sub .yt-author {
  font-family: 'Pretendard', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #bbb;
  margin: 4px 0 0;
}

.renewal-sub .youtube-empty {
  text-align: center;
  padding: 80px 0;
  color: #999;
  font-size: 14px;
}

/* ===== 유튜브 반응형 - 태블릿 ===== */
@media (max-width: 1200px) {
  /* page-title: 통일 스타일 적용됨 */

  .renewal-sub .campaign-page-title,
  .renewal-sub .review-page-title,
  .renewal-sub .youtube-page-title {
    font-size: 36px;
    font-weight: 600;
    margin: 48px 0 0;
    line-height: 46px;
  }

  .renewal-sub .category-tabs {
    margin-top: 24px;
    margin-bottom: 44px;
  }

  .renewal-sub .youtube-page-title {
    margin-bottom: -12px;
  }

  .renewal-sub .youtube-grid {
    gap: 24px 16px;
  }

  .renewal-sub .youtube-grid .yt-card:nth-child(1) .yt-title,
  .renewal-sub .youtube-grid .yt-card:nth-child(2) .yt-title {
    font-size: 20px;
    line-height: 28px;
  }

  .renewal-sub .yt-title {
    font-size: 18px;
    line-height: 26px;
  }

  .renewal-sub .yt-thumb {
    width: calc(100% + 80px);
    margin-left: -40px;
    border-radius: 0;
  }
}

/* ===== 유튜브 반응형 - 모바일 ===== */
@media (max-width: 768px) {
  /* page-title: 통일 스타일 적용됨 */

  .renewal-sub .campaign-page-title,
  .renewal-sub .review-page-title,
  .renewal-sub .youtube-page-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: -0.03em;
    margin: 32px 0 0;
  }

  .renewal-sub .category-tabs {
    margin-top: 20px;
    margin-bottom: 28px;
    gap: 16px;
  }

  .renewal-sub .category-tabs a {
    font-size: 15px;
  }

  .renewal-sub .youtube-page-title {
    margin-bottom: -16px;
  }

  .renewal-sub .youtube-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .renewal-sub .youtube-grid .yt-card,
  .renewal-sub .youtube-grid .yt-card:nth-child(1),
  .renewal-sub .youtube-grid .yt-card:nth-child(2) {
    grid-column: span 1;
  }

  /* MO: 구분선 숨김 */
  .renewal-sub .youtube-grid .yt-divider {
    display: none;
  }

  /* MO: 첫 행 대형 카드 텍스트도 일반 크기로 */
  .renewal-sub .youtube-grid .yt-card:nth-child(1) .yt-category,
  .renewal-sub .youtube-grid .yt-card:nth-child(2) .yt-category {
    font-size: 13px;
  }

  .renewal-sub .youtube-grid .yt-card:nth-child(1) .yt-title,
  .renewal-sub .youtube-grid .yt-card:nth-child(2) .yt-title {
    font-size: 16px;
    line-height: 1.5;
  }

  .renewal-sub .youtube-grid .yt-card:nth-child(1) .yt-author,
  .renewal-sub .youtube-grid .yt-card:nth-child(2) .yt-author {
    font-size: 12px;
  }

  .renewal-sub .yt-category {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2px;
  }

  .renewal-sub .yt-title {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 4px;
  }

  .renewal-sub .yt-author {
    font-size: 12px;
    font-weight: 400;
    color: #999;
    margin-top: 2px;
  }

  .renewal-sub .yt-info {
    padding: 10px 0 0;
  }

  .renewal-sub .yt-thumb {
    width: calc(100% + 32px);
    margin-left: -16px;
    border-radius: 0;
    background: none;
  }
}

/* ===== 유튜브 상세 페이지 ===== */

/* 영상 플레이어 (16:9) */
/* ===== 유튜브 상세 ===== */
.renewal-sub .ytv-inner {
  max-width: calc(980px + 80px);
  padding: 0 40px;
}

.renewal-sub .ytv-player {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 0;
  background: #000;
  margin-top: 48px;
}

.renewal-sub .ytv-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* 유튜브 상세 — 리뷰 상세(srv-feed) 스타일 재사용 */
.renewal-sub .ytv-content.srv-feed__content {
  display: block;
  overflow: visible;
  max-height: none;
  padding: 16px 0 0;
}
.renewal-sub .ytv-content .srv-feed__profile-box {
  position: static;
  border-bottom: none;
  background: transparent;
}
.renewal-sub .ytv-content .srv-feed__username,
.renewal-sub .ytv-content .srv-feed__avatar {
  pointer-events: none;
  cursor: default;
}
.renewal-sub .ytv-video-title {
  font-size: 20px;
  font-weight: 700;
  color: #171717;
  line-height: 1.4;
  letter-spacing: -0.3px;
  margin: 8px 0 0;
}

/* 유튜브 상세 본문: 모든 해상도에서 4줄 클램프 + 더보기 토글 */
.renewal-sub .ytv-content .srv-feed__body {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: pre-wrap;
  max-height: none;
}
.renewal-sub .ytv-content .srv-feed__body--expanded {
  display: block !important;
  -webkit-line-clamp: unset !important;
  overflow: visible !important;
}
.renewal-sub .ytv-content .srv-feed__more-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 0;
  background: none;
  border: none;
  color: #888;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.13px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.renewal-sub .ytv-content .srv-feed__more-btn:hover {
  color: #222;
}
@media (max-width: 768px) {
  .renewal-sub .ytv-content .srv-feed__body {
    -webkit-line-clamp: 3;
  }
}


.renewal-sub .ytv-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

.renewal-sub .ytv-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 400;
  color: #999;
}

.renewal-sub .ytv-meta-item svg {
  color: #bbb;
}

/* 해시태그 */
.renewal-sub .ytv-hashtags {
  display: block;
  margin-top: 16px;
  padding-top: 0;
  border-top: none;
}

.renewal-sub .ytv-tag {
  display: inline;
  font-size: 13px;
  font-weight: 400;
  color: #1a1a1a;
  opacity: 0.4;
  margin-right: 6px;
  letter-spacing: 0;
  word-break: break-all;
}

/* 관련 리뷰 */
.renewal-sub .ytv-related {
  padding: 40px 0 60px;
}

.renewal-sub .ytv-related-title {
  font-size: 22px;
  font-weight: 700;
  color: #171717;
  letter-spacing: -0.3px;
  text-transform: none;
  margin: 0 0 24px;
}

.renewal-sub .ytv-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 20px;
}

/* ===== 유튜브 상세 반응형 - 태블릿 ===== */
@media (max-width: 1200px) {
  .renewal-sub .ytv-title {
    font-size: 22px;
  }

  .renewal-sub .ytv-related-grid {
    gap: 20px 16px;
  }
}

/* ===== 유튜브 상세 반응형 - 모바일 ===== */
@media (max-width: 768px) {
  .renewal-sub .ytv-inner {
    padding: 0 16px;
  }

  .renewal-sub .ytv-player {
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-top: 16px;
  }

  .renewal-sub .ytv-channel {
    padding: 14px 0 12px;
    gap: 8px;
  }

  .renewal-sub .ytv-channel-avatar {
    width: 32px;
    height: 32px;
  }

  .renewal-sub .ytv-channel-name {
    font-size: 13px;
  }

  .renewal-sub .ytv-category {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .renewal-sub .ytv-content.srv-feed__content {
    padding: 12px 0 0;
  }
  .renewal-sub .ytv-video-title {
    font-size: 17px;
    margin: 6px 0 0;
  }

  .renewal-sub .ytv-desc {
    font-size: 14px;
    line-height: 1.7;
  }
  .renewal-sub .ytv-desc-wrap.is-collapsed .ytv-desc {
    -webkit-line-clamp: 3;
  }

  .renewal-sub .ytv-info {
    padding-bottom: 24px;
  }

  .renewal-sub .ytv-hashtags {
    margin-top: 12px;
  }

  .renewal-sub .ytv-tag {
    font-size: 12px;
  }

  .renewal-sub .ytv-related {
    padding: 28px 0 40px;
  }

  .renewal-sub .ytv-related-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 16px;
  }

  .renewal-sub .ytv-related-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ===== 반응형 - 태블릿 ===== */
@media (max-width: 1200px) {
  .renewal-sub .sub-inner {
    padding: 0 40px;
  }

  .renewal-sub .campaign-scroll .campaign-card {
    flex: 0 0 calc(40% - 10px);
  }

  .renewal-sub .campaign-scroll .campaign-card .card-overlay {
    padding: 0 22px 22px;
    min-height: 45%;
  }

  .renewal-sub .campaign-scroll .campaign-card .card-brand {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
  }

  .renewal-sub .campaign-scroll .campaign-card .card-info {
    font-size: 13px;
    font-weight: 400;
    color: #fff;
  }

  .renewal-sub .campaign-grid {
    gap: 20px;
  }

  .renewal-sub .detail-main {
    width: auto;
    flex: 1;
    min-width: 0;
  }

  .renewal-sub .detail-layout {
    gap: 32px;
  }

  .renewal-sub .detail-sidebar {
    width: 280px;
  }

  .renewal-sub .sidebar-thumb {
    width: 100px;
    height: 100px;
  }

  .renewal-sub .sidebar-brand {
    font-size: 18px;
  }

  .renewal-sub .sidebar-top {
    gap: 16px;
    margin-bottom: 20px;
  }

  .renewal-sub .apply-layout {
    padding: 36px 28px 60px;
  }

  .renewal-sub .apply-sidebar {
    width: 260px;
  }

  .renewal-sub .apply-sidebar .sidebar-card {
    width: 100%;
  }
}

/* ===== 반응형 - 모바일 ===== */
@media (max-width: 768px) {
  .renewal-sub {
    padding-top: 96px;
  }

  .renewal-sub .sub-inner {
    padding: 0 16px;
  }

  /* 카테고리 탭 모바일 */
  .renewal-sub .category-tabs {
    gap: 16px;
    margin-bottom: 24px;
  }

  .renewal-sub .category-tabs a {
    font-size: 14px;
    font-weight: 500;
    color: #999;
    opacity: 1;
    letter-spacing: -0.14px;
  }

  .renewal-sub .category-tabs a.active {
    font-weight: 600;
    color: #171717;
    opacity: 1;
  }

  /* 섹션 타이틀 모바일 */
  .renewal-sub .section-title {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    line-height: 1.25;
  }

  .renewal-sub .section-divider {
    margin: 12px 0 28px 0;
    border-top-color: #f0f0f0;
  }

  /* 가로 스크롤 모바일 — 첫 카드는 여백 있게, 스크롤은 풀너비로 */
  .renewal-sub .campaign-scroll {
    gap: 10px;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .renewal-sub .campaign-scroll .campaign-card {
    flex: 0 0 78%;
    min-width: 260px;
  }

  /* 스크롤 카드 모바일 - 29CM 스타일 매거진 오버레이 (미니멀) */
  .renewal-sub .campaign-scroll .campaign-card .card-image {
    border-radius: 2px;
    overflow: hidden;
    position: relative;
  }

  .renewal-sub .campaign-scroll .campaign-card .card-overlay {
    padding: 0 16px 20px;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0.02) 35%,
      rgba(0,0,0,0.08) 55%,
      rgba(0,0,0,0.2) 78%,
      rgba(0,0,0,0.38) 100%
    );
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
  }

  .renewal-sub .campaign-scroll .campaign-card .card-overlay-top {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: auto;
    margin: 0 0 6px;
    text-align: center;
    order: 0;
  }

  .renewal-sub .campaign-scroll .campaign-card .card-badge {
    position: static;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    transform: none;
    z-index: auto;
    padding: 2px 7px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2px;
    border-radius: 2px;
    line-height: 1.3;
  }

  .renewal-sub .campaign-scroll .campaign-card .card-overlay-top .card-brand {
    display: block;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: -0.1px;
    color: #fff;
    opacity: 0.88;
    text-shadow: none;
  }

  .renewal-sub .campaign-scroll .campaign-card .card-desc {
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    -webkit-line-clamp: 2;
    margin: 0;
    letter-spacing: -0.3px;
    line-height: 1.35;
    text-align: center;
    word-break: keep-all;
    overflow-wrap: break-word;
    text-shadow: none;
    order: 1;
  }

  /* 정보라인: 하단 메타 */
  .renewal-sub .campaign-scroll .campaign-card .card-info {
    display: flex;
    padding: 0;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    opacity: 0.7;
    gap: 6px;
    letter-spacing: 0.1px;
    align-items: center;
    justify-content: center;
    width: 100%;
    order: 3;
  }

  .renewal-sub .campaign-scroll .campaign-card .card-info-icon {
    display: none;
  }

  .renewal-sub .campaign-scroll .campaign-card .card-divider {
    font-size: 11px;
    width: auto;
    height: auto;
    background: none;
    margin: 0 1px;
    opacity: 0.6;
  }

  /* 그리드 카드 모바일 - 가로 카드 레이아웃 (이미지 좌측 + 텍스트 우측) */
  .renewal-sub .campaign-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 48px;
  }

  .renewal-sub .campaign-grid .campaign-card {
    border-bottom: 1px solid #f2f2f2;
    padding: 18px 0;
  }

  .renewal-sub .campaign-grid .campaign-card:first-child {
    padding-top: 0;
  }

  .renewal-sub .campaign-grid .campaign-card:last-child {
    border-bottom: none;
  }

  .renewal-sub .campaign-grid .campaign-card .card-image {
    display: flex;
    flex-direction: row;
    aspect-ratio: unset;
    border-radius: 0;
    background: transparent;
    overflow: visible;
    gap: 16px;
  }

  .renewal-sub .campaign-grid .campaign-card .card-image img {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 2px;
    object-fit: cover;
    position: relative;
  }

  .renewal-sub .campaign-grid .campaign-card .card-overlay {
    position: static;
    background: none;
    color: #000;
    padding: 6px 0 4px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    flex: 1;
    min-width: 0;
    min-height: auto;
    align-self: stretch;
  }

  .renewal-sub .campaign-grid .campaign-card .card-overlay-top {
    justify-content: flex-start;
    gap: 6px;
    margin-bottom: 0;
  }

  .renewal-sub .campaign-grid .campaign-card .card-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    z-index: 2;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
    border-radius: 2px;
    white-space: nowrap;
  }

  .renewal-sub .campaign-grid .campaign-card .card-badge.recruiting {
    background: #171717;
  }

  .renewal-sub .campaign-grid .campaign-card .card-badge.completed {
    padding: 2px 6px;
    border-radius: 2px;
    top: 6px;
    left: 6px;
    background: rgba(80, 80, 80, 0.45);
    color: #fff;
    border: none;
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    font-weight: 500;
    letter-spacing: 0.2px;
  }

  .renewal-sub .campaign-grid .campaign-card .card-brand {
    font-size: 13px;
    font-weight: 600;
    color: #171717;
    line-height: 1.25;
    letter-spacing: -0.26px;
  }

  .renewal-sub .campaign-grid .campaign-card .card-desc {
    order: 0;
    margin: 4px 0 0;
    padding-top: 0;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    line-height: 18px;
    letter-spacing: -0.28px;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .renewal-sub .campaign-grid .campaign-card .card-info {
    justify-content: flex-start;
    margin-top: auto;
    padding: 0;
    gap: 4px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .renewal-sub .campaign-grid .campaign-card .card-recruit,
  .renewal-sub .campaign-grid .campaign-card .card-type {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    background: #f2f2f2;
    color: #5a5a5a;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 3px;
    line-height: 1.4;
    letter-spacing: -0.1px;
  }

  .renewal-sub .campaign-grid .campaign-card .card-recruit .card-info-icon,
  .renewal-sub .campaign-grid .campaign-card .card-type .card-type-icon {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
    opacity: 1;
    color: #5a5a5a;
    display: inline-block;
  }

  .renewal-sub .campaign-grid .campaign-card > .card-info > .card-info-icon {
    display: none;
  }

  .renewal-sub .campaign-grid .campaign-card .card-divider {
    display: none;
  }

  .renewal-sub .campaign-grid .campaign-card.disabled .card-image {
    opacity: 1;
  }

  /* 상세 페이지 모바일 - 세로 배치 */
  .renewal-sub .detail-layout {
    flex-direction: column;
    gap: 0;
    padding-top: 0;
    padding-bottom: 60px;
  }

  /* 사이드바 → 하단 플로팅 버튼 (배경 없음) */
  .renewal-sub .detail-sidebar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    width: 100%;
    z-index: 1000;
    margin-top: 0;
    background: transparent;
    box-shadow: none;
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 6px);
  }

  .renewal-sub .sidebar-card {
    position: static;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 16px;
    height: auto;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: transparent;
  }

  .renewal-sub .sidebar-top,
  .renewal-sub .sidebar-meta {
    display: none;
  }

  .renewal-sub .sidebar-apply,
  .renewal-sub .sidebar-status {
    flex: 1;
    order: 2;
  }

  /* 하단 신청하기 버튼 - 검정 플로팅 */
  .renewal-sub .btn-sidebar-apply {
    height: 48px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: #000;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .renewal-sub .sidebar-status-badge {
    height: 46px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
  }

  .renewal-sub .btn-sidebar-share {
    order: 1;
    width: auto;
    min-width: 44px;
    height: auto;
    margin-top: 0;
    border: none;
    padding: 4px 0;
    flex-direction: column;
    font-size: 11px;
    gap: 2px;
    color: #666;
    background: transparent;
  }

  .renewal-sub .btn-sidebar-share svg {
    width: 22px;
    height: 22px;
  }

  .renewal-sub .btn-sidebar-share span {
    font-size: 11px;
  }

  /* 모바일: 이미지 → 브랜드명+캠페인명 순서로 변경 */
  .renewal-sub .detail-main {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex-shrink: 1;
  }

  .renewal-sub .detail-hero-header {
    order: 2;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
  }

  /* Figma: hero full-width, gap 20px below, then brand/title */
  .renewal-sub .detail-hero {
    order: 1;
    margin-left: -16px;
    margin-right: -16px;
    margin-bottom: 20px;
    border-radius: 0;
  }

  .renewal-sub .detail-hero-brand {
    font-size: 14px;
    font-weight: 500;
    color: #171717;
    margin-bottom: 4px;
    letter-spacing: 0.1px;
    line-height: normal;
  }

  .renewal-sub .detail-hero-campaign-title {
    font-size: 18px;
    font-weight: 600;
    color: #171717;
    line-height: 26px;
    letter-spacing: -0.18px;
  }

  /* 29cm 스타일: 타이트한 info-section */
  .renewal-sub .detail-info-section {
    order: 3;
    margin-bottom: 44px;
    padding-bottom: 0;
    border-bottom: none;
    margin-top: 20px;
  }

  .renewal-sub .detail-info-section .info-row {
    padding: 4px 0;
    gap: 16px;
  }

  .renewal-sub .detail-info-section .info-row dt {
    width: 110px;
    flex-shrink: 0;
    font-family: 'Pretendard', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #8a8a8a;
    line-height: 20px;
    letter-spacing: -0.01em;
    white-space: nowrap;
  }

  .renewal-sub .detail-info-section .info-row dd {
    font-family: 'Pretendard', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #2a2a2a;
    line-height: 20px;
    letter-spacing: -0.01em;
  }

  .renewal-sub .detail-info-section .info-heading {
    font-size: 17px;
    font-weight: 700;
    color: #000;
    margin: 28px 0 0;
    padding-top: 0;
    border-top: none;
    line-height: 1.3;
    letter-spacing: -0.03em;
  }

  .renewal-sub .detail-info-section .info-heading + .info-table {
    margin-top: 14px;
  }

  .renewal-sub .detail-steps {
    order: 4;
    margin-bottom: 0;
  }

  .renewal-sub .detail-notice {
    order: 5;
    margin-top: 44px;
    margin-bottom: 48px;
  }

  .renewal-sub .detail-content {
    order: 6;
    padding-bottom: 0;
  }

  .renewal-sub .campaign-detail-images {
    order: 7;
    margin-top: 16px;
  }

  /* STEP 섹션 모바일 — ELLE editorial */
  .renewal-sub .detail-steps .step-item {
    padding: 28px 0;
    border-bottom: none;
  }

  .renewal-sub .detail-steps .step-item:first-child {
    padding-top: 28px;
  }

  .renewal-sub .detail-steps .step-label {
    padding: 5px 10px;
    background: #f2f2f2;
    color: #555;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    text-transform: uppercase;
  }

  .renewal-sub .detail-steps .step-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
    word-break: keep-all;
    overflow-wrap: break-word;
    max-width: 15em;
  }

  .renewal-sub .detail-steps .step-desc {
    font-size: 14px;
    font-weight: 400;
    color: #8a8a8a;
    line-height: 20px;
    letter-spacing: -0.03em;
  }

  .renewal-sub .substep-num {
    width: 24px;
    height: 24px;
    font-size: 13px;
    font-weight: 700;
    color: #4f46e5;
    background: #eef0fe;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
  }

  .renewal-sub .substep {
    gap: 12px;
    padding: 0;
    min-height: 0;
  }

  .renewal-sub .substep:not(:last-child) {
    padding-bottom: 28px;
  }

  .renewal-sub .substep:not(:last-child)::before {
    left: 11px;
    top: 32px;
    bottom: 8px;
    height: auto;
    border-left: 1px solid #e0e0e0;
    background: none;
    width: 0;
  }

  .renewal-sub .substep-body {
    padding-top: 0;
  }

  .renewal-sub .substep-body strong {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 22px;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
  }

  .renewal-sub .substep-body p {
    font-size: 13px;
    font-weight: 400;
    color: #8a8a8a;
    line-height: 20px;
    letter-spacing: -0.03em;
  }

  .renewal-sub .notice-box {
    background: #f5f6fc;
    padding: 20px 18px;
    border-radius: 12px;
  }

  .renewal-sub .detail-notice .notice-title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 14px;
    padding: 0 0 12px !important;
    border-bottom: 1px solid #e5e7f2;
    letter-spacing: -0.02em;
  }

  .renewal-sub .notice-title svg {
    width: 22px;
    height: 22px;
  }

  .renewal-sub .notice-list p {
    display: flex;
    gap: 10px;
    margin: 0 0 10px;
    padding: 0;
    text-indent: 0;
    font-size: 13px;
    font-weight: 400;
    color: #3a3a3a;
    line-height: 1.6;
    letter-spacing: -0.02em;
  }

  .renewal-sub .notice-list p:last-child {
    margin-bottom: 0;
  }

  .renewal-sub .notice-list .notice-num {
    flex: 0 0 auto;
    min-width: 12px;
    margin: 0;
    color: #3a3a3a;
    font-weight: 400;
  }

  .renewal-sub .detail-comments {
    padding-top: 24px;
    margin-bottom: 24px;
  }

  .renewal-sub .detail-comments .comment-item {
    gap: 12px;
    padding: 16px 0;
  }

  .renewal-sub .detail-comments .comment-avatar {
    width: 40px;
    height: 40px;
  }

  .renewal-sub .detail-comments .comment-user {
    font-size: 14px;
  }

  .renewal-sub .detail-comments .comment-text {
    font-size: 14px;
  }

  /* 신청 페이지 사이드바 모바일 - 하단 콘텐츠 영역 */
  .renewal-sub .apply-sidebar {
    position: static;
    width: 100%;
    margin-top: 0;
  }

  .renewal-sub .apply-sidebar .sidebar-card {
    position: static;
    width: 100%;
    padding: 0 20px 40px;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: transparent;
  }

  .renewal-sub .apply-sidebar .sidebar-top,
  .renewal-sub .apply-sidebar .sidebar-meta {
    display: none;
  }

  .renewal-sub .apply-sidebar .btn-sidebar-apply {
    width: 100%;
    border-radius: 0;
    height: 48px;
    font-size: 15px;
    font-weight: 600;
  }

  /* 신청 페이지 모바일 */
  .renewal-sub .apply-layout {
    padding: 40px 20px 60px;
    max-width: none;
  }

  .renewal-sub .apply-campaign-card {
    display: flex;
  }

  .renewal-sub .apply-page-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 24px;
    letter-spacing: -0.03em;
  }

  .renewal-sub .apply-section {
    margin-bottom: 48px;
  }

  .renewal-sub .apply-section-title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
    line-height: 1.4;
  }

  .renewal-sub .apply-section-desc {
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
    line-height: 18px;
  }

  .renewal-sub .form-field {
    margin-bottom: 20px;
  }

  .renewal-sub .form-field .field-label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
    text-transform: none;
    line-height: 18px;
  }

  .renewal-sub .form-field input[type="text"] {
    font-size: 14px;
    height: 42px;
    line-height: 42px;
  }

  /* 모바일 SNS 입력 */
  .renewal-sub .sns-input-wrap {
    height: 48px;
    padding-right: 60px;
  }

  .renewal-sub .sns-input-prefix {
    font-size: 12px;
    color: #bbb;
  }

  .renewal-sub .sns-input-wrap input[type="text"] {
    height: 48px;
    line-height: 48px;
    padding: 0 0 0 2px;
    font-size: 14px;
  }

  .renewal-sub .btn-sns-edit {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    padding: 6px 12px;
    font-size: 12px;
  }

  .renewal-sub .apply-sidebar {
    width: 100%;
    margin-top: 0;
  }

  .renewal-sub .apply-sidebar .sidebar-card {
    position: static;
    width: 100%;
    padding: 0;
    border-radius: 0;
    border: none;
  }

  /* 2차 활용 입력 — 모바일에서 아래줄로 떨어뜨려 전체폭 사용 */
  .renewal-sub .terms-item {
    flex-wrap: wrap;
    row-gap: 12px;
  }

  .renewal-sub .terms-input {
    width: 100%;
    flex: 1 0 100%;
    font-size: 13px;
  }

  .renewal-sub .terms-value {
    font-size: 15px;
  }

  /* 신청 완료 페이지 모바일 */
  .renewal-sub .apply-complete {
    padding: 48px 20px 80px;
  }

  .renewal-sub .apply-complete .complete-title {
    font-size: 26px;
  }

  .renewal-sub .apply-complete .complete-sub {
    font-size: 16px;
  }

  .renewal-sub .apply-complete .complete-buttons {
    margin-top: 60px;
    max-width: 100%;
  }

  .renewal-sub .apply-complete .btn-complete-outline,
  .renewal-sub .apply-complete .btn-complete-primary {
    height: 50px;
    font-size: 15px;
  }
}

/* ===== 반응형 - 소형 모바일 ===== */
@media (max-width: 480px) {
  .renewal-sub .category-tabs {
    gap: 12px;
  }

  .renewal-sub .campaign-scroll .campaign-card {
    flex: 0 0 80%;
    min-width: 220px;
  }

  .renewal-sub .campaign-scroll .campaign-card .card-brand {
    font-size: 13px;
  }

  /* 그리드 카드 - 소형 모바일 */
  .renewal-sub .campaign-grid .campaign-card .card-image img {
    width: 92px;
    height: 92px;
  }

  .renewal-sub .campaign-grid .campaign-card .card-desc {
    font-size: 14px;
    line-height: 19px;
  }

  .renewal-sub .campaign-grid .campaign-card .card-info {
    font-size: 12px;
  }
}

/* ===== 리뷰 목록 페이지 ===== */

/* ---------- 헤더 (타이틀 + 탭) ---------- */
.renewal-sub .review-header {
  padding: 0 40px;
  max-width: 1280px;
  margin: 0 auto;
}

/* review-page-title: 통일 스타일은 상단 공통 블록에서 정의 */

/* 리뷰 탭 — category-tabs 상속 */
.renewal-sub .review-tabs a {
  font-size: 15px;
  line-height: 24px;
  letter-spacing: -0.15px;
  color: #bbb;
  opacity: 1;
  font-weight: 500;
  padding-bottom: 6px;
  transition: color 0.2s ease;
}

.renewal-sub .review-tabs a.active {
  font-weight: 600;
  opacity: 1;
  color: #171717;
  border-bottom-color: #171717;
}

/* ---------- 리뷰 리스트 ---------- */
.renewal-sub .review-list {
  width: 100%;
}

.renewal-sub .review-block {
  width: 100%;
  overflow: hidden;
  background: #fff;
}

/* ---------- 블록 내부 플렉스 ---------- */
.renewal-sub .review-block__inner {
  display: flex;
  min-height: 540px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: stretch;
}

/* reverse 클래스: 콘텐츠 왼쪽 / 이미지 오른쪽 */
.renewal-sub .review-block.reverse .review-block__inner {
  flex-direction: row-reverse;
}

/* ---------- 이미지 영역 ---------- */
.renewal-sub .review-block__image {
  flex: 0 0 50%;
  padding: 16px;
  min-height: 0;
}

.renewal-sub .review-block__image a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
  border-radius: 16px;
}

.renewal-sub .review-block__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
}

/* ---------- 콘텐츠 영역 ---------- */
.renewal-sub .review-block__content {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 56px;
  min-width: 0;
  position: relative;
}

/* 브랜드 */
.renewal-sub .review-block__brand {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #999;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: 'Poppins', 'Pretendard', sans-serif;
}

/* 상품명/타이틀 */
.renewal-sub .review-block__name {
  font-family: 'Pretendard', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #171717;
  line-height: 1.4;
  margin: 0 0 20px;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.renewal-sub .review-block__name a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.renewal-sub .review-block__name a:hover {
  opacity: 0.7;
}

/* ---------- 태그 ---------- */
.renewal-sub .review-block__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.renewal-sub .review-block__tags span {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  color: #888;
  padding: 5px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  white-space: nowrap;
  font-family: 'Pretendard', sans-serif;
}

/* ---------- 좋아요 ---------- */
.renewal-sub .review-block__like {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}

.renewal-sub .review-block__like .review-heart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  background: none;
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s;
}

.renewal-sub .review-block__like .review-heart.active {
  color: #dc182b;
}

.renewal-sub .review-block__like .review-heart:hover {
  color: #dc182b;
}

.renewal-sub .review-block__like span {
  font-size: 14px;
  color: #999;
  font-family: 'Poppins', sans-serif;
}

/* ---------- REVIEW BY ---------- */
.renewal-sub .review-block__reviewer {
  margin-top: auto;
}

.renewal-sub .review-block__reviewer .reviewer-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #bbb;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
}

.renewal-sub .reviewer-items {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.renewal-sub .reviewer-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  text-decoration: none;
}

.renewal-sub .reviewer-thumb img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.renewal-sub .reviewer-thumb .reviewer-name {
  font-size: 11px;
  color: #999;
  font-family: 'Poppins', 'Pretendard', sans-serif;
  white-space: nowrap;
}

.renewal-sub .reviewer-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.05);
  font-size: 11px;
  font-weight: 600;
  color: #888;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  line-height: 1.3;
  font-family: 'Poppins', sans-serif;
}

.renewal-sub .reviewer-more:hover {
  background: rgba(0, 0, 0, 0.1);
}

/* ---------- 브랜드 배지 ---------- */
.renewal-sub .review-block__badge {
  position: absolute;
  bottom: 48px;
  right: 56px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #dc182b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
}

/* ===== 리뷰 반응형 - 태블릿 ===== */
@media (max-width: 1200px) {
  .renewal-sub .review-header {
    padding: 0 28px;
  }

  /* page-title: 통일 스타일 적용됨 */

  .renewal-sub .review-block__inner {
    min-height: 440px;
  }

  .renewal-sub .review-block__content {
    padding: 36px 40px;
  }

  .renewal-sub .review-block__image {
    padding: 12px;
  }

  .renewal-sub .review-block__name {
    font-size: 22px;
  }

  .renewal-sub .review-block__badge {
    bottom: 36px;
    right: 40px;
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

/* ===== 리뷰 반응형 - 모바일 ===== */
@media (max-width: 768px) {
  .renewal-sub .review-header {
    padding: 0 20px;
  }

  /* page-title: 통일 스타일 적용됨 */

  .renewal-sub .review-block__inner {
    flex-direction: column !important;
    min-height: auto;
  }

  .renewal-sub .review-block__image {
    flex: none;
    width: 100%;
    height: 300px;
    padding: 12px;
  }

  .renewal-sub .review-block__content {
    flex: none;
    width: 100%;
    padding: 24px 20px 32px;
  }

  .renewal-sub .review-block__name {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .renewal-sub .review-block__tags {
    margin-bottom: 16px;
  }

  .renewal-sub .review-block__like {
    margin-bottom: 20px;
  }

  .renewal-sub .review-block__brand {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .renewal-sub .review-block__badge {
    position: static;
    margin-top: 16px;
    align-self: flex-end;
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .renewal-sub .reviewer-thumb img {
    width: 56px;
    height: 56px;
  }

  .renewal-sub .reviewer-more {
    width: 56px;
    height: 56px;
    font-size: 10px;
  }
}

/* ===== 리뷰 반응형 - 소형 모바일 ===== */
@media (max-width: 480px) {
  .renewal-sub .review-header {
    padding: 0 16px;
  }

  /* page-title: 통일 스타일 적용됨 */

  .renewal-sub .review-block__image {
    height: 240px;
    padding: 10px;
  }

  .renewal-sub .review-block__content {
    padding: 20px 16px 28px;
  }

  .renewal-sub .review-block__name {
    font-size: 18px;
  }

  .renewal-sub .reviewer-thumb img {
    width: 48px;
    height: 48px;
  }

  .renewal-sub .reviewer-more {
    width: 48px;
    height: 48px;
    font-size: 9px;
  }
}

/* ============================================================
   리뷰 목록 - 캠페인별 그룹핑 (피그마 리뉴얼)
   ============================================================ */

.renewal-sub .review-campaign-list {
  display: flex;
  flex-direction: column;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* --- Campaign Group (rcg) --- */
.rcg {
  display: flex;
  align-items: stretch;
  min-height: 520px;
  margin-bottom: 120px;
}

.rcg.rcg--reverse {
  flex-direction: row-reverse;
}

/* --- Campaign Image --- */
.rcg__image {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.rcg__image > a:first-child {
  display: block;
  width: 100%;
  height: 100%;
}

.rcg__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* VIEW MORE button on image (MO only) */
.rcg__image-more {
  display: none;
}

/* --- Content --- */
.rcg__content {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 51px 0 20px 60px;
}

.rcg.rcg--reverse .rcg__content {
  padding: 51px 60px 20px 0;
}

/* Info top: text + logo */
.rcg__info-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.rcg__info-text {
  flex: 1;
  min-width: 0;
}
.rcg__logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  border: 1px solid #eee;
}
.rcg__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rcg__logo .brand-logo-placeholder {
  font-size: 16px;
  font-weight: 600;
  color: #bbb;
}

/* Brand */
.rcg__brand {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #999;
  letter-spacing: 0.2px;
  line-height: 22px;
  margin: 0 0 6px;
  text-decoration: none;
  display: block;
  transition: color 0.2s ease;
}

.rcg__brand:hover {
  color: #171717;
}

/* Title */
.rcg__title {
  font-family: 'Pretendard', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #171717;
  line-height: 40px;
  letter-spacing: -0.28px;
  margin: 0 0 16px;
  word-break: keep-all;
}

/* Tags */
.rcg__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.rcg__tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  font-family: 'Pretendard', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #999;
  opacity: 1;
  line-height: 26px;
  background: #f8f8f8;
  border: 1px solid #ebebeb;
  border-radius: 50px;
  white-space: nowrap;
}

/* --- Review Section --- */
.rcg__reviews {
  margin-top: 48px;
}

.rcg__reviews-label {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #bbb;
  opacity: 1;
  letter-spacing: 0.3px;
  line-height: 22px;
  margin: 0 0 12px;
}

/* Review Grid */
.rcg__reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.rcg__review-item {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.rcg__review-thumb {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f0f0f0;
  position: relative;
}

.rcg__review-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.rcg__review-item:hover .rcg__review-thumb img {
  transform: scale(1.05);
}

.rcg__review-author {
  display: block;
  font-family: 'Pretendard', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #bbb;
  opacity: 1;
  letter-spacing: -0.13px;
  margin-top: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* VIEW MORE overlay on 3rd review thumbnail (PC) */
.rcg__viewmore-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rcg__viewmore-overlay span {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-align: center;
}

/* Empty State */
.renewal-sub .review-empty {
  text-align: center;
  padding: 80px 20px;
  color: #999;
  font-size: 14px;
}

/* ===== 리뷰 그룹 반응형 - 태블릿 ===== */
@media (max-width: 1200px) {
  .renewal-sub .review-campaign-list {
    padding: 0 28px;
  }

  /* page-title: 통일 스타일 적용됨 */

  .renewal-sub .review-tabs a {
    font-size: 15px;
    line-height: 26px;
    letter-spacing: -0.15px;
  }

  .rcg {
    min-height: 440px;
    margin-bottom: 100px;
  }

  .rcg__content {
    padding: 32px 0 20px 36px;
  }

  .rcg.rcg--reverse .rcg__content {
    padding: 32px 36px 20px 0;
  }

  .rcg__brand {
    font-size: 13px;
  }

  .rcg__title {
    font-size: 22px;
    line-height: 32px;
  }

  .rcg__reviews {
    margin-top: 36px;
  }
}

/* ===== 리뷰 그룹 반응형 - 모바일 ===== */
@media (max-width: 768px) {
  .renewal-sub .review-campaign-list {
    padding: 0 20px;
  }

  /* page-title: 통일 스타일 적용됨 */

  .renewal-sub .review-tabs a {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -0.14px;
    color: #999;
    opacity: 1;
  }

  .renewal-sub .review-tabs a.active {
    color: #171717;
    font-weight: 600;
  }

  /* Stack vertically */
  .rcg {
    flex-direction: column !important;
    min-height: auto;
    margin-bottom: 72px;
  }

  .rcg__image {
    flex: none;
    width: 100%;
    aspect-ratio: 1 / 1;
    order: 2;
    border-radius: 0;
  }

  .rcg__content {
    display: contents !important;
    padding: 0 !important;
  }

  .rcg__info {
    order: 1;
    padding-bottom: 14px;
  }

  /* Show VIEW MORE on image for MO */
  .rcg__image-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2px;
    line-height: 22px;
    padding: 4px 12px;
    border-radius: 20px;
    text-decoration: none;
    z-index: 2;
    backdrop-filter: blur(4px);
  }

  .rcg__brand {
    font-size: 13px;
    font-weight: 500;
    color: #999;
    opacity: 1;
    line-height: 20px;
    letter-spacing: 0.1px;
    margin-bottom: 2px;
  }

  .rcg__title {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.2px;
    margin-bottom: 10px;
  }

  .rcg__tags span {
    font-size: 13px;
    padding: 0 8px;
    line-height: 24px;
    border-radius: 30px;
    color: #999;
  }

  /* Reviews: 2 columns, hide 3rd */
  .rcg__reviews {
    order: 3;
    margin-top: 16px;
    padding-top: 0;
  }

  .rcg__reviews-label {
    font-size: 13px;
    line-height: 22px;
    letter-spacing: 0.2px;
    color: #bbb;
  }

  .rcg__reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rcg__review-item:nth-child(3),
  .rcg__review-item--more {
    display: none;
  }

  .rcg__review-author {
    font-size: 13px;
    letter-spacing: -0.13px;
    color: #bbb;
  }
}

/* ===== 리뷰 그룹 반응형 - 소형 모바일 ===== */
@media (max-width: 480px) {
  .renewal-sub .review-campaign-list {
    padding: 0 16px;
  }
}

/* ============================================================
   캠페인 리뷰 상세 목록 페이지 (Figma REV-003)
   ============================================================ */

/* --- Header: Title + Brand Info --- */
.renewal-sub .srl-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px 0;
}

.renewal-sub .srl-title {
  font-family: 'Pretendard', sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 56px;
  letter-spacing: -0.4px;
  color: #171717;
  margin: 0;
}

.renewal-sub .srl-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
}

.renewal-sub .srl-brand-info {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.renewal-sub .srl-brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  background: #f0f0f0;
  flex-shrink: 0;
}

.renewal-sub .srl-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.renewal-sub .srl-brand-name {
  font-family: 'Pretendard', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.18px;
  color: #171717;
}

.renewal-sub .srl-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.renewal-sub .srl-meta-group {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Pretendard', sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: #171717;
}

.renewal-sub .srl-meta-label {
  font-weight: 400;
  opacity: 0.8;
}

.renewal-sub .srl-meta-sep {
  width: 1px;
  height: 14px;
  background: #171717;
  opacity: 0.3;
}

.renewal-sub .srl-meta-value {
  font-weight: 700;
}

/* --- Divider (title 아래, brand-row 위) --- */
.renewal-sub .srl-divider {
  margin: 32px 0 28px;
}

.renewal-sub .srl-divider__line {
  height: 2px;
  background: #171717;
}

/* --- Hero Image --- */
.renewal-sub:has(.srl-hero) {
  padding-top: 0;
}

.renewal-sub .srl-hero {
  max-width: none;
  margin: 0 auto;
  padding: 0;
}

.renewal-sub .srl-hero img {
  width: 100%;
  aspect-ratio: 3 / 1;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

/* --- Hero Image Overlay --- */
.renewal-sub .srl-hero__inner {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.renewal-sub .srl-hero__inner img {
  border-radius: 0;
}

.renewal-sub .srl-hero__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.renewal-sub .srl-hero__inner::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 69.716%);
  opacity: 0.4;
  pointer-events: none;
}

.renewal-sub .srl-hero__brand {
  color: rgba(255,255,255,0.6);
  font-family: 'Poppins', 'Pretendard', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.renewal-sub .srl-hero__brand:hover {
  color: #fff;
  text-decoration: underline;
}

.renewal-sub .srl-hero__title {
  color: #fff;
  font-family: 'Poppins', 'Pretendard', sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.4px;
  margin: 8px 0 0;
  position: relative;
  z-index: 1;
}

.renewal-sub .srl-hero__meta {
  color: #fff;
  font-family: 'Poppins', 'Pretendard', sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin: 8px 0 0;
  line-height: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.renewal-sub .srl-hero__meta:first-of-type {
  margin-top: 16px;
}

.renewal-sub .srl-hero__meta-label {
  font-weight: 400;
  opacity: 0.7;
}

.renewal-sub .srl-hero__meta-value {
  font-weight: 600;
  color: #fff;
}

.renewal-sub .srl-hero__meta-divider {
  display: inline-block;
  width: 1px;
  height: 15px;
  background: #fff;
  opacity: 0.5;
  font-size: 0;
  vertical-align: middle;
}

/* --- Best Reviews Section --- */
.renewal-sub .srl-best {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 40px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.renewal-sub .srl-best__sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 4px;
  flex-shrink: 0;
  min-width: 160px;
}

.renewal-sub .srl-best__image {
  width: 522px;
  flex-shrink: 0;
}

.renewal-sub .srl-best__image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 0;
}

.renewal-sub .srl-best__name {
  font-family: 'Poppins', 'Pretendard', sans-serif;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.3px;
  color: #ccc;
  cursor: pointer;
  background: none;
  border: none;
  padding: 14px 0;
  text-align: left;
  font-weight: 500;
  transition: color 0.2s ease, font-weight 0.2s ease;
  display: block;
  border-bottom: 3px solid transparent;
  margin-bottom: 6px;
}

.renewal-sub .srl-best__name:hover {
  color: #888;
}

.renewal-sub .srl-best__name.active {
  font-weight: 800;
  color: #000;
  border-bottom: 3px solid #000;
}

.renewal-sub .srl-best__right {
  flex: 1;
  min-width: 0;
  max-height: 696px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  scrollbar-width: none;
}

/* PC: Best Reviews 헤더 + 작성자 영역은 고정, 본문만 스크롤 */
@media (min-width: 769px) {
  .renewal-sub .srl-best__heading {
    flex-shrink: 0;
  }
  .renewal-sub .srl-best__panel.active {
    display: flex !important;
    flex-direction: column;
    flex: 1;
    min-height: 0;
  }
  .renewal-sub .srl-best__profile {
    flex-shrink: 0;
  }
  .renewal-sub .srl-best__text-wrap {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.2) transparent;
    padding-right: 8px;
  }
  .renewal-sub .srl-best__text-wrap::-webkit-scrollbar {
    width: 4px;
  }
  .renewal-sub .srl-best__text-wrap::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.2);
    border-radius: 4px;
  }
  .renewal-sub .srl-best__text-wrap::-webkit-scrollbar-track {
    background: transparent;
  }
}
.renewal-sub .srl-best__right:hover {
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.2) transparent;
}
.renewal-sub .srl-best__right::-webkit-scrollbar {
  width: 4px;
}
.renewal-sub .srl-best__right::-webkit-scrollbar-track {
  background: transparent;
}
.renewal-sub .srl-best__right::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 4px;
}
.renewal-sub .srl-best__right:hover::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2);
}

.renewal-sub .srl-best__heading {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.72px;
  color: #000;
  margin: 0 0 20px;
}

.renewal-sub .srl-best__profile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 0 16px;
  border: none;
  border-bottom: 1px solid #f0f0f0;
  border-radius: 0;
  margin-bottom: 16px;
}

.renewal-sub .srl-best__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.renewal-sub .srl-best__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.renewal-sub .srl-best__profile-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.renewal-sub .srl-best__username {
  font-family: 'Poppins', 'Pretendard', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.17px;
  color: #000;
}

.renewal-sub .srl-best__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.renewal-sub .srl-best__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 9px;
  border-radius: 50px;
  background: #f8f8f8;
  border: 1px solid #e5e5e5;
  font-family: 'Poppins', 'Pretendard', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #999;
  opacity: 1;
}

.renewal-sub .srl-best__text {
  font-family: 'Poppins', 'Pretendard', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -0.032px;
  color: #555;
  word-break: break-word;
  white-space: pre-wrap;
}

.renewal-sub .srl-best__text-wrap {
  position: relative;
}

/* 더보기 버튼은 모바일 전용. PC는 기존 스크롤 유지 */
.renewal-sub .srl-best__more {
  display: none;
}

@media (max-width: 768px) {
  .renewal-sub .srl-best__text-wrap.is-collapsed .srl-best__text {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
  }

  .renewal-sub .srl-best__more {
    display: inline-block;
    margin-top: 10px;
    padding: 0;
    background: none;
    border: none;
    color: #888;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.13px;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .renewal-sub .srl-best__more:hover {
    color: #222;
  }
}

.renewal-sub .srl-best__panel {
  display: none;
}

.renewal-sub .srl-best__panel.active {
  display: block;
}

/* --- Short-form (Reels / YouTube Shorts) layout --- */
.renewal-sub .srl-best--short .srl-best__image {
  width: 340px;
}
.renewal-sub .srl-best--short .srl-best__image img,
.renewal-sub .srl-best--short .srl-best__image video,
.renewal-sub .srl-best--short .srl-best__image .srl-best__youtube {
  aspect-ratio: 9 / 16;
}
.renewal-sub .srl-best--short .srl-best__right {
  max-height: 604px;
}

/* --- Section Divider (Best ↔ ALL REVIEWS) --- */
.renewal-sub .srl-section-divider {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.renewal-sub .srl-section-divider__line {
  height: 1px;
  background: #f0f0f0;
}

/* --- ALL REVIEWS Section --- */
.renewal-sub .srl-allreviews {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 40px 80px;
}

.renewal-sub .srl-allreviews__title {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: -0.28px;
  color: #171717;
  text-align: left;
  margin: 0 0 32px;
}

.renewal-sub .srl-allreviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.renewal-sub .srl-allreviews__card {
  position: relative;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: block;
  overflow: hidden;
  border-radius: 0;
}

.renewal-sub .srl-allreviews__thumb {
  width: 100%;
  aspect-ratio: 474 / 643;
  overflow: hidden;
  background: #f0f0f0;
}

.renewal-sub .srl-allreviews__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.renewal-sub .srl-allreviews__card:hover .srl-allreviews__thumb img {
  transform: scale(1.03);
}

.renewal-sub .srl-allreviews__author {
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  background: #171717;
  color: #fff;
  font-family: 'Poppins', 'Pretendard', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  border-radius: 0;
}

/* --- Empty state --- */
.renewal-sub .srl-empty {
  text-align: center;
  padding: 80px 20px;
  color: #888;
  font-size: 15px;
}

/* --- Responsive: Tablet --- */
@media (max-width: 1200px) {
  .renewal-sub .srl-header {
    padding: 32px 40px 0;
  }

  .renewal-sub .srl-title {
    font-size: 32px;
    line-height: 44px;
  }

  .renewal-sub .srl-brand-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .renewal-sub .srl-meta-group {
    font-size: 14px;
  }

  .renewal-sub .srl-divider {
    padding: 0 40px;
  }

  .renewal-sub .srl-hero {
    padding: 0;
  }

  .renewal-sub .srl-best {
    padding: 48px 40px;
    gap: 24px;
  }

  .renewal-sub .srl-best__sidebar {
    min-width: 110px;
    padding-top: 2px;
    gap: 0;
  }

  .renewal-sub .srl-best__image {
    width: 300px;
  }

  .renewal-sub .srl-best__name {
    font-size: 18px;
    padding: 12px 0;
  }

  .renewal-sub .srl-best__heading {
    font-size: 24px;
    line-height: 1.2;
  }

  .renewal-sub .srl-best__username {
    font-size: 14px;
  }

  .renewal-sub .srl-best__text {
    font-size: 14px;
  }

  .renewal-sub .srl-section-divider {
    padding: 0 40px;
  }

  .renewal-sub .srl-allreviews {
    padding: 48px 40px 60px;
  }

  .renewal-sub .srl-allreviews__title {
    font-size: 24px;
    line-height: 34px;
  }

  .renewal-sub .srl-allreviews__author {
    font-size: 13px;
    padding: 5px 8px;
  }

  .renewal-sub .srl-hero__meta {
    font-size: 14px;
    gap: 8px;
  }

  .renewal-sub .srl-hero__meta:first-of-type {
    margin-top: 10px;
  }

  .renewal-sub .srl-hero__title {
    font-size: 36px;
    line-height: 1.15;
    letter-spacing: -0.72px;
  }

  .renewal-sub .srl-hero__overlay {
    padding: 0 40px 8%;
  }

  .renewal-sub .srl-hero__meta-divider {
    height: 12px;
  }
}

/* --- Responsive: Mobile --- */
@media (max-width: 768px) {
  .renewal-sub .srl-header {
    padding: 24px 20px 0;
  }

  .renewal-sub .srl-title {
    font-size: 24px;
    line-height: 34px;
  }

  .renewal-sub .srl-brand-name {
    font-size: 15px;
  }

  .renewal-sub .srl-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .renewal-sub .srl-meta-group {
    font-size: 13px;
    gap: 8px;
  }

  .renewal-sub .srl-divider {
    padding: 0 20px;
  }

  .renewal-sub .srl-best {
    padding: 28px 24px;
    flex-direction: column;
    gap: 0;
  }

  .renewal-sub .srl-best__image {
    width: 100%;
    order: 3;
    margin-top: 20px;
  }

  .renewal-sub .srl-best__image img {
    aspect-ratio: 327 / 436;
    border-radius: 0;
  }

  .renewal-sub .srl-best--short .srl-best__image {
    width: 100%;
  }

  .renewal-sub .srl-best--short .srl-best__image img,
  .renewal-sub .srl-best--short .srl-best__image video,
  .renewal-sub .srl-best--short .srl-best__image .srl-best__youtube {
    aspect-ratio: 9 / 16;
    width: 100%;
    object-fit: cover;
  }

  .renewal-sub .srl-best__sidebar {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 24px;
    padding: 0;
    min-width: 0;
    order: 2;
    margin-top: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .renewal-sub .srl-best__sidebar::-webkit-scrollbar {
    display: none;
  }

  .renewal-sub .srl-best__name {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0;
    white-space: nowrap;
    flex-shrink: 0;
    color: #bbb;
    padding: 0 0 8px;
    margin-bottom: 0;
    border-bottom: 2px solid transparent;
  }

  .renewal-sub .srl-best__name.active {
    font-weight: 700;
    color: #000;
    border-bottom: 2px solid #000;
    padding-bottom: 8px;
  }

  .renewal-sub .srl-best__heading {
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.22px;
    margin: 0 0 14px;
    order: 1;
    width: 100%;
  }

  .renewal-sub .srl-best__right {
    display: contents;
  }

  .renewal-sub .srl-best__panel {
    order: 4;
    width: 100%;
    margin-top: 20px;
  }

  .renewal-sub .srl-best__text {
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: -0.03px;
    color: #444;
  }

  .renewal-sub .srl-best__profile {
    padding: 0 0 14px;
    margin-bottom: 14px;
    border: none;
    border-bottom: 1px solid #eee;
    border-radius: 0;
    gap: 12px;
  }

  .renewal-sub .srl-best__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }

  .renewal-sub .srl-best__username {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.15px;
    color: #000;
  }

  .renewal-sub .srl-best__profile-info {
    gap: 4px;
  }

  .renewal-sub .srl-best__tag {
    font-size: 12px;
    padding: 0 6px;
    border-radius: 30px;
    line-height: 20px;
    color: #999;
    opacity: 1;
  }

  .renewal-sub .srl-best__profile-info {
    gap: 6px;
  }

  .renewal-sub .srl-section-divider {
    padding: 0 24px;
  }

  .renewal-sub .srl-allreviews {
    padding: 32px 24px 48px;
  }

  .renewal-sub .srl-allreviews__title {
    font-size: 22px;
    line-height: 32px;
    letter-spacing: -0.22px;
    margin-bottom: 20px;
    text-align: left;
  }

  .renewal-sub .srl-allreviews__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }

  .renewal-sub .srl-allreviews__thumb {
    aspect-ratio: 159 / 212;
  }

  .renewal-sub .srl-allreviews__author {
    font-size: 12px;
    padding: 6px 8px;
  }

  .renewal-sub:has(.srl-hero) {
    padding-top: 100px;
  }

  .renewal-sub .srl-hero {
    padding: 0;
  }

  .renewal-sub .srl-hero__inner {
    border-radius: 0;
  }

  .renewal-sub .srl-hero img {
    aspect-ratio: 16 / 9;
  }

  .renewal-sub .srl-hero__overlay::before {
    background: #000;
    opacity: 0.3;
  }

  .renewal-sub .srl-hero__meta {
    font-size: 13px;
    line-height: 22px;
    gap: 8px;
    margin: 6px 0 0;
  }

  .renewal-sub .srl-hero__meta:first-of-type {
    margin-top: 12px;
  }

  .renewal-sub .srl-hero__meta-divider {
    height: 12px;
  }

  .renewal-sub .srl-hero__brand {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.12px;
    color: #fff;
    opacity: 1;
  }

  .renewal-sub .srl-hero__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.48px;
    margin: 6px 0 0;
  }

  .renewal-sub .srl-hero__overlay {
    padding: 0 24px 24px;
  }
}

/* --- Responsive: Small Mobile --- */
@media (max-width: 480px) {
  .renewal-sub .srl-header {
    padding: 20px 16px 0;
  }

  .renewal-sub .srl-title {
    font-size: 20px;
    line-height: 30px;
  }

  .renewal-sub .srl-brand-logo {
    width: 32px;
    height: 32px;
  }

  .renewal-sub .srl-brand-name {
    font-size: 14px;
  }

  .renewal-sub .srl-divider {
    padding: 0 16px;
  }

  .renewal-sub .srl-best {
    padding: 24px 16px;
  }

  .renewal-sub .srl-best__heading {
    font-size: 22px;
    letter-spacing: -0.22px;
  }

  .renewal-sub .srl-best__sidebar {
    gap: 20px;
    margin-top: 14px;
  }

  .renewal-sub .srl-best__name {
    font-size: 13px;
  }

  .renewal-sub .srl-best__username {
    font-size: 14px;
  }

  .renewal-sub .srl-best__avatar {
    width: 36px;
    height: 36px;
  }

  .renewal-sub .srl-allreviews {
    padding: 24px 16px 36px;
  }

  .renewal-sub .srl-allreviews__grid {
    gap: 2px;
  }

  .renewal-sub .srl-allreviews__author {
    font-size: 11px;
    padding: 5px 6px;
  }

  .renewal-sub .srl-hero__meta {
    font-size: 12px;
    line-height: 20px;
    gap: 6px;
    margin: 5px 0 0;
  }

  .renewal-sub .srl-hero__meta:first-of-type {
    margin-top: 10px;
  }

  .renewal-sub .srl-hero__brand {
    font-size: 12px;
  }

  .renewal-sub .srl-hero__title {
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.4px;
    margin: 5px 0 0;
  }

  .renewal-sub .srl-hero__overlay {
    padding: 0 16px 20px;
  }

  .renewal-sub .srl-hero__meta-divider {
    height: 10px;
  }

  .renewal-sub .srl-section-divider {
    padding: 0 16px;
  }
}

/* ============================================================
   리뷰 상세 페이지 (Figma 디자인)
   ============================================================ */

/* --- 1. 상세 헤더: 제목 + 구분선 --- */
.renewal-sub .review-detail-header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 40px 0;
}

.renewal-sub .review-detail__title {
  font-family: 'Pretendard', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #171717;
  line-height: 1.3;
  margin: 0 0 20px;
  word-break: keep-all;
}

.renewal-sub .review-detail__divider {
  height: 1px;
  background: #ddd;
}

/* --- 2. 브랜드 정보: 왼쪽 로고+이름 / 오른쪽 태그 --- */
.renewal-sub .review-detail__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 40px;
  gap: 20px;
  flex-wrap: wrap;
}

.renewal-sub .review-detail__meta-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.renewal-sub .review-detail__meta-left .brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #dc182b;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  flex-shrink: 0;
}

.renewal-sub .review-detail__meta-left .brand-name {
  font-size: 15px;
  font-weight: 700;
  color: #dc182b;
  font-family: 'Pretendard', sans-serif;
}

.renewal-sub .review-detail__meta-left .brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.renewal-sub .review-detail__meta-left .brand-link:hover .brand-name {
  text-decoration: underline;
}

.renewal-sub .review-detail__meta-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.renewal-sub .review-detail__meta-right .meta-tag {
  font-size: 13px;
  font-weight: 400;
  color: #666;
  font-family: 'Pretendard', sans-serif;
  white-space: nowrap;
}

.renewal-sub .review-detail__meta-right .meta-tag em {
  font-style: normal;
  color: #ccc;
  margin: 0 6px;
}

/* --- 3. 메인 히어로 이미지 (가로로 길게) --- */
.renewal-sub .review-detail-hero {
  display: flex;
  gap: 4px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px 40px;
  max-height: 520px;
  overflow: hidden;
}

.renewal-sub .review-detail-hero__item {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.renewal-sub .review-detail-hero__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- 콘텐츠 내 리뷰 인라인 이미지 --- */
.renewal-sub .review-detail-content__image {
  margin-bottom: 24px;
}

.renewal-sub .review-detail-content__image img {
  width: 100%;
  max-width: 480px;
  border-radius: 4px;
  display: block;
}

/* --- Best Reviews 섹션 (사이드바 + 콘텐츠) --- */
.renewal-sub .review-detail-best {
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 40px 60px;
  gap: 48px;
}

/* 왼쪽 사이드바: 리뷰어 목록 */
.renewal-sub .review-detail-sidebar {
  flex: 0 0 180px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 60px;
}

.renewal-sub .sidebar-reviewer {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #bbb;
  text-decoration: none;
  padding: 10px 0;
  font-family: 'Poppins', 'Pretendard', sans-serif;
  transition: color 0.2s;
  border: none;
  background: none;
}

.renewal-sub .sidebar-reviewer:hover {
  color: #171717;
}

.renewal-sub .sidebar-reviewer.active {
  color: #171717;
  font-weight: 700;
}

/* 오른쪽 콘텐츠 영역 */
.renewal-sub .review-detail-content {
  flex: 1;
  min-width: 0;
}

.renewal-sub .review-detail-content__heading {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #171717;
  margin: 0 0 32px;
}

/* 리뷰어 정보 */
.renewal-sub .review-detail-content__reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
}

.renewal-sub .review-detail-content__reviewer .reviewer-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  background: #f0f0f0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.renewal-sub .review-detail-content__reviewer .reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.renewal-sub .reviewer-avatar__initial {
  font-size: 20px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
}

.renewal-sub .reviewer-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.renewal-sub .reviewer-info .reviewer-name {
  font-size: 16px;
  font-weight: 700;
  color: #171717;
  text-decoration: none;
  font-family: 'Poppins', 'Pretendard', sans-serif;
}

.renewal-sub .reviewer-info .reviewer-name:hover {
  text-decoration: underline;
}

.renewal-sub .reviewer-info .reviewer-category {
  font-size: 12px;
  font-weight: 500;
  color: #999;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
}

/* 리뷰 본문 텍스트 */
.renewal-sub .review-detail-content__text {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  font-family: 'Pretendard', sans-serif;
  word-break: keep-all;
  overflow-wrap: break-word;
  margin-bottom: 32px;
}

/* 좋아요 & 액션 */
.renewal-sub .review-detail-content__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid #eee;
  margin-bottom: 24px;
}

.renewal-sub .review-detail__like {
  display: flex;
  align-items: center;
  gap: 6px;
}

.renewal-sub .review-detail__like .review-heart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  background: none;
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s;
}

.renewal-sub .review-detail__like .review-heart.active {
  color: #dc182b;
}

.renewal-sub .review-detail__like .review-heart:hover {
  color: #dc182b;
}

.renewal-sub .review-detail__like span {
  font-size: 14px;
  color: #999;
  font-family: 'Poppins', sans-serif;
}

.renewal-sub .review-detail__comment-count {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ccc;
}

.renewal-sub .review-detail__comment-count span {
  font-size: 14px;
  color: #999;
  font-family: 'Poppins', sans-serif;
}

.renewal-sub .review-detail__edit {
  margin-left: auto;
  font-size: 13px;
  color: #999;
  cursor: pointer;
  text-decoration: underline;
  font-family: 'Pretendard', sans-serif;
}

.renewal-sub .review-detail__edit:hover {
  color: #171717;
}

/* 댓글 입력 */
.renewal-sub .review-detail-content__comment-form {
  margin-bottom: 24px;
}

.renewal-sub .comment-input-wrap {
  display: flex;
  gap: 8px;
  align-items: center;
}

.renewal-sub .comment-input-wrap input[type="text"] {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Pretendard', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.renewal-sub .comment-input-wrap input[type="text"]:focus {
  border-color: #171717;
}

.renewal-sub .comment-input-wrap button {
  padding: 12px 24px;
  background: #171717;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Pretendard', sans-serif;
  transition: background 0.2s;
}

.renewal-sub .comment-input-wrap button:hover {
  background: #333;
}

/* --- ALL REVIEWS 그리드 --- */
.renewal-sub .review-detail-all {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

.renewal-sub .review-detail-all__title {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #171717;
  text-align: center;
  margin: 0 0 40px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

.renewal-sub .review-detail-all__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.renewal-sub .review-detail-all__card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: block;
  text-decoration: none;
}

.renewal-sub .review-detail-all__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.renewal-sub .review-detail-all__card:hover img {
  transform: scale(1.05);
}

.renewal-sub .review-detail-all__author {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  font-family: 'Poppins', 'Pretendard', sans-serif;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* --- 리뷰 상세 반응형: 태블릿 --- */
@media (max-width: 1200px) {
  .renewal-sub .review-detail-header {
    padding: 36px 28px 0;
  }

  .renewal-sub .review-detail__title {
    font-size: 32px;
  }

  .renewal-sub .review-detail__meta {
    padding: 14px 28px;
  }

  .renewal-sub .review-detail-hero {
    padding: 0 28px 32px;
    max-height: 420px;
  }

  .renewal-sub .review-detail-best {
    padding: 32px 28px 48px;
    gap: 32px;
  }

  .renewal-sub .review-detail-sidebar {
    flex: 0 0 150px;
    padding-top: 48px;
  }

  .renewal-sub .review-detail-all {
    padding: 0 28px 60px;
  }
}

/* --- 리뷰 상세 반응형: 모바일 --- */
@media (max-width: 768px) {
  .renewal-sub .review-detail-header {
    padding: 28px 20px 0;
  }

  .renewal-sub .review-detail__title {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .renewal-sub .review-detail__meta {
    padding: 12px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .renewal-sub .review-detail__meta-right {
    gap: 12px;
  }

  .renewal-sub .review-detail__meta-right .meta-tag {
    font-size: 12px;
  }

  .renewal-sub .review-detail-hero {
    flex-direction: column;
    padding: 0 20px 24px;
    max-height: none;
  }

  .renewal-sub .review-detail-hero__item {
    max-height: 300px;
  }

  .renewal-sub .review-detail-content__image img {
    max-width: 100%;
  }

  .renewal-sub .review-detail-best {
    flex-direction: column;
    padding: 24px 20px 40px;
    gap: 0;
  }

  .renewal-sub .review-detail-sidebar {
    flex: none;
    flex-direction: row;
    overflow-x: auto;
    gap: 0;
    padding: 0 0 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 24px;
    -webkit-overflow-scrolling: touch;
  }

  .renewal-sub .sidebar-reviewer {
    white-space: nowrap;
    padding: 8px 16px;
    font-size: 13px;
  }

  .renewal-sub .review-detail-content__heading {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .renewal-sub .review-detail-content__reviewer {
    margin-bottom: 24px;
    padding-bottom: 16px;
  }

  .renewal-sub .review-detail-content__reviewer .reviewer-avatar {
    width: 44px;
    height: 44px;
  }

  .renewal-sub .review-detail-content__text {
    font-size: 14px;
    line-height: 1.7;
  }

  .renewal-sub .review-detail-all {
    padding: 0 20px 48px;
  }

  .renewal-sub .review-detail-all__title {
    font-size: 22px;
    margin-bottom: 24px;
    padding-top: 32px;
  }

  .renewal-sub .review-detail-all__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

/* --- 리뷰 상세 반응형: 소형 모바일 --- */
@media (max-width: 480px) {
  .renewal-sub .review-detail-header {
    padding: 20px 16px 0;
  }

  .renewal-sub .review-detail__title {
    font-size: 20px;
  }

  .renewal-sub .review-detail__meta {
    padding: 10px 16px;
  }

  .renewal-sub .review-detail-hero {
    padding: 0 16px 20px;
  }

  .renewal-sub .review-detail-best {
    padding: 20px 16px 32px;
  }

  .renewal-sub .review-detail-all {
    padding: 0 16px 40px;
  }

  .renewal-sub .review-detail-all__grid {
    gap: 6px;
  }

  .renewal-sub .comment-input-wrap input[type="text"] {
    padding: 10px 12px;
    font-size: 13px;
  }

  .renewal-sub .comment-input-wrap button {
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* ============================================================
   마이페이지 - 마이 캠페인 (Figma 디자인)
   ============================================================ */

/* --- 마이페이지 섹션 래퍼 --- */
/* ===== 마이페이지 공통 ===== */
.renewal-sub .mypage-section {
  max-width: calc(980px + 80px);
  margin: 0 auto;
  padding: 48px 40px 80px;
}

/* --- 프로필 영역 --- */
.renewal-sub .mypage-profile {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 32px 0;
  margin-bottom: 0;
}

.renewal-sub .mypage-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: #f0f0f0;
  flex-shrink: 0;
}

.renewal-sub .mypage-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.renewal-sub .mypage-profile-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}

.renewal-sub .mypage-username {
  font-size: 22px;
  font-weight: 700;
  color: #171717;
  margin: 0;
  font-family: 'Pretendard', sans-serif;
  letter-spacing: -0.3px;
  line-height: 1.25;
}

.renewal-sub .mypage-username-hon {
  font-weight: 500;
  margin-left: 1px;
}

.renewal-sub .mypage-email {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 2px 0 0;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  color: #888;
  letter-spacing: -0.2px;
  line-height: 1.3;
  min-width: 0;
  max-width: 100%;
}

.renewal-sub .mypage-email-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.renewal-sub .mypage-provider {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  display: block;
}

.renewal-sub .mypage-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}

.renewal-sub .mypage-tag-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  border: 1px solid #e5e5e5;
  border-radius: 50px;
  padding: 4px 9px;
  font-size: 13px;
  font-weight: 500;
  color: #999;
  letter-spacing: 0;
  text-transform: none;
  line-height: 13px;
}

.renewal-sub .mypage-profile-edit-btn {
  flex-shrink: 0;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 16px;
  background: #fff;
  color: #171717;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.renewal-sub .mypage-profile-edit-btn:hover {
  border-color: #171717;
  background: #171717;
  color: #fff;
}

/* --- 탭 네비게이션 --- */
.renewal-sub .mypage-tabs {
  display: flex;
  justify-content: flex-start;
  gap: 0;
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 36px;
  margin-top: 0;
}

.renewal-sub .mypage-tabs a {
  font-size: 15px;
  font-weight: 500;
  color: #bbb;
  text-decoration: none;
  padding: 14px 20px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s;
  white-space: nowrap;
}

.renewal-sub .mypage-tabs a:first-child {
  padding-left: 0;
}

.renewal-sub .mypage-tabs a:hover {
  color: #666;
}

.renewal-sub .mypage-tabs a.active {
  color: #171717;
  font-weight: 600;
  border-bottom-color: #171717;
}

/* --- 캠페인 그리드 (PC: 3열) --- */
.renewal-sub .mycamp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 24px;
  margin-bottom: 48px;
}

/* --- 캠페인 카드 --- */
.renewal-sub .mycamp-card {
  display: flex;
  flex-direction: column;
}

/* 상태 헤더 */
.renewal-sub .mycamp-status {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.renewal-sub .mycamp-status span {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #666;
  letter-spacing: -0.16px;
}

.renewal-sub .mycamp-status.review-needed span { color: #171717; font-weight: 600; }
.renewal-sub .mycamp-status.selected span { color: #171717; font-weight: 600; }
.renewal-sub .mycamp-status.pending span { color: #999; }
.renewal-sub .mycamp-status.rejected span { color: #bbb; }
.renewal-sub .mycamp-status.cancelled span { color: #bbb; }
.renewal-sub .mycamp-status.submitted span { color: #171717; font-weight: 600; }

/* 카드 바디 — campaign-card 스타일 상속 */
.renewal-sub .mycamp-card-body {
  display: flex;
  flex-direction: column;
}

.renewal-sub .mycamp-image.campaign-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 0;
  overflow: hidden;
  position: relative;
}

.renewal-sub .mycamp-image.campaign-card .card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 2px;
  overflow: hidden;
  background: #e8e8e8;
}

/* PC (769px+): 진행중인 캠페인 스크롤 카드와 동일한 매거진 오버레이 */
@media (min-width: 769px) {
  .renewal-sub .mycamp-image.campaign-card .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 24px 24px;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0.02) 35%,
      rgba(0,0,0,0.08) 55%,
      rgba(0,0,0,0.2) 78%,
      rgba(0,0,0,0.38) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    min-height: 100%;
  }

  .renewal-sub .mycamp-image.campaign-card .card-overlay-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 6px;
  }

  .renewal-sub .mycamp-image.campaign-card .card-brand {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    opacity: 0.88;
    white-space: nowrap;
    line-height: 1.4;
    letter-spacing: -0.1px;
  }

  .renewal-sub .mycamp-image.campaign-card .card-desc {
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .renewal-sub .mycamp-image.campaign-card .card-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    letter-spacing: -0.13px;
  }

  .renewal-sub .mycamp-image.campaign-card .card-info-icon {
    display: none;
  }

  .renewal-sub .mycamp-image.campaign-card .card-divider {
    font-size: 11px;
    width: auto;
    height: auto;
    background: transparent;
    color: rgba(255,255,255,0.5);
    margin: 0 2px;
  }
}

.renewal-sub .mycamp-image.campaign-card .card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 7px;
  border-radius: 2px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  letter-spacing: 0.2px;
}

.renewal-sub .mycamp-image.campaign-card .card-badge.badge-dday {
  background: #000;
}

.renewal-sub .mycamp-image.campaign-card .card-badge.badge-completed {
  background: rgba(0, 0, 0, 0.5);
}

.renewal-sub .mycamp-brand {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 24px;
}

.renewal-sub .mycamp-title {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 6px;
  line-height: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.renewal-sub .mycamp-info {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.renewal-sub .mycamp-info svg {
  flex-shrink: 0;
  color: #fff;
}

.renewal-sub .mycamp-info .divider {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 2px;
}

/* 카드 액션 버튼 */
.renewal-sub .mycamp-card-action {
  margin-top: 8px;
}

.renewal-sub .mycamp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  padding: 0 15px;
  background: #171717;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}

.renewal-sub .mycamp-btn:hover {
  opacity: 0.8;
}

.renewal-sub .mycamp-btn.outline {
  background: #fff;
  color: #171717;
  border: 1px solid #e0e0e0;
}

.renewal-sub .mycamp-btn.outline:hover {
  border-color: #171717;
}

.renewal-sub .mycamp-btn.disabled {
  background: #fff;
  color: #bbb;
  border: 1px solid #e0e0e0;
  cursor: default;
  pointer-events: none;
}

/* 더보기 버튼 */
.renewal-sub .mycamp-more-wrap {
  display: flex;
  justify-content: center;
  padding: 20px 0 40px;
}

.renewal-sub .mycamp-btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 44px;
  padding: 0 32px;
  background: #fff;
  color: #171717;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #ddd;
  border-radius: 22px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s;
}

.renewal-sub .mycamp-btn-more:hover {
  border-color: #171717;
}

/* 빈 상태 */
.renewal-sub .mycamp-empty {
  text-align: center;
  padding: 100px 0;
  color: #bbb;
  font-size: 15px;
}

/* --- 마이페이지 반응형 - 태블릿 --- */
@media (max-width: 1200px) {
  .renewal-sub .mycamp-grid {
    gap: 24px 20px;
  }
}

/* --- 마이페이지 반응형 - 모바일 --- */
@media (max-width: 768px) {
  .renewal-sub .mypage-section {
    padding: 0 0 60px;
    max-width: none;
  }

  .renewal-sub .mypage-profile {
    gap: 14px;
    padding: 20px 0;
  }

  .renewal-sub .mypage-avatar {
    width: 52px;
    height: 52px;
  }

  .renewal-sub .mypage-username {
    font-size: 18px;
    font-weight: 700;
  }

  .renewal-sub .mypage-email {
    font-size: 13px;
    gap: 5px;
  }

  .renewal-sub .mypage-provider {
    width: 14px;
    height: 14px;
  }

  .renewal-sub .mypage-profile-info {
    gap: 4px;
  }

  .renewal-sub .mypage-tag-pill {
    font-size: 13px;
    font-weight: 500;
    padding: 4px 9px;
    background: #f8f8f8;
    border: 1px solid #e5e5e5;
    border-radius: 50px;
    line-height: 13px;
    color: #999;
    text-transform: none;
    letter-spacing: 0;
  }

  /* 탭 모바일 — 양옆 여백 없이 화면 꽉 차게 */
  .renewal-sub .mypage-tabs {
    gap: 0;
    margin: 0 -16px 24px;
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    border-bottom: 1px solid #ebebeb;
  }

  .renewal-sub .mypage-tabs::-webkit-scrollbar {
    display: none;
  }

  .renewal-sub .mypage-tabs a {
    font-size: 15px;
    padding: 12px 16px;
    border-bottom: 2px solid transparent;
  }

  .renewal-sub .mypage-tabs a:first-child {
    padding-left: 16px;
  }

  .renewal-sub .mypage-tabs a.active {
    font-weight: 600;
    border-bottom: 2px solid #171717;
  }

  /* 캠페인 그리드 → 단일 컬럼 리스트 */
  .renewal-sub .mycamp-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* 카드 */
  .renewal-sub .mycamp-card {
    padding: 0;
    border-bottom: none;
  }

  .renewal-sub .mycamp-status {
    margin-bottom: 12px;
  }

  .renewal-sub .mycamp-status span {
    font-size: 18px;
    font-weight: 700;
  }

  /* 모바일: 전체 캠페인 그리드 카드와 동일한 가로 리스트 스타일 */
  .renewal-sub .mycamp-image.campaign-card {
    display: flex;
    gap: 16px;
    overflow: visible;
    width: 100%;
    align-items: stretch;
  }

  .renewal-sub .mycamp-image.campaign-card .card-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    background: transparent;
  }

  .renewal-sub .mycamp-image.campaign-card .card-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
  }

  .renewal-sub .mycamp-image.campaign-card .card-overlay {
    position: static;
    background: none;
    min-height: auto;
    padding: 6px 0 4px;
    align-items: flex-start;
    text-align: left;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: #171717;
    gap: 0;
  }

  .renewal-sub .mycamp-image.campaign-card .card-overlay-top {
    justify-content: flex-start;
    gap: 6px;
    margin-bottom: 0;
  }

  .renewal-sub .mycamp-image.campaign-card .card-badge {
    top: 6px;
    left: 6px;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
    border-radius: 2px;
  }

  .renewal-sub .mycamp-image.campaign-card .card-brand {
    font-size: 13px;
    font-weight: 600;
    color: #171717;
    line-height: 1.25;
    letter-spacing: -0.26px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .renewal-sub .mycamp-image.campaign-card .card-desc {
    font-size: 13px;
    font-weight: 500;
    color: #555;
    margin: 4px 0 0;
    line-height: 18px;
    letter-spacing: -0.28px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 100%;
  }

  .renewal-sub .mycamp-image.campaign-card .card-info {
    margin-top: auto;
    justify-content: flex-start;
    gap: 4px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0;
  }

  .renewal-sub .mycamp-image.campaign-card > .card-info > .card-info-icon {
    display: none;
  }

  .renewal-sub .mycamp-image.campaign-card .card-recruit,
  .renewal-sub .mycamp-image.campaign-card .card-type {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    background: #f2f2f2 !important;
    color: #5a5a5a !important;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 3px;
    line-height: 1.4;
    letter-spacing: -0.1px;
    white-space: nowrap;
  }

  .renewal-sub .mycamp-image.campaign-card .card-recruit .card-info-icon,
  .renewal-sub .mycamp-image.campaign-card .card-type .card-type-icon {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
    opacity: 1;
    color: #5a5a5a;
    display: inline-block;
  }

  .renewal-sub .mycamp-image.campaign-card .card-divider {
    display: none;
  }

  .renewal-sub .mycamp-card-action {
    margin-top: 10px;
  }

  .renewal-sub .mycamp-btn {
    height: 40px;
    font-size: 14px;
    border-radius: 0;
  }

  .renewal-sub .mycamp-more-wrap {
    padding: 16px 0 32px;
  }

  .renewal-sub .mycamp-empty {
    padding: 60px 0;
  }
}

/* --- 마이페이지 반응형 - 소형 모바일 --- */
@media (max-width: 480px) {
  .renewal-sub .mypage-tabs {
    gap: 0;
  }

  .renewal-sub .mypage-avatar {
    width: 50px;
    height: 50px;
  }

  .renewal-sub .mycamp-image {
    width: 102px;
    height: 102px;
    border-radius: 6px;
  }
}

/* ============================================================
   마이페이지 - 내 포인트 (Figma 디자인)
   ============================================================ */

/* --- 포인트 요약 영역 --- */
.renewal-sub .mypoint-summary {
  margin-bottom: 48px;
}

.renewal-sub .mypoint-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.renewal-sub .mypoint-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #171717;
  margin: 0;
}

.renewal-sub .mypoint-header svg {
  flex-shrink: 0;
}

/* 포인트 유의사항 팝업 */
.renewal-sub .mypoint-info-wrap {
  position: relative;
}

.renewal-sub .mypoint-info-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.renewal-sub .mypoint-notice-popup {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 100;
  width: 320px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.renewal-sub .mypoint-notice-popup.active {
  display: block;
}

.renewal-sub .mypoint-notice-title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #171717;
  margin-bottom: 8px;
}

.renewal-sub .mypoint-notice-desc {
  font-size: 14px;
  font-weight: 400;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* PC: 포인트 금액 + 버튼 가로 배치 */
.renewal-sub .mypoint-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.renewal-sub .mypoint-amount {
  font-family: 'Poppins', 'Pretendard', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #171717;
  margin: 0;
  line-height: 1.1;
}

.renewal-sub .mypoint-unit {
  font-size: 28px;
  font-weight: 500;
  margin-left: 2px;
}

.renewal-sub .mypoint-actions {
  display: flex;
  gap: 12px;
}

.renewal-sub .mypoint-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 48px;
  padding: 0 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
}

.renewal-sub .mypoint-btn.outline {
  background: #fff;
  color: #171717;
  border: 1px solid #ddd;
}

.renewal-sub .mypoint-btn.outline:hover {
  border-color: #171717;
}

.renewal-sub .mypoint-btn.filled {
  background: #171717;
  color: #fff;
}

.renewal-sub .mypoint-btn.filled:hover {
  background: #333;
}

/* 소멸 예정 포인트 박스 */
.renewal-sub .mypoint-expiry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 400px;
  padding: 14px 20px;
  border: 1px solid #eee;
  border-radius: 10px;
  font-size: 14px;
  color: #666;
}

.renewal-sub .mypoint-expiry-val {
  font-weight: 700;
  color: #171717;
}

/* --- 포인트 내역 영역 --- */
.renewal-sub .mypoint-history {
  padding-top: 8px;
}

.renewal-sub .mypoint-history-title {
  font-size: 18px;
  font-weight: 700;
  color: #171717;
  margin: 0 0 24px;
}

/* 서브탭 (적립현황/사용내역/소멸예정) */
.renewal-sub .mypoint-tabs {
  display: flex;
  gap: 28px;
  border-bottom: 1px solid #eee;
  margin-bottom: 24px;
}

.renewal-sub .mypoint-tabs a {
  font-size: 15px;
  font-weight: 500;
  color: #bbb;
  text-decoration: none;
  padding-bottom: 14px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.renewal-sub .mypoint-tabs a:hover {
  color: #666;
}

.renewal-sub .mypoint-tabs a.active {
  color: #171717;
  font-weight: 700;
  border-bottom-color: #171717;
}

/* 기간 필터 */
.renewal-sub .mypoint-filters {
  margin-bottom: 24px;
}

.renewal-sub .mypoint-period-btns {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.renewal-sub .mypoint-period {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 500;
  color: #666;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
}

.renewal-sub .mypoint-period:hover {
  border-color: #999;
}

.renewal-sub .mypoint-period.active {
  background: #171717;
  color: #fff;
  border-color: #171717;
}

/* 날짜 범위 입력 */
.renewal-sub .mypoint-date-range {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.renewal-sub .mypoint-date-input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  height: 44px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
}

.renewal-sub .mypoint-date-input input {
  width: 130px;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: 'Poppins', 'Pretendard', sans-serif;
  color: #171717;
  background: transparent;
  text-align: center;
}

.renewal-sub .mypoint-date-sep {
  color: #999;
  font-size: 14px;
}

.renewal-sub .mypoint-cal-icon {
  flex-shrink: 0;
  color: #999;
}

.renewal-sub .mypoint-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 24px;
  background: #171717;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.renewal-sub .mypoint-search-btn:hover {
  background: #333;
}

/* 포인트 목록 */
.renewal-sub .mypoint-list {
  margin-top: 8px;
}

.renewal-sub .mypoint-item {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}

.renewal-sub .mypoint-item-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.renewal-sub .mypoint-item-date {
  font-size: 12px;
  color: #bbb;
  font-family: 'Poppins', 'Pretendard', sans-serif;
}

.renewal-sub .mypoint-item-desc {
  font-size: 15px;
  font-weight: 600;
  color: #171717;
  margin: 0;
}

.renewal-sub .mypoint-item-point {
  font-family: 'Poppins', 'Pretendard', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #171717;
  white-space: nowrap;
}

.renewal-sub .mypoint-item-point.plus {
  color: #171717;
}

.renewal-sub .mypoint-item-point.minus {
  color: #999;
}

.renewal-sub .mypoint-empty {
  text-align: center;
  padding: 80px 0;
  color: #bbb;
  font-size: 15px;
}

/* --- 내 포인트 반응형 - 모바일 --- */
@media (max-width: 768px) {
  .renewal-sub .mypoint-summary {
    margin-bottom: 32px;
  }

  .renewal-sub .mypoint-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .renewal-sub .mypoint-amount {
    font-size: 40px;
  }

  .renewal-sub .mypoint-unit {
    font-size: 22px;
  }

  .renewal-sub .mypoint-expiry {
    max-width: 100%;
    margin-bottom: 16px;
  }

  .renewal-sub .mypoint-actions {
    width: 100%;
  }

  .renewal-sub .mypoint-btn {
    flex: 1;
    min-width: 0;
    height: 44px;
    font-size: 14px;
  }

  .renewal-sub .mypoint-history-title {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .renewal-sub .mypoint-tabs {
    gap: 0;
    margin-bottom: 20px;
  }

  .renewal-sub .mypoint-tabs a {
    flex: 1;
    text-align: center;
    font-size: 14px;
    padding-bottom: 12px;
  }

  .renewal-sub .mypoint-period-btns {
    flex-wrap: wrap;
  }

  .renewal-sub .mypoint-period {
    height: 34px;
    padding: 0 14px;
    font-size: 12px;
  }

  .renewal-sub .mypoint-date-range {
    flex-direction: row;
    justify-content: flex-start;
  }

  .renewal-sub .mypoint-date-input {
    flex: 1;
    min-width: 0;
    padding: 0 12px;
    height: 42px;
  }

  .renewal-sub .mypoint-date-input input {
    width: 120px;
    font-size: 13px;
  }

  .renewal-sub .mypoint-search-btn {
    height: 42px;
    padding: 0 20px;
    font-size: 13px;
  }

  .renewal-sub .mypoint-item {
    padding: 16px 0;
  }

  .renewal-sub .mypoint-item-desc {
    font-size: 14px;
  }

  .renewal-sub .mypoint-item-point {
    font-size: 15px;
  }

  .renewal-sub .mypoint-empty {
    padding: 60px 0;
  }

  .renewal-sub .mypoint-notice-popup {
    width: 280px;
    padding: 16px 20px;
  }
}

/* --- 내 포인트 반응형 - 소형 모바일 --- */
@media (max-width: 480px) {
  .renewal-sub .mypoint-amount {
    font-size: 32px;
  }

  .renewal-sub .mypoint-unit {
    font-size: 18px;
  }

  .renewal-sub .mypoint-date-input input {
    width: 110px;
    font-size: 12px;
  }

  .renewal-sub .mypoint-notice-popup {
    width: 240px;
    padding: 14px 16px;
  }

  .renewal-sub .mypoint-notice-title {
    font-size: 14px;
  }

  .renewal-sub .mypoint-notice-desc {
    font-size: 13px;
  }
}

/* ============================================================
   마이페이지 - 1:1 문의 (Figma 디자인)
   ============================================================ */

/* --- 문의 헤더 (타이틀 + 버튼) --- */
.renewal-sub .myqna-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

.renewal-sub .myqna-header-left {
  flex: 1;
  min-width: 0;
}

.renewal-sub .myqna-title {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin: 0 0 4px;
  line-height: 1;
}

.renewal-sub .myqna-desc {
  font-size: 16px;
  font-weight: 500;
  color: #989898;
  margin: 0;
  line-height: 26px;
}

.renewal-sub .myqna-btn-write {
  flex-shrink: 0;
  height: 36px;
  padding: 0 15px;
  background: #000;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  margin-left: 24px;
  min-width: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.renewal-sub .myqna-btn-write:hover {
  background: #333;
}

/* --- PC 테이블 --- */
.renewal-sub .myqna-table {
  width: 100%;
}

.renewal-sub .myqna-table-head {
  display: grid;
  grid-template-columns: 60px 140px 1fr 140px 140px;
  align-items: center;
  padding: 15px 22px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  font-size: 16px;
  font-weight: 500;
  color: #808080;
}

.renewal-sub .myqna-table-head .col-no,
.renewal-sub .myqna-table-head .col-date,
.renewal-sub .myqna-table-head .col-status {
  text-align: center;
}

.renewal-sub .myqna-table-row {
  display: grid;
  grid-template-columns: 60px 140px 1fr 140px 140px;
  align-items: center;
  padding: 15px 22px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: background 0.15s;
}

.renewal-sub .myqna-table-row:hover {
  background: #fafafa;
}

.renewal-sub .myqna-table-row .col-no {
  text-align: center;
  color: #000;
  font-size: 16px;
  font-weight: 500;
}

.renewal-sub .myqna-table-row .col-category {
  font-size: 14px;
  font-weight: 500;
  color: #808080;
  text-align: center;
}

.renewal-sub .myqna-table-row .col-title {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.renewal-sub .myqna-table-row .col-title:hover {
  text-decoration: underline;
}

.renewal-sub .myqna-table-row .col-date {
  text-align: center;
  font-size: 14px;
  color: #808080;
}

.renewal-sub .myqna-table-row .col-status {
  text-align: center;
}

/* --- 문의상태 배지 --- */
.renewal-sub .myqna-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 8px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 400;
}

.renewal-sub .myqna-badge.filled {
  background: #000;
  color: #fff;
}

.renewal-sub .myqna-badge.outline {
  background: #e6e6e6;
  color: #000;
}

/* --- 아코디언 상세 --- */
.renewal-sub .myqna-row-detail {
  display: none;
  grid-column: 1 / -1;
  padding: 24px 0 8px;
}

.renewal-sub .myqna-table-row.open .myqna-row-detail,
.renewal-sub .myqna-mobile-item.open .myqna-row-detail {
  display: block;
}

.renewal-sub .myqna-detail-q,
.renewal-sub .myqna-detail-a {
  padding: 20px 24px;
  margin-bottom: 8px;
  border-radius: 8px;
}

.renewal-sub .myqna-detail-q {
  background: #f8f8f8;
}

.renewal-sub .myqna-detail-a {
  background: #f0f4ff;
}

.renewal-sub .myqna-detail-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #171717;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.renewal-sub .myqna-detail-q p,
.renewal-sub .myqna-detail-a p {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  margin: 0;
  word-break: break-word;
}

/* --- 빈 목록 --- */
.renewal-sub .myqna-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 27px;
  padding: 120px 0;
  text-align: center;
}

.renewal-sub .myqna-empty svg {
  opacity: 0.5;
}

.renewal-sub .myqna-empty p {
  font-size: 16px;
  font-weight: 500;
  color: #989898;
  margin: 0;
  line-height: 26px;
}

/* --- 모바일 목록 (기본 숨김) --- */
.renewal-sub .myqna-mobile-list {
  display: none;
}

/* --- 1:1 문의 반응형 - 태블릿 --- */
@media (max-width: 1024px) {
  .renewal-sub .myqna-table-head {
    grid-template-columns: 50px 120px 1fr 110px 100px;
  }

  .renewal-sub .myqna-table-row {
    grid-template-columns: 50px 120px 1fr 110px 100px;
  }
}

/* --- 1:1 문의 반응형 - 모바일 --- */
@media (max-width: 768px) {
  .renewal-sub .myqna-header {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
  }

  .renewal-sub .myqna-btn-write {
    margin-left: 0;
    width: 100%;
    height: 46px;
    font-size: 16px;
    min-width: auto;
  }

  .renewal-sub .myqna-title {
    font-size: 16px;
  }

  .renewal-sub .myqna-desc {
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
  }

  /* PC 테이블 숨김, 모바일 목록 표시 */
  .renewal-sub .myqna-table {
    display: none;
  }

  .renewal-sub .myqna-mobile-list {
    display: block;
  }

  .renewal-sub .myqna-mobile-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    cursor: pointer;
  }

  .renewal-sub .myqna-mobile-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
  }

  .renewal-sub .myqna-mobile-date {
    font-size: 13px;
    font-weight: 400;
    color: #989898;
    line-height: 18px;
  }

  .renewal-sub .myqna-mobile-category {
    font-size: 13px;
    font-weight: 400;
    color: #989898;
    margin: 2px 0 0;
    line-height: 18px;
  }

  .renewal-sub .myqna-mobile-title {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    line-height: 26px;
  }

  .renewal-sub .myqna-mobile-item .myqna-row-detail {
    padding: 16px 0 4px;
  }

  .renewal-sub .myqna-detail-q,
  .renewal-sub .myqna-detail-a {
    padding: 16px;
  }

  .renewal-sub .myqna-empty {
    padding: 80px 0;
  }

  .renewal-sub .myqna-empty p {
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
  }

  .renewal-sub .myqna-badge {
    height: 18px;
    padding: 2px 4px;
    font-size: 12px;
    border-radius: 6px;
  }
}

/* =========================================
   검색화면 (MO)
   ========================================= */
/* ===== 검색 결과 페이지 ===== */
.renewal-sub .search-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 24px 16px 60px;
}

.renewal-sub .search-input-bar {
  margin-bottom: 48px;
}
.renewal-sub .search-input-bar form {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #000;
  padding-bottom: 12px;
}
.renewal-sub .search-input-field {
  flex: 1;
  border: none;
  outline: none;
  font-size: 18px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 500;
  color: #000;
  background: transparent;
  padding: 0;
}
.renewal-sub .search-input-field::placeholder {
  color: #bbb;
}
.renewal-sub .search-input-clear {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}
.renewal-sub .search-input-clear:hover svg line {
  stroke: #000;
}
.renewal-sub .search-input-submit {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.renewal-sub .search-section {
  margin-bottom: 64px;
}

.renewal-sub .search-section:last-child {
  margin-bottom: 0;
}

/* 결과 텍스트 + 더보기 행 */
.renewal-sub .search-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.renewal-sub .search-result-text {
  font-family: 'Pretendard', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 26px;
  color: #171717;
  margin: 0;
}

.renewal-sub .search-result-text .text-gray {
  color: #bbb;
}

.renewal-sub .search-result-text .text-bold {
  font-weight: 700;
  color: #000;
}

.renewal-sub .search-more-btn {
  font-family: 'Pretendard', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
  flex-shrink: 0;
}

/* 섹션 타이틀 (REVIEW, CAMPAIGN) */
.renewal-sub .search-section-title {
  font-family: 'Pretendard', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin: 0 0 20px;
}

/* ===== 리뷰 그리드 ===== */
.renewal-sub .search-review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.renewal-sub .search-review-item a {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.renewal-sub .review-thumb {
  position: relative;
  width: 100%;
  padding-bottom: 133%;
  overflow: hidden;
  border-radius: 0;
  margin-bottom: 8px;
}

.renewal-sub .review-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.renewal-sub .review-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.renewal-sub .review-brand {
  font-family: 'Pretendard', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #999;
}

.renewal-sub .review-title {
  font-family: 'Pretendard', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  color: #171717;
}

.renewal-sub .review-author {
  font-family: 'Pretendard', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #bbb;
}

/* ===== 캠페인 그리드 (MO: 리스트) ===== */
.renewal-sub .search-campaign-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.renewal-sub .search-campaign-card a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.renewal-sub .sc-image {
  width: 102px;
  height: 102px;
  border-radius: 0;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.renewal-sub .sc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.renewal-sub .sc-image::after {
  display: none;
}

.renewal-sub .sc-badge {
  position: absolute;
  top: 6px;
  left: 7px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  color: #fff;
  font-family: 'Pretendard', sans-serif;
  font-size: 13px;
  font-weight: 400;
  padding: 2px 6px;
  border-radius: 19px;
  line-height: normal;
  white-space: nowrap;
}

.renewal-sub .sc-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.renewal-sub .sc-brand {
  font-family: 'Pretendard', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #999;
}

.renewal-sub .sc-title {
  font-family: 'Pretendard', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
  color: #171717;
}

.renewal-sub .sc-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Pretendard', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #bbb;
  margin-top: auto;
}

.renewal-sub .sc-meta-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.renewal-sub .sc-meta-divider {
  color: #ccc;
  margin: 0 2px;
}

/* ===== PC 반응형 ===== */
@media (min-width: 769px) {
  .renewal-sub .search-input-field {
    font-size: 16px;
  }
  .renewal-sub .search-page {
    padding: 48px 40px 80px;
  }

  .renewal-sub .search-section {
    margin-bottom: 80px;
  }

  .renewal-sub .search-result-text {
    font-size: 16px;
    line-height: 28px;
  }

  .renewal-sub .search-more-btn {
    font-size: 14px;
    color: #bbb;
  }

  .renewal-sub .search-section-title {
    font-size: 24px;
    margin-bottom: 28px;
  }

  /* 리뷰: 3열 */
  .renewal-sub .search-review-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .renewal-sub .review-brand {
    font-size: 14px;
    font-weight: 500;
    color: #999;
  }

  .renewal-sub .review-title {
    font-size: 16px;
  }

  .renewal-sub .review-author {
    font-size: 14px;
    color: #bbb;
  }

  /* 캠페인: 3열 카드 그리드 (오버레이 스타일) */
  .renewal-sub .search-campaign-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .renewal-sub .search-campaign-card a {
    display: block;
    position: relative;
  }

  .renewal-sub .sc-image {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    border-radius: 0;
  }

  .renewal-sub .sc-image::after {
    display: block;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.7));
    border-radius: 0;
    pointer-events: none;
  }

  .renewal-sub .sc-badge {
    top: 14px;
    left: 14px;
    font-size: 13px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
    background: rgba(0,0,0,0.5);
  }

  .renewal-sub .sc-content {
    position: absolute;
    bottom: 28px;
    left: 28px;
    right: 28px;
    gap: 4px;
  }

  .renewal-sub .sc-brand {
    font-size: 20px;
    color: #fff;
  }

  .renewal-sub .sc-title {
    font-size: 16px;
    color: #fff;
    opacity: 0.7;
    line-height: 32px;
  }

  .renewal-sub .sc-meta {
    font-size: 14px;
    color: #fff;
  }

  .renewal-sub .sc-meta-icon {
    width: 22px;
    height: 22px;
  }

  .renewal-sub .sc-meta-divider {
    color: rgba(255,255,255,0.5);
  }
}

/* =========================================
   검색 상세 페이지 (캠페인/리뷰 개별)
   ========================================= */

/* 검색 입력 */
.renewal-sub .search-input-wrap {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #171717;
  padding-bottom: 12px;
  margin-bottom: 40px;
}

.renewal-sub .search-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 20px;
  font-weight: 600;
  font-family: 'Pretendard', sans-serif;
  color: #171717;
  background: transparent;
}

.renewal-sub .search-input-wrap input::placeholder {
  color: #ccc;
  font-weight: 400;
}

.renewal-sub .search-input-wrap button {
  background: none;
  border: none;
  cursor: pointer;
  color: #171717;
  padding: 0;
}

/* 섹션 헤더 (배지) */
.renewal-sub .search-section-header {
  margin-bottom: 12px;
}

.renewal-sub .search-section-badge {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #171717;
  letter-spacing: 0.5px;
}

/* 검색 캠페인 상세 그리드 — 리스트형 */
.renewal-sub .search-campaign-detail {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.renewal-sub .search-campaign-detail .campaign-card {
  border-bottom: 1px solid #f0f0f0;
  padding: 16px 0;
  border-radius: 0;
  overflow: visible;
}

.renewal-sub .search-campaign-detail .campaign-card a {
  display: flex;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.renewal-sub .search-campaign-detail .card-image {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: auto;
  position: relative;
}

.renewal-sub .search-campaign-detail .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.renewal-sub .search-campaign-detail .card-overlay {
  display: none;
}

.renewal-sub .search-hcard-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.renewal-sub .search-hcard-badge {
  display: inline-block;
  position: absolute;
  top: 5px;
  left: 5px;
  background: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 1px 8px;
  border-radius: 4px;
  letter-spacing: 0.2px;
}

.renewal-sub .search-hcard-brand {
  font-size: 13px;
  font-weight: 500;
  color: #999;
  margin: 0 0 2px;
}

.renewal-sub .search-hcard-title {
  font-size: 15px;
  font-weight: 600;
  color: #171717;
  margin: 0 0 4px;
  line-height: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.renewal-sub .search-hcard-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  color: #bbb;
  margin-top: auto;
}

.renewal-sub .search-hcard-meta svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.renewal-sub .search-hcard-divider {
  color: #ddd;
  margin: 0 1px;
}

/* 검색 리뷰 상세 그리드 */
.renewal-sub .search-review-detail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.renewal-sub .search-review-detail .campaign-card {
  border-radius: 0;
  overflow: visible;
}

.renewal-sub .search-review-detail .campaign-card a {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.renewal-sub .search-review-detail .card-image {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 0;
  overflow: hidden;
  position: relative;
}

.renewal-sub .search-review-detail .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.renewal-sub .search-review-detail .card-overlay {
  display: none;
}

.renewal-sub .search-review-info {
  padding: 12px 0 0;
}

.renewal-sub .search-review-brand {
  font-size: 13px;
  font-weight: 500;
  color: #999;
  margin: 0 0 2px;
  cursor: pointer;
}

.renewal-sub .search-review-title {
  font-size: 15px;
  font-weight: 600;
  color: #171717;
  margin: 0 0 4px;
  line-height: 22px;
}

.renewal-sub .search-review-author {
  font-size: 13px;
  font-weight: 400;
  color: #bbb;
  margin: 0;
}

/* PC */
@media (min-width: 769px) {
  .renewal-sub .search-input-wrap {
    margin-bottom: 48px;
  }

  .renewal-sub .search-input-wrap input {
    font-size: 24px;
  }

  /* PC: 캠페인 오버레이 카드 그리드 — 기존 campaign-card 스타일 상속 */
  .renewal-sub .search-campaign-detail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .renewal-sub .search-campaign-detail .campaign-card {
    border-bottom: none;
    padding: 0;
  }

  .renewal-sub .search-campaign-detail .campaign-card a {
    display: block;
  }

  .renewal-sub .search-campaign-detail .card-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    position: relative;
  }

  .renewal-sub .search-campaign-detail .card-overlay {
    display: flex;
  }

  /* PC: 가로카드 정보 숨김 */
  .renewal-sub .search-hcard-info {
    display: none;
  }

  .renewal-sub .search-review-detail {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .renewal-sub .search-review-brand {
    font-size: 14px;
  }

  .renewal-sub .search-review-title {
    font-size: 17px;
    line-height: 24px;
  }

  .renewal-sub .search-review-author {
    font-size: 14px;
  }
}

/* =========================================
   공지사항 상세 (PC)
   ========================================= */
.renewal-sub .notice-detail {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px 100px;
}

.renewal-sub .notice-detail-title {
  font-family: 'Pretendard', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 32px;
}

.renewal-sub .notice-detail-header {
  border-top: 3px solid #000;
  padding-top: 38px;
  padding-bottom: 20px;
  margin-bottom: 0;
  border-bottom: 1px solid #f3f4f6;
}

.renewal-sub .notice-detail-subject {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
  margin-bottom: 15px;
}

.renewal-sub .notice-detail-meta {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: 'Pretendard', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #989898;
  line-height: 20px;
}

.renewal-sub .notice-detail-meta span + span {
  padding-left: 15px;
  margin-left: 15px;
  border-left: 1px solid #ebebeb;
}

.renewal-sub .notice-detail-content {
  padding: 60px 0;
  min-height: 200px;
  font-family: 'Pretendard', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: #000;
}

.renewal-sub .notice-detail-content img {
  max-width: 100%;
  height: auto;
}

.renewal-sub .notice-detail-footer {
  padding-top: 46px;
  border-top: 1px solid #000;
  display: flex;
  justify-content: center;
}

.renewal-sub .btn-notice-list {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 105px;
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 0;
  font-family: 'Pretendard', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  transition: background 0.2s;
}

.renewal-sub .btn-notice-list:hover {
  background: #f5f5f5;
}

@media (max-width: 768px) {
  .renewal-sub .notice-detail {
    padding: 32px 16px 60px;
  }

  .renewal-sub .notice-detail-title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .renewal-sub .notice-detail-header {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .renewal-sub .notice-detail-subject {
    font-size: 20px;
  }

  .renewal-sub .notice-detail-meta {
    font-size: 13px;
    line-height: 18px;
  }

  .renewal-sub .notice-detail-content {
    padding: 28px 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #101828;
  }

  .renewal-sub .btn-notice-list {
    width: 100%;
    padding: 0 15px;
  }
}

/* =========================================
   내 정보 수정 (PC)
   ========================================= */
.renewal-sub .profile-edit {
  max-width: 560px;
  margin: 0 auto;
  padding: 60px 20px 100px;
}

.renewal-sub .profile-edit-title {
  font-family: 'Pretendard', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #171717;
  margin-bottom: 48px;
  text-align: center;
}

.renewal-sub .profile-avatar {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.renewal-sub .profile-avatar-wrap {
  position: relative;
  width: 100px;
  height: 100px;
}

.renewal-sub .profile-avatar-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  background: #f0f0f0;
}

.renewal-sub .profile-avatar-edit {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #171717;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.renewal-sub .profile-avatar-edit svg {
  width: 16px;
  height: 16px;
  color: #fff;
}

.renewal-sub .profile-section {
  margin-bottom: 40px;
}

.renewal-sub .profile-section-title {
  font-size: 16px;
  font-weight: 700;
  color: #171717;
  margin-bottom: 20px;
}

.renewal-sub .profile-info-row {
  display: flex;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}

.renewal-sub .profile-info-label {
  width: 100px;
  font-size: 14px;
  color: #888;
  flex-shrink: 0;
}

.renewal-sub .profile-info-value {
  flex: 1;
  font-size: 14px;
  color: #171717;
}

.renewal-sub .profile-app-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: #f8f8f8;
  border-radius: 8px;
  margin-top: 16px;
  font-size: 14px;
  color: #666;
  cursor: pointer;
}

.renewal-sub .profile-app-link svg {
  width: 16px;
  height: 16px;
}

.renewal-sub .profile-field {
  margin-bottom: 24px;
}

.renewal-sub .profile-field-label {
  display: block;
  font-size: 14px;
  color: #888;
  margin-bottom: 8px;
}

.renewal-sub .profile-field-input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: none;
  border-bottom: 1px solid #e5e5e5;
  font-size: 15px;
  color: #171717;
  background: transparent;
  transition: border-color 0.2s;
}

.renewal-sub .profile-field-input:focus {
  outline: none;
  border-bottom-color: #171717;
}

.renewal-sub .profile-field-input::placeholder {
  color: #ccc;
}

.renewal-sub .profile-field-select {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: none;
  border-bottom: 1px solid #e5e5e5;
  font-size: 15px;
  color: #171717;
  background: transparent;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.renewal-sub .profile-field-select:focus {
  outline: none;
  border-bottom-color: #171717;
}

.renewal-sub .profile-category-btns {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.renewal-sub .profile-category-btn {
  flex: 1;
  height: 44px;
  border: 1px solid #e5e5e5;
  border-radius: 22px;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.2s;
}

.renewal-sub .profile-category-btn.active {
  background: #171717;
  border-color: #171717;
  color: #fff;
}

.renewal-sub .profile-address-card {
  padding: 20px;
  background: #f8f8f8;
  border-radius: 12px;
  margin-top: 16px;
}

.renewal-sub .profile-address-name {
  font-size: 15px;
  font-weight: 600;
  color: #171717;
  margin-bottom: 8px;
}

.renewal-sub .profile-address-phone {
  font-size: 14px;
  color: #666;
  margin-bottom: 4px;
}

.renewal-sub .profile-address-text {
  font-size: 14px;
  color: #666;
}

.renewal-sub .profile-change-btn {
  width: 100%;
  height: 48px;
  margin-top: 16px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  transition: background 0.2s;
}

.renewal-sub .profile-change-btn:hover {
  background: #f8f8f8;
}

.renewal-sub .profile-hobby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.renewal-sub .profile-hobby-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.renewal-sub .profile-hobby-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #171717;
}

.renewal-sub .profile-hobby-item label {
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

.renewal-sub .profile-submit-btn {
  width: 100%;
  height: 56px;
  margin-top: 48px;
  background: #171717;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}

.renewal-sub .profile-submit-btn:hover {
  background: #333;
}

@media (max-width: 768px) {
  .renewal-sub .profile-edit {
    padding: 40px 20px 80px;
  }

  .renewal-sub .profile-edit-title {
    font-size: 22px;
    margin-bottom: 32px;
  }

  .renewal-sub .profile-hobby-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================
   배송지 변경 모달
   ========================================= */
.address-modal-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
}
.address-modal {
  background: #fff; border-radius: 16px; width: 420px; max-width: 90%;
  padding: 32px; max-height: 90vh; overflow-y: auto; position: relative;
}
.address-modal-header {
  display: flex; align-items: center; justify-content: center;
  position: relative; margin-bottom: 28px;
}
.address-modal-title { font-family: 'Pretendard', sans-serif; font-size: 18px; font-weight: 700; color: #171717; margin: 0; }
.address-modal-close { position: absolute; right: 0; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; padding: 4px; display: flex; align-items: center; justify-content: center; }
.address-modal-body { margin-bottom: 8px; }
.address-modal-field { margin-bottom: 20px; }
.address-modal-label { display: block; font-family: 'Pretendard', sans-serif; font-size: 14px; font-weight: 700; color: #171717; margin-bottom: 8px; }
.address-modal-input { width: 100%; height: 44px; padding: 0; border: none; border-bottom: 1px solid #e5e5e5; font-family: 'Pretendard', sans-serif; font-size: 15px; color: #171717; background: transparent; box-sizing: border-box; transition: border-color 0.2s; }
.address-modal-input:focus { outline: none; border-bottom-color: #171717; }
.address-modal-input::placeholder { color: #ccc; }
.address-modal-input[readonly] { color: #888; }
.address-modal-ziprow { display: flex; gap: 12px; align-items: center; margin-bottom: 0; }
.address-modal-ziprow .address-modal-input { flex: 1; }
.address-modal-search-btn { flex-shrink: 0; padding: 0 20px; height: 40px; background: #fff; border: 1px solid #171717; border-radius: 6px; font-family: 'Pretendard', sans-serif; font-size: 14px; font-weight: 500; color: #171717; cursor: pointer; white-space: nowrap; transition: background 0.2s; }
.address-modal-search-btn:hover { background: #f8f8f8; }
.address-modal-submit { width: 100%; height: 52px; margin-top: 16px; background: #171717; border: none; border-radius: 8px; font-family: 'Pretendard', sans-serif; font-size: 16px; font-weight: 600; color: #fff; cursor: pointer; transition: background 0.2s; }
.address-modal-submit:hover { background: #333; }

/* Mobile bottom-sheet */
@media (max-width: 768px) {
  .address-modal-overlay { align-items: flex-end; }
  .address-modal { width: 100%; max-width: 100%; border-radius: 16px 16px 0 0; padding: 24px 20px; max-height: 85vh; }
  .address-modal-title { font-size: 16px; }
  .address-modal-submit { height: 48px; font-size: 15px; border-radius: 8px; }
}

/* =========================================
   포인트샵 상세 (MO)
   ========================================= */
.renewal-sub .pointshop-detail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px 60px;
}

.renewal-sub .pointshop-detail .pointshop-title {
  font-family: 'Pretendard', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #171717;
  margin-bottom: 32px;
}

.renewal-sub .pointshop-product {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.renewal-sub .pointshop-product-img {
  flex: 0 0 auto;
  width: 45%;
  max-width: 650px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  background: #fafafa;
}

.renewal-sub .pointshop-product-img img {
  width: 100%;
  display: block;
}

.renewal-sub .pointshop-product-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.renewal-sub .pointshop-product-brand {
  font-size: 13px;
  font-weight: 500;
  color: #999;
  margin-bottom: 6px;
  text-align: left;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.renewal-sub .pointshop-product-name {
  font-size: 22px;
  font-weight: 600;
  color: #171717;
  margin-bottom: 16px;
  line-height: 1.4;
  text-align: left;
}

.renewal-sub .pointshop-product-price {
  font-family: 'Pretendard', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #171717;
  margin-bottom: 32px;
  text-align: left;
  padding-bottom: 32px;
  border-bottom: 1px solid #f0f0f0;
}

.renewal-sub .pointshop-info {
  padding: 24px;
  background: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 40px;
  margin-top: 8px;
}

.renewal-sub .pointshop-info-title {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.renewal-sub .pointshop-info-content {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

.renewal-sub .pointshop-info-content p {
  display: list-item;
  list-style-type: disc;
  margin-left: 21px;
  margin-bottom: 0;
}

.renewal-sub .pointshop-info-content p span {
  font-size: inherit !important;
  font-family: inherit !important;
  line-height: inherit !important;
}

.renewal-sub .pointshop-buy-btn {
  width: 100%;
  height: 52px;
  background: #171717;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: auto;
}

.renewal-sub .pointshop-buy-btn:hover {
  background: #333;
}

/* =========================================
   리뷰제출 팝업 (MO/PC)
   ========================================= */
.renewal-sub .review-submit-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.renewal-sub .review-submit-modal.active {
  display: flex;
}

.renewal-sub .review-submit-content {
  width: 100%;
  max-width: 400px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.renewal-sub .review-submit-header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.renewal-sub .review-submit-title {
  font-size: 17px;
  font-weight: 600;
  color: #171717;
}

.renewal-sub .review-submit-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.renewal-sub .review-submit-close svg {
  width: 20px;
  height: 20px;
  color: #666;
}

.renewal-sub .review-submit-body {
  padding: 24px;
}

.renewal-sub .review-submit-campaign {
  display: flex;
  gap: 16px;
  align-items: stretch;
  margin-bottom: 28px;
}

.renewal-sub .review-submit-thumb {
  width: 100px;
  height: 100px;
  border-radius: 2px;
  overflow: hidden;
  object-fit: cover;
  flex-shrink: 0;
  position: relative;
}

.renewal-sub .review-submit-thumb .card-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 6px;
  border-radius: 2px;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0;
  white-space: nowrap;
}

.renewal-sub .review-submit-thumb .card-badge.badge-dday {
  background: #171717;
}

.renewal-sub .review-submit-thumb .card-badge.badge-completed {
  background: rgba(80, 80, 80, 0.45);
}

.renewal-sub .review-submit-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.renewal-sub .review-submit-camp-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100px;
  min-width: 0;
}

.renewal-sub .review-submit-info {
  flex: 1;
}

.renewal-sub .review-submit-badge {
  display: inline-block;
  padding: 4px 8px;
  background: #171717;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 4px;
  margin-bottom: 8px;
}

.renewal-sub .review-submit-brand {
  font-size: 13px;
  font-weight: 600;
  color: #171717;
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.26px;
}

.renewal-sub .review-submit-title {
  font-size: 13px;
  font-weight: 500;
  color: #555;
  margin: 4px 0 0;
  line-height: 18px;
  letter-spacing: -0.28px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.renewal-sub .review-submit-product {
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
  line-height: 1.4;
}

.renewal-sub .review-submit-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

.renewal-sub .review-submit-meta .card-recruit,
.renewal-sub .review-submit-meta .card-type {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: #f2f2f2;
  color: #5a5a5a;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 3px;
  line-height: 1.4;
  letter-spacing: -0.1px;
}

.renewal-sub .review-submit-meta .card-info-icon {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  opacity: 1;
  color: #5a5a5a;
  display: inline-block;
}

.renewal-sub .review-submit-form-title {
  font-size: 16px;
  font-weight: 600;
  color: #171717;
  margin-bottom: 8px;
}

.renewal-sub .review-submit-form-desc {
  font-size: 13px;
  color: #888;
  margin-bottom: 20px;
}

.renewal-sub .review-submit-label {
  display: block;
  font-size: 13px;
  color: #888;
  margin-bottom: 8px;
}

.renewal-sub .review-submit-input {
  width: 100%;
  height: 48px;
  line-height: 48px;
  padding: 0 12px;
  border: none;
  border-bottom: 1px solid #e3e3e3;
  font-size: 14px;
  color: #171717;
  background: transparent;
  box-sizing: border-box;
}

.renewal-sub .review-submit-input:focus {
  outline: none;
  border-bottom-color: #000;
}

.renewal-sub .review-submit-input::placeholder {
  color: #ccc;
}

.renewal-sub .review-submit-btn {
  width: 100%;
  height: 52px;
  margin-top: 32px;
  background: #e5e5e5;
  border: none;
  border-radius: 0;
  font-size: 15px;
  font-weight: 600;
  color: #999;
  cursor: not-allowed;
  transition: all 0.2s;
}

.renewal-sub .review-submit-btn.active {
  background: #171717;
  color: #fff;
  cursor: pointer;
}

.renewal-sub .review-submit-btn.active:hover {
  background: #333;
}

/* =========================================
   브랜드 페이지 (MO/PC)
   ========================================= */
.renewal-sub .brand-profile {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px 100px;
}

/* 구버전 브랜드 스타일 제거됨 — 8576줄 이후 새 버전 사용 */

/* =========================================
   마이 캠페인 (MO) 반응형
   ========================================= */
@media (max-width: 768px) {
  .renewal-sub .my-campaign-tabs {
    display: flex;
    overflow-x: auto;
    gap: 0;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .renewal-sub .my-campaign-tabs::-webkit-scrollbar {
    display: none;
  }

  .renewal-sub .my-campaign-tabs a {
    flex-shrink: 0;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #888;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
  }

  .renewal-sub .my-campaign-tabs a.active {
    color: #171717;
    font-weight: 600;
    border-bottom-color: #171717;
  }

  .renewal-sub .my-campaign-section {
    margin-bottom: 32px;
  }

  .renewal-sub .my-campaign-section-title {
    font-size: 15px;
    font-weight: 600;
    color: #171717;
    margin-bottom: 16px;
    padding: 0 4px;
  }

  .renewal-sub .my-campaign-card {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    margin-bottom: 12px;
  }

  .renewal-sub .my-campaign-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
  }

  .renewal-sub .my-campaign-info {
    flex: 1;
    min-width: 0;
  }

  .renewal-sub .my-campaign-badge {
    display: inline-block;
    padding: 1px 8px;
    background: #000;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    border-radius: 4px;
    margin-bottom: 8px;
    letter-spacing: 0.2px;
  }

  .renewal-sub .my-campaign-brand {
    font-size: 14px;
    font-weight: 600;
    color: #171717;
    margin-bottom: 4px;
  }

  .renewal-sub .my-campaign-product {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .renewal-sub .my-campaign-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #888;
  }

  .renewal-sub .my-campaign-btn {
    display: block;
    width: 100%;
    height: 40px;
    margin-top: 12px;
    background: #171717;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
  }

  .renewal-sub .my-campaign-btn.outline {
    background: #fff;
    border: 1px solid #e5e5e5;
    color: #666;
  }
}

/* ============================================================
   마이페이지 - 프로필 수정 버튼 (Figma 공통)
   ============================================================ */
.renewal-sub .mypage-profile {
  position: relative;
}
.renewal-sub .mypage-profile-edit-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* ============================================================
   마이페이지 메인 - 프로필 완성도 카드
   ============================================================ */
.renewal-sub .mypage-avatar--editable {
  position: relative;
  cursor: pointer;
}
.renewal-sub .mypage-avatar-edit {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 28px;
  height: 28px;
  background: #171717;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.renewal-sub .mypage-main-content {
  text-align: center;
}
.renewal-sub .mypage-main-notice {
  font-size: 14px;
  color: #e74c3c;
  font-weight: 500;
  margin-bottom: 32px;
}
.renewal-sub .mypage-main-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
  margin: 0 auto;
}
.renewal-sub .mypage-main-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-radius: 12px;
  background: #f8f8f8;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}
.renewal-sub .mypage-main-card:hover {
  background: #f0f0f0;
}
.renewal-sub .mypage-main-card.disabled {
  background: #fdf6ec;
  cursor: default;
}
.renewal-sub .mypage-main-card-text {
  text-align: left;
}
.renewal-sub .mypage-main-card-label {
  font-size: 11px;
  font-weight: 600;
  color: #999;
  letter-spacing: 1px;
  margin-bottom: 4px;
  font-family: 'Poppins', sans-serif;
}
.renewal-sub .mypage-main-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #171717;
}
.renewal-sub .mypage-main-card-status {
  font-size: 14px;
  font-weight: 500;
  color: #999;
}
.renewal-sub .mypage-main-card-status.done {
  color: #171717;
}

/* ============================================================
   마이페이지 - 내 리뷰 그리드 (Figma: PC 3열 / MO 2열)
   ============================================================ */
.renewal-sub .myreview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 16px;
}
.renewal-sub .myreview-card {
  cursor: pointer;
  min-width: 0;
}
.renewal-sub .myreview-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.renewal-sub .myreview-thumb {
  position: relative;
  width: 100%;
  padding-bottom: 133.33%; /* 3:4 비율 (4/3*100) */
  overflow: hidden;
  border-radius: 0;
  background: #f0f0f0;
  margin-bottom: 10px;
}
.renewal-sub .myreview-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.renewal-sub .myreview-play {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.renewal-sub .myreview-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #171717;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 0;
}
.renewal-sub .myreview-badge.closed {
  background: #999;
}
.renewal-sub .myreview-brand {
  font-family: 'Poppins', 'Pretendard', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #bbb;
  margin: 0 0 4px;
  letter-spacing: 0;
  text-transform: uppercase;
}
.renewal-sub .myreview-title {
  font-size: 14px;
  font-weight: 500;
  color: #171717;
  margin: 0;
  letter-spacing: -0.3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.renewal-sub .myreview-meta {
  font-size: 12px;
  color: #999;
  margin: 4px 0 0;
}
.renewal-sub .myreview-card.finished {
  opacity: 0.5;
}

/* 빈 상태 */
.renewal-sub .mypage-empty {
  text-align: center;
  padding: 80px 0;
  color: #999;
  font-size: 14px;
}

/* ============================================================
   마이페이지 - 내가 쓴 댓글
   ============================================================ */
.renewal-sub .myreple-list {
  display: flex;
  flex-direction: column;
}
.renewal-sub .myreple-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}
.renewal-sub .myreple-item:first-child {
  padding-top: 0;
}
.renewal-sub .myreple-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #f0f0f0;
}
.renewal-sub .myreple-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.renewal-sub .myreple-content {
  flex: 1;
  min-width: 0;
}
.renewal-sub .myreple-user {
  font-size: 13px;
  font-weight: 600;
  color: #171717;
  margin: 0 0 4px;
}
.renewal-sub .myreple-text {
  font-size: 14px;
  color: #444;
  margin: 0 0 6px;
  line-height: 1.5;
}
.renewal-sub .myreple-text a {
  color: inherit;
  text-decoration: none;
}
.renewal-sub .myreple-text a:hover {
  text-decoration: underline;
}
.renewal-sub .myreple-date {
  font-size: 12px;
  color: #bbb;
  margin: 0;
}

/* ============================================================
   마이페이지 - 1:1 문의 작성 폼 (Figma)
   ============================================================ */
.renewal-sub .myqna-form-section {
  padding-top: 60px;
  padding-bottom: 80px;
  max-width: 800px;
  margin: 0 auto;
}
.renewal-sub .myqna-form-title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin: 0 0 48px;
  font-family: 'Pretendard', sans-serif;
}
.renewal-sub .myqna-form-group {
  margin-bottom: 32px;
}
.renewal-sub .myqna-form-label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin-bottom: 8px;
  line-height: 26px;
}
.renewal-sub .myqna-form-select {
  width: 100%;
  padding: 0 12px;
  font-size: 14px;
  border: none;
  border-bottom: 1px solid #e3e3e3;
  background: transparent;
  color: #989898;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  border-radius: 0;
  outline: none;
  height: 48px;
  line-height: 48px;
}
.renewal-sub .myqna-form-select:focus {
  border-bottom-color: #000;
  color: #000;
}
.renewal-sub .myqna-form-select option {
  color: #000;
}
.renewal-sub .myqna-form-input {
  width: 100%;
  padding: 0 12px;
  font-size: 14px;
  border: none;
  border-bottom: 1px solid #e3e3e3;
  outline: none;
  color: #171717;
  box-sizing: border-box;
  height: 48px;
  line-height: 48px;
}
.renewal-sub .myqna-form-input:focus {
  border-bottom-color: #000;
}
.renewal-sub .myqna-form-input-wrap {
  position: relative;
}
.renewal-sub .myqna-form-input-wrap .myqna-form-input {
  padding-right: 36px;
}
.renewal-sub .myqna-form-input-clear {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  width: 24px;
  height: 24px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.renewal-sub .myqna-form-input-clear svg {
  display: block;
}
.renewal-sub .myqna-form-input-clear:hover svg circle {
  fill: #999;
}
.renewal-sub .myqna-form-textarea {
  width: 100%;
  min-height: 304px;
  padding: 20px 15px;
  font-size: 14px;
  border: 1px solid #e3e3e3;
  resize: vertical;
  outline: none;
  color: #171717;
  font-family: inherit;
  line-height: 20px;
  box-sizing: border-box;
}
.renewal-sub .myqna-form-textarea:focus {
  border-color: #000;
}
.renewal-sub .myqna-form-file-area {
  display: flex;
  align-items: center;
  gap: 12px;
}
.renewal-sub .myqna-form-file-btn {
  padding: 12px 0;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  background: #fff;
  border: 1px solid #e3e3e3;
  cursor: pointer;
  text-align: center;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.renewal-sub .myqna-form-file-btn:hover {
  border-color: #ccc;
}
.renewal-sub .myqna-form-file-info {
  font-size: 13px;
  color: #99a1af;
  margin: 8px 0 0;
  line-height: 18px;
}
.renewal-sub .myqna-form-file-delete {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  font-size: 14px;
  margin-left: 8px;
  padding: 2px 6px;
}
.renewal-sub .file-box {
  margin-top: 12px;
}
.renewal-sub .file-box div {
  display: flex;
  align-items: center;
  padding: 6px 0;
  font-size: 13px;
  color: #444;
}
.renewal-sub .file-box a {
  color: #444;
  text-decoration: none;
}
.renewal-sub .myqna-form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  padding: 0 15px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #000;
  border: none;
  cursor: pointer;
  margin-top: 48px;
  line-height: 26px;
}
.renewal-sub .myqna-form-submit:hover {
  background: #333;
}
.renewal-sub .myqna-form-desc {
  font-size: 14px;
  color: #888;
  margin: -36px 0 48px;
  line-height: 22px;
}
.renewal-sub .myqna-form-char-count {
  font-size: 13px;
  color: #99a1af;
  margin: 8px 0 0;
  text-align: right;
}
.renewal-sub .myqna-form-agree {
  display: flex;
  align-items: center;
  gap: 12px;
}
.renewal-sub .myqna-form-agree-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #171717;
  cursor: pointer;
  user-select: none;
  position: relative;
}
.renewal-sub .myqna-form-agree-check input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1.5px solid #d0d0d0;
  border-radius: 0;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: all 0.15s ease;
}
.renewal-sub .myqna-form-agree-check input[type="checkbox"]:checked {
  background: #171717;
  border-color: #171717;
}
.renewal-sub .myqna-form-agree-check input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 6.5px;
  width: 5px;
  height: 9px;
  border-right: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(45deg);
}
.renewal-sub .myqna-form-agree-toggle {
  font-size: 13px;
  color: #888;
  background: none;
  border: none;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
  padding: 0;
  line-height: 18px;
}
.renewal-sub .myqna-form-agree-toggle:hover {
  color: #000;
  border-bottom-color: #000;
}
.renewal-sub .myqna-form-agree-content {
  margin-top: 16px;
  padding: 20px 24px;
  background: #f8f8f8;
  border: 1px solid #e3e3e3;
  font-size: 13px;
  color: #555;
  line-height: 22px;
}
.renewal-sub .myqna-form-agree-content p {
  margin: 0 0 4px;
}
.renewal-sub .myqna-form-agree-title {
  font-weight: 600;
  color: #000;
  margin-bottom: 12px !important;
}

/* ============================================================
   마이페이지 반응형 - 리뷰/댓글/폼 (MO)
   ============================================================ */
@media (max-width: 768px) {
  .renewal-sub .myreview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
  }
  .renewal-sub .myreview-brand {
    font-size: 12px;
    font-weight: 500;
    color: #b9b9b9;
  }
  .renewal-sub .myreview-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .renewal-sub .mypage-main-cards {
    max-width: 100%;
  }
  .renewal-sub .mypage-main-card {
    padding: 20px;
  }
  .renewal-sub .myqna-form-section {
    padding-top: 40px;
  }
  .renewal-sub .myqna-form-title {
    font-size: 24px;
    margin-bottom: 32px;
  }
  .renewal-sub .myqna-form-label {
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
  }
  .renewal-sub .myqna-form-select {
    font-size: 13px;
  }
  .renewal-sub .myqna-form-input {
    font-size: 13px;
  }
  .renewal-sub .myqna-form-textarea {
    min-height: 180px;
    padding: 12px;
    font-size: 13px;
  }
  .renewal-sub .myqna-form-desc {
    font-size: 13px;
    margin: -24px 0 32px;
  }
  .renewal-sub .myqna-form-agree-content {
    padding: 16px;
    font-size: 12px;
  }
  .renewal-sub .mypage-profile-edit-btn {
    height: 32px;
    padding: 0 12px;
    font-size: 12px;
  }
}

/* ============================================================
   공지사항 목록 (Figma: 공지사항 목록 PC/MO)
   ============================================================ */
.renewal-sub .notice-section {
  max-width: 915px;
  margin: 0 auto;
  padding-top: 48px;
  padding-bottom: 80px;
}

.renewal-sub .paging {
  margin: 40px 0 0 !important;
  padding: 0 !important;
}
.renewal-sub .paging .paging__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.renewal-sub .paging a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 32px !important;
  height: 32px !important;
  font-family: 'Poppins', 'Pretendard', sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #bbb !important;
  text-decoration: none !important;
  border-radius: 6px !important;
  margin: 0 !important;
  padding: 0 !important;
  transition: color 0.15s, background 0.15s;
}
.renewal-sub .paging a:hover {
  color: #000 !important;
  background: #f5f5f5 !important;
}
.renewal-sub .paging a.on {
  font-weight: 700 !important;
  color: #000 !important;
  background: none !important;
  border-bottom: 2px solid #000;
}
.renewal-sub .paging a.prev,
.renewal-sub .paging a.next {
  width: 32px !important;
  height: 32px !important;
  border: 1px solid #e5e5e5 !important;
  border-radius: 6px !important;
  background: none !important;
}
.renewal-sub .paging a.prev:hover,
.renewal-sub .paging a.next:hover {
  border-color: #000 !important;
  background: #f5f5f5 !important;
}
.renewal-sub .paging a.prev i,
.renewal-sub .paging a.next i {
  width: 8px !important;
  height: 14px !important;
  background-size: contain !important;
}
.renewal-sub .notice-page-title {
  font-family: 'Pretendard', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin: 0 0 48px;
  text-align: left;
}
.renewal-sub .notice-table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 58px;
  padding: 0;
  border-top: 3px solid #000;
  border-bottom: 1px solid #000;
  font-family: 'Pretendard', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000;
}
.renewal-sub .notice-col-title {
  flex: 1;
  text-align: center;
}
.renewal-sub .notice-col-date {
  width: 120px;
  text-align: center;
}
.renewal-sub .notice-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 61px;
  padding: 0;
  border-bottom: 1px solid #ebebeb;
}
.renewal-sub .notice-item.notice-important .notice-title {
  font-weight: 700;
  color: #000;
}
.renewal-sub .notice-item .notice-title {
  flex: 1;
  font-family: 'Pretendard', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #171717;
  text-decoration: none;
  cursor: pointer;
  line-height: 26px;
  padding-left: 0;
}
.renewal-sub .notice-item .notice-title:hover {
  text-decoration: underline;
}
.renewal-sub .notice-date {
  width: 120px;
  text-align: center;
  font-family: 'Pretendard', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #989898;
  line-height: 18px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .renewal-sub .notice-section {
    padding: 32px 16px 60px;
  }
  .renewal-sub .notice-page-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: left;
  }
  .renewal-sub .notice-table-header {
    display: none;
  }
  .renewal-sub .notice-item {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: auto;
    gap: 4px;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
  }
  .renewal-sub .notice-item.notice-important .notice-title {
    font-weight: 700;
    color: #171717;
  }
  .renewal-sub .notice-item .notice-title {
    font-size: 15px;
    font-weight: 500;
    color: #171717;
    line-height: 22px;
    padding-left: 0 !important;
  }
  .renewal-sub .notice-date {
    width: auto;
    text-align: left;
    font-size: 13px;
    color: #bbb;
  }
}

/* ============================================================
   이벤트 상세 (eventView - renewal-sub wrapper)
   ============================================================ */
.renewal-sub .event-view-section {
  padding-top: 32px;
  padding-bottom: 80px;
  max-width: 900px;
  margin: 0 auto;
}
.renewal-sub .event-view-header {
  margin-bottom: 32px;
}
.renewal-sub .event-view-brand {
  font-size: 14px;
  font-weight: 600;
  color: #999;
  margin: 0 0 8px;
  font-family: 'Poppins', sans-serif;
}
.renewal-sub .event-view-title {
  font-size: 28px;
  font-weight: 700;
  color: #171717;
  margin: 0;
  line-height: 1.4;
}
.renewal-sub .event-view-content {
  margin-bottom: 40px;
}
.renewal-sub .event-view-content .img-wrap img {
  max-width: 100%;
  height: auto;
}

/* 이벤트 신청 */
.renewal-sub .event-apply-section {
  padding-top: 48px;
  padding-bottom: 80px;
  max-width: 600px;
  margin: 0 auto;
}
.renewal-sub .event-apply-header {
  margin-bottom: 40px;
}
.renewal-sub .event-apply-brand {
  font-size: 13px;
  font-weight: 600;
  color: #999;
  margin: 0 0 8px;
  font-family: 'Poppins', sans-serif;
}
.renewal-sub .event-apply-title {
  font-size: 28px;
  font-weight: 700;
  color: #171717;
  margin: 0 0 8px;
}
.renewal-sub .event-apply-name {
  font-size: 15px;
  color: #666;
  margin: 0;
}

@media (max-width: 768px) {
  .renewal-sub .event-view-title {
    font-size: 22px;
  }
  .renewal-sub .event-apply-title {
    font-size: 22px;
  }
}

/* ============================================================
   포인트샵 (Figma: 포인트샵 MO)
   ============================================================ */
.renewal-sub .pointshop-section {
  padding-top: 56px;
  padding-bottom: 80px;
  max-width: calc(980px + 80px);
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}
.renewal-sub .pointshop-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.renewal-sub .pointshop-title {
  font-size: 30px;
  font-weight: 600;
  color: #171717;
  margin: 0;
}
.renewal-sub .pointshop-guide-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #171717;
  background: #fff;
  border: none;
  border-radius: 20px;
  outline: 1px solid #E3E3E3;
  cursor: pointer;
}
.renewal-sub .pointshop-guide-btn:hover {
  background: #fafafa;
}

/* 유저 정보 */
.renewal-sub .pointshop-user {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}
.renewal-sub .pointshop-user-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.renewal-sub .pointshop-user-right {
  text-align: right;
}
.renewal-sub .pointshop-user-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #f0f0f0;
}
.renewal-sub .pointshop-user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.renewal-sub .pointshop-user-name {
  font-size: 15px;
  font-weight: 600;
  color: #171717;
  margin: 0;
}
.renewal-sub .pointshop-user-point-label {
  font-size: 14px;
  font-weight: 500;
  color: #999;
  margin: 0 0 4px;
}
.renewal-sub .pointshop-user-point {
  font-size: 28px;
  font-weight: 700;
  color: #171717;
  margin: 0;
  font-family: 'Poppins', 'Pretendard', sans-serif;
}
.renewal-sub .pointshop-unit {
  font-size: 20px;
  font-weight: 600;
  margin-left: 2px;
}

/* 카테고리 탭 */
.renewal-sub .pointshop-tabs {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 24px;
  border-bottom: 1px solid #f0f0f0;
}
.renewal-sub .pointshop-tabs a {
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 500;
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: -1px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s;
}
.renewal-sub .pointshop-tabs a.active {
  color: #171717;
  font-weight: 600;
  border-bottom-color: #171717;
}

/* 정렬 */
.renewal-sub .pointshop-sort {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.renewal-sub .pointshop-sort a {
  padding: 4px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #999;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.renewal-sub .pointshop-sort a.active {
  color: #171717;
  font-weight: 600;
}

/* 상품 그리드: PC 4열, MO 2열 */
.renewal-sub .pointshop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 20px;
}
.renewal-sub .pointshop-card a {
  text-decoration: none;
  color: inherit;
}
.renewal-sub .pointshop-card-img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid #f0f0f0;
  background: #fafafa;
  margin-bottom: 12px;
}
.renewal-sub .pointshop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.renewal-sub .pointshop-card-brand {
  font-size: 13px;
  font-weight: 500;
  color: #999;
  margin: 0 0 6px;
}
.renewal-sub .pointshop-card-name {
  font-size: 15px;
  font-weight: 600;
  color: #171717;
  margin: 0 0 8px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.renewal-sub .pointshop-card-price {
  font-size: 15px;
  font-weight: 600;
  color: #171717;
  margin: 0;
  font-family: 'Poppins', 'Pretendard', sans-serif;
}

/* 포인트샵 이용안내 팝업 */
.pointshop-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pointshop-popup {
  background: #fff;
  border-radius: 0;
  width: 400px;
  max-width: calc(100% - 40px);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  padding: 28px;
  box-sizing: border-box;
}
.pointshop-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.pointshop-popup-title {
  font-size: 18px;
  font-weight: 700;
  color: #171717;
  margin: 0;
}
.pointshop-popup-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.pointshop-popup-body p {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .renewal-sub .pointshop-section {
    padding: 28px 0 60px;
    max-width: none;
  }
  .renewal-sub .pointshop-header {
    padding-left: 16px;
    padding-right: 16px;
  }
  .renewal-sub .pointshop-title {
    font-size: 24px;
    font-weight: 600;
  }
  .renewal-sub .pointshop-user {
    padding-left: 16px;
    padding-right: 16px;
  }
  .renewal-sub .pointshop-user-left {
    gap: 12px;
  }
  .renewal-sub .pointshop-user-avatar {
    width: 48px;
    height: 48px;
  }
  .renewal-sub .pointshop-user-name {
    font-size: 14px;
  }
  .renewal-sub .pointshop-user-point-label {
    font-size: 13px;
  }
  .renewal-sub .pointshop-user-point {
    font-size: 22px;
  }
  .renewal-sub .pointshop-unit {
    font-size: 16px;
  }
  .renewal-sub .pointshop-tabs {
    gap: 0;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .renewal-sub .pointshop-tabs::-webkit-scrollbar {
    display: none;
  }
  .renewal-sub .pointshop-tabs a {
    padding: 10px 14px;
    font-size: 14px;
    white-space: nowrap;
  }
  .renewal-sub .pointshop-tabs {
    margin-bottom: 12px;
  }
  .renewal-sub .pointshop-sort {
    padding-left: 16px;
    padding-right: 16px;
    justify-content: flex-end;
    margin-bottom: 12px;
    margin-top: 0;
  }
  .renewal-sub .pointshop-sort a {
    font-size: 13px;
    padding: 2px 8px;
  }
  .renewal-sub .pointshop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
    padding-left: 0;
    padding-right: 0;
  }
  .renewal-sub .pointshop-card-img {
    border-radius: 0;
    margin-bottom: 8px;
  }
  .renewal-sub .pointshop-card-img {
    border-radius: 4px;
    margin-bottom: 10px;
  }
  .renewal-sub .pointshop-card-brand {
    font-size: 13px;
    font-weight: 500;
    color: #999;
    margin-bottom: 4px;
  }
  .renewal-sub .pointshop-card-name {
    font-size: 14px;
    font-weight: 600;
    color: #171717;
    margin-bottom: 6px;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.4;
  }
  .renewal-sub .pointshop-card-price {
    font-size: 14px;
    font-weight: 600;
    color: #171717;
  }

  /* 포인트샵 상세 */
  .renewal-sub .pointshop-detail {
    max-width: 100%;
    padding: 40px 20px 80px;
  }

  .renewal-sub .pointshop-detail .pointshop-title {
    font-size: 28px;
    margin-bottom: 22px;
  }

  .renewal-sub .pointshop-product {
    flex-direction: column;
    gap: 24px;
  }

  .renewal-sub .pointshop-product-img {
    width: 100%;
    max-width: 100%;
  }

  .renewal-sub .pointshop-product-img img {
    display: block;
  }

  .renewal-sub .pointshop-product-info {
    width: 100%;
  }

  .renewal-sub .pointshop-product-brand {
    font-size: 12px;
    font-weight: 500;
    color: #999;
    margin-bottom: 4px;
  }

  .renewal-sub .pointshop-product-name {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .renewal-sub .pointshop-product-price {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
  }

  .renewal-sub .pointshop-info {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 28px;
  }

  .renewal-sub .pointshop-info-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .renewal-sub .pointshop-info-content {
    font-size: 13px;
    line-height: 1.7;
    color: #666;
  }

  .renewal-sub .pointshop-info-content p {
    margin-left: 21px;
    margin-bottom: 0;
  }

  .renewal-sub .pointshop-buy-btn {
    width: 100%;
    height: 50px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 8px;
  }
}


/* ===== 브랜드 페이지 ===== */

/* 브랜드 헤더 */
/* 브랜드 페이지 컨테이너 */
.renewal-sub .brand-page-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.renewal-sub .brand-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 56px 0 48px;
}

.renewal-sub .brand-info {
  flex: 1;
  min-width: 0;
}

.renewal-sub .brand-name {
  font-family: "Poppins", "Pretendard", sans-serif;
  font-size: 42px;
  font-weight: 600;
  color: #171717;
  letter-spacing: -0.42px;
  margin: 0;
  line-height: 52px;
}

.renewal-sub .brand-name-kor {
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #999;
  letter-spacing: -0.16px;
  margin: 6px 0 16px;
}

.renewal-sub .brand-desc {
  font-family: "Pretendard", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #999;
  line-height: 24px;
  letter-spacing: -0.15px;
  margin: 0;
  max-width: 520px;
}

.renewal-sub .brand-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-left: 32px;
  border: 1px solid #eee;
}

.renewal-sub .brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.renewal-sub .brand-logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #f0f0f0;
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #999;
}

/* 캠페인 카드 — rcg 스타일 통일 */
.renewal-sub .brand-campaign-list {
  display: flex;
  flex-direction: column;
}

.renewal-sub .brand-campaign-card {
  display: flex;
  align-items: stretch;
  min-height: 520px;
  margin-bottom: 100px;
}

.renewal-sub .brand-campaign-card.reverse {
  flex-direction: row-reverse;
}

/* 캠페인 이미지 */
.renewal-sub .brand-campaign-image {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.renewal-sub .brand-campaign-image > a:first-child {
  display: block;
  width: 100%;
  height: 100%;
}

.renewal-sub .brand-campaign-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.renewal-sub .brand-image-more {
  display: none;
}

/* 캠페인 정보 */
.renewal-sub .brand-campaign-info {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 51px 0 20px 60px;
  min-width: 0;
}

.renewal-sub .brand-campaign-card.reverse .brand-campaign-info {
  padding: 51px 60px 20px 0;
}

.renewal-sub .brand-campaign-title-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.renewal-sub .brand-campaign-text {
  flex: 1;
  min-width: 0;
}

.renewal-sub .brand-campaign-label {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #999;
  letter-spacing: 0.2px;
  line-height: 22px;
  display: block;
  margin: 0 0 6px;
  transition: color 0.2s ease;
}

.renewal-sub .brand-campaign-title {
  font-family: 'Pretendard', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #171717;
  letter-spacing: -0.28px;
  line-height: 40px;
  margin: 0 0 16px;
  word-break: keep-all;
}

.renewal-sub .brand-campaign-title a {
  color: inherit;
  text-decoration: none;
}

.renewal-sub .brand-campaign-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  border: 1px solid #eee;
}

.renewal-sub .brand-campaign-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.renewal-sub .brand-campaign-logo .brand-logo-placeholder {
  font-size: 16px;
  font-weight: 600;
  color: #bbb;
}

/* 태그 */
.renewal-sub .brand-campaign-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.renewal-sub .brand-tag-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  background: #f8f8f8;
  border: 1px solid #ebebeb;
  border-radius: 50px;
  font-family: 'Pretendard', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #999;
  opacity: 1;
  line-height: 26px;
  white-space: nowrap;
}

/* 리뷰어 섹션 */
.renewal-sub .brand-review-section {
  margin-top: 48px;
}

.renewal-sub .brand-review-label {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #bbb;
  opacity: 1;
  letter-spacing: 0.3px;
  line-height: 22px;
  margin: 0 0 12px;
}

.renewal-sub .brand-reviewer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.renewal-sub .brand-reviewer-item,
.renewal-sub .brand-reviewer-item a,
.renewal-sub a.brand-reviewer-item,
.renewal-sub a.brand-reviewer-item--more {
  text-decoration: none !important;
  color: inherit !important;
  display: flex !important;
  flex-direction: column !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: none !important;
}

.renewal-sub .brand-reviewer-thumb {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f0f0f0 !important;
  position: relative;
  border: none !important;
  outline: none !important;
}

.renewal-sub .brand-reviewer-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.renewal-sub .brand-reviewer-item:hover .brand-reviewer-thumb img {
  transform: scale(1.05);
}

.renewal-sub .brand-reviewer-name {
  display: block;
  font-family: 'Pretendard', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #bbb;
  opacity: 1;
  letter-spacing: -0.13px;
  margin-top: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.renewal-sub .brand-viewmore-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.renewal-sub .brand-viewmore-overlay span {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-align: center;
}

/* 빈 목록 */
.renewal-sub .brand-empty {
  text-align: center;
  padding: 80px 0;
  font-size: 14px;
  color: #999;
}

/* ===== 브랜드 페이지 태블릿 ===== */
@media screen and (max-width: 1200px) {
  .renewal-sub .brand-page-inner {
    padding: 0 28px;
  }

  .renewal-sub .brand-campaign-card {
    min-height: 440px;
    margin-bottom: 100px;
  }

  .renewal-sub .brand-campaign-info {
    padding: 32px 0 20px 36px;
  }

  .renewal-sub .brand-campaign-card.reverse .brand-campaign-info {
    padding: 32px 36px 20px 0;
  }

  .renewal-sub .brand-name {
    font-size: 36px;
    line-height: 46px;
    letter-spacing: -0.36px;
  }

  .renewal-sub .brand-campaign-label {
    font-size: 13px;
  }

  .renewal-sub .brand-campaign-title {
    font-size: 22px;
    line-height: 32px;
  }

  .renewal-sub .brand-review-section {
    margin-top: 36px;
  }
}

/* ===== 브랜드 페이지 MO ===== */
@media screen and (max-width: 768px) {
  .renewal-sub .brand-header {
    padding: 28px 0 24px;
  }

  .renewal-sub .brand-name {
    font-size: 28px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: -0.28px;
  }

  .renewal-sub .brand-name-kor {
    font-size: 14px;
    letter-spacing: -0.14px;
    margin: 4px 0 10px;
  }

  .renewal-sub .brand-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.14px;
    max-width: 100%;
  }

  .renewal-sub .brand-logo {
    width: 48px;
    height: 48px;
    margin-left: 16px;
  }

  .renewal-sub .brand-logo-placeholder {
    font-size: 18px;
  }

  .renewal-sub .brand-page-inner {
    padding: 0 20px;
  }

  .renewal-sub .brand-campaign-card {
    flex-direction: column !important;
    min-height: auto;
    margin-bottom: 72px;
  }

  .renewal-sub .brand-campaign-image {
    flex: none;
    width: 100%;
    aspect-ratio: 1 / 1;
    order: 2;
    border-radius: 0;
  }

  .renewal-sub .brand-campaign-info {
    display: contents !important;
    padding: 0 !important;
  }

  .renewal-sub .brand-campaign-title-area {
    order: 1;
    padding-bottom: 14px;
  }

  .renewal-sub .brand-image-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2px;
    line-height: 22px;
    padding: 4px 12px;
    border-radius: 20px;
    text-decoration: none;
    z-index: 2;
    backdrop-filter: blur(4px);
  }

  .renewal-sub .brand-campaign-label {
    font-size: 13px;
    font-weight: 500;
    color: #999;
    opacity: 1;
    line-height: 20px;
    letter-spacing: 0.1px;
    margin-bottom: 2px;
  }

  .renewal-sub .brand-campaign-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.2px;
    margin-bottom: 10px;
  }

  .renewal-sub .brand-campaign-logo {
    width: 36px;
    height: 36px;
  }

  .renewal-sub .brand-campaign-logo .brand-logo-placeholder {
    font-size: 14px;
  }

  .renewal-sub .brand-tag-pill {
    font-size: 13px;
    padding: 0 8px;
    line-height: 24px;
    border-radius: 30px;
    color: #999;
  }

  .renewal-sub .brand-campaign-tags {
    order: 1;
    margin-bottom: 0;
    padding-bottom: 14px;
  }

  .renewal-sub .brand-review-section {
    order: 3;
    margin-top: 16px;
  }

  .renewal-sub .brand-review-label {
    font-size: 13px;
    line-height: 22px;
    letter-spacing: 0.2px;
    color: #bbb;
  }

  .renewal-sub .brand-reviewer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .renewal-sub .brand-reviewer-item:nth-child(3),
  .renewal-sub .brand-reviewer-item--more {
    display: none !important;
  }

  .renewal-sub .brand-reviewer-name {
    font-size: 13px;
    letter-spacing: -0.13px;
    color: #bbb;
  }
}

/* =========================================
   로그인 / 회원가입 / 인증 관련
   ========================================= */
.renewal-sub .auth-wrap {
  max-width: 480px;
  margin: 0 auto;
  padding: 60px 20px 100px;
}

.renewal-sub .auth-title {
  font-family: 'Pretendard', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #171717;
  margin-bottom: 48px;
  text-align: center;
}

.renewal-sub .auth-form {
  display: flex;
  flex-direction: column;
}

.renewal-sub .auth-section {
  margin-bottom: 40px;
}

.renewal-sub .auth-section-title {
  font-size: 16px;
  font-weight: 700;
  color: #171717;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #171717;
}

.renewal-sub .auth-field {
  margin-bottom: 24px;
}

.renewal-sub .auth-field-label {
  display: block;
  font-size: 14px;
  color: #888;
  margin-bottom: 8px;
}

.renewal-sub .auth-field-input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: none;
  border-bottom: 1px solid #e5e5e5;
  font-size: 15px;
  color: #171717;
  background: transparent;
  transition: border-color 0.2s;
  font-family: 'Pretendard', sans-serif;
}

.renewal-sub .auth-field-input:focus {
  outline: none;
  border-bottom-color: #171717;
}

.renewal-sub .auth-field-input::placeholder {
  color: #ccc;
}

.renewal-sub .auth-field-input[readonly] {
  color: #888;
  background: #fafafa;
}

/* 주소 검색 행 */
.renewal-sub .auth-address-row {
  display: flex;
  gap: 12px;
}

.renewal-sub .auth-address-row .auth-field-input {
  flex: 1;
}

.renewal-sub .auth-address-btn {
  flex-shrink: 0;
  height: 48px;
  padding: 0 20px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  color: #171717;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Pretendard', sans-serif;
}

.renewal-sub .auth-address-btn:hover {
  border-color: #171717;
  background: #171717;
  color: #fff;
}

/* 제출 버튼 */
/* MCK SSO 로그인 버튼 */
.renewal-sub .auth-sso-section {
  margin-bottom: 24px;
}
.renewal-sub .auth-sso-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  background: #171717;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  font-family: 'Pretendard', sans-serif;
  transition: background 0.2s;
}
.renewal-sub .auth-sso-btn:hover {
  background: #333;
}
/* 파트너 토글 */
.renewal-sub .auth-partner-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 16px 0;
  border: none;
  background: none;
  font-size: 14px;
  color: #737373;
  cursor: pointer;
  font-family: 'Pretendard', sans-serif;
}
.renewal-sub .auth-partner-toggle-icon {
  transition: transform 0.2s;
}
.renewal-sub .auth-partner-toggle[aria-expanded="true"] .auth-partner-toggle-icon {
  transform: rotate(180deg);
}
/* 파트너 패널 */
.renewal-sub .auth-partner-panel {
  border-top: 1px solid #e5e5e5;
  padding-top: 24px;
}
/* 파트너 input — 둥근 border */
.renewal-sub .auth-id-fields .auth-field-input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid #d4d4d4;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Pretendard', sans-serif;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.renewal-sub .auth-id-fields .auth-field-input:focus {
  border-color: #171717;
}
.renewal-sub .auth-id-fields .auth-field {
  margin-bottom: 12px;
}

.renewal-sub .auth-submit-btn {
  width: 100%;
  height: 56px;
  margin-top: 16px;
  background: #171717;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Pretendard', sans-serif;
  line-height: 56px;
}

.renewal-sub .auth-submit-btn:hover {
  background: #333;
}

/* 아웃라인 버튼 */
.renewal-sub .auth-outline-btn {
  width: 100%;
  height: 56px;
  margin-top: 16px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #171717;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Pretendard', sans-serif;
  line-height: 56px;
}

.renewal-sub .auth-outline-btn:hover {
  border-color: #171717;
}

/* 링크 영역 */
.renewal-sub .auth-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.renewal-sub .auth-link {
  font-size: 14px;
  color: #171717;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.renewal-sub .auth-link:hover {
  color: #333;
}

.renewal-sub .auth-link-text {
  font-size: 14px;
  color: #888;
}

/* 구분선 */
.renewal-sub .auth-divider {
  display: flex;
  align-items: center;
  margin: 32px 0;
}

.renewal-sub .auth-divider::before,
.renewal-sub .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e5e5e5;
}

.renewal-sub .auth-divider span {
  padding: 0 16px;
  font-size: 13px;
  color: #999;
  white-space: nowrap;
}

/* SNS 로그인 */
.renewal-sub .auth-sns-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.renewal-sub .auth-sns-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
  gap: 8px;
}

.renewal-sub .auth-sns-btn:hover {
  opacity: 0.85;
}

.renewal-sub .auth-sns-btn.kakao {
  background: #FEE500;
  color: #000;
}

.renewal-sub .auth-sns-btn.naver {
  background: #03C75A;
  color: #fff;
}

.renewal-sub .auth-sns-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* 로그인 랜딩 페이지 */
.renewal-sub .auth-login-landing {
  max-width: 480px;
  padding: 80px 20px 100px;
}
.renewal-sub .auth-login-landing .auth-title {
  margin-bottom: 80px;
}
.renewal-sub .auth-login-landing .auth-id-login-btn {
  border-radius: 0;
  height: 56px;
  line-height: 56px;
  font-size: 16px;
  margin-top: 0;
}
.renewal-sub .auth-login-landing .auth-id-fields {
  margin-bottom: 8px;
}
.renewal-sub .auth-login-landing .auth-field {
  margin-bottom: 16px;
}
.renewal-sub .auth-login-landing .auth-links {
  margin-top: 20px;
  gap: 12px;
}
.renewal-sub .auth-link-light {
  font-size: 14px;
  color: #999;
  text-decoration: none;
}
.renewal-sub .auth-link-light:hover {
  color: #666;
}
.renewal-sub .auth-link-divider {
  font-size: 12px;
  color: #ddd;
}
.renewal-sub .auth-link-bold {
  font-size: 14px;
  color: #171717;
  font-weight: 700;
  text-decoration: none;
}
.renewal-sub .auth-link-bold:hover {
  text-decoration: underline;
}
.renewal-sub .auth-login-landing .auth-divider {
  margin: 40px 0 28px;
}
.renewal-sub .auth-sns-circle-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.renewal-sub .auth-sns-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid #e5e5e5;
  background: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}
.renewal-sub .auth-sns-circle:hover {
  opacity: 0.8;
}
.renewal-sub .auth-sns-circle.kakao {
  background: #FEE500;
  border-color: #FEE500;
}
.renewal-sub .auth-sns-circle.naver {
  background: #03C75A;
  border-color: #03C75A;
}

/* 결과 페이지 */
.renewal-sub .auth-result {
  text-align: center;
  padding: 40px 0;
}

.renewal-sub .auth-result-icon {
  margin-bottom: 32px;
}

.renewal-sub .auth-result-title {
  font-family: 'Pretendard', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #171717;
  margin-bottom: 12px;
}

.renewal-sub .auth-result-desc {
  font-size: 15px;
  color: #888;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* 사용자 정보 (로그인 결과) */
.renewal-sub .auth-user-info {
  text-align: left;
  background: #f8f8f8;
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
}

.renewal-sub .auth-user-row {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.renewal-sub .auth-user-row:last-child {
  border-bottom: none;
}

.renewal-sub .auth-user-label {
  width: 80px;
  font-size: 14px;
  color: #888;
  flex-shrink: 0;
}

.renewal-sub .auth-user-value {
  flex: 1;
  font-size: 14px;
  color: #171717;
}

/* 반응형 */
@media (max-width: 768px) {
  .renewal-sub .auth-wrap {
    padding: 40px 20px 80px;
  }

  .renewal-sub .auth-title {
    font-size: 22px;
    margin-bottom: 32px;
  }

  .renewal-sub .auth-submit-btn,
  .renewal-sub .auth-outline-btn {
    height: 52px;
    line-height: 52px;
    font-size: 15px;
  }

  .renewal-sub .auth-sns-btn {
    height: 48px;
    font-size: 14px;
  }

  .renewal-sub .auth-result-title {
    font-size: 20px;
  }

  .renewal-sub .auth-login-landing {
    padding: 40px 20px 80px;
  }
  .renewal-sub .auth-login-landing .auth-title {
    margin-bottom: 60px;
  }
  .renewal-sub .auth-login-landing .auth-id-login-btn {
    height: 52px;
    line-height: 52px;
    font-size: 15px;
  }
  .renewal-sub .auth-sns-circle {
    width: 48px;
    height: 48px;
  }
}

/* 인증 설명 */
.renewal-sub .auth-desc {
  font-size: 15px;
  color: #888;
  margin-bottom: 32px;
  line-height: 1.5;
}

/* 인증번호 입력 행 */
.renewal-sub .auth-verify-row {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}

.renewal-sub .auth-verify-row .auth-field-input {
  flex: 1;
}

.renewal-sub .auth-verify-btn {
  flex-shrink: 0;
  height: 48px;
  padding: 0 20px;
  border: 1px solid #171717;
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: #171717;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Pretendard', sans-serif;
  white-space: nowrap;
}

.renewal-sub .auth-verify-btn:hover {
  background: #171717;
  color: #fff;
}

/* 타이머 */
.renewal-sub .auth-timer {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  color: #e74c3c;
  font-weight: 600;
}

/* 결과 박스 */
.renewal-sub .auth-result-box {
  text-align: center;
  padding: 48px 0 40px;
}

.renewal-sub .auth-result-box .auth-result-icon {
  margin-bottom: 24px;
}

.renewal-sub .auth-result-label {
  font-size: 14px;
  color: #888;
  margin-bottom: 8px;
}

.renewal-sub .auth-result-value {
  font-size: 28px;
  font-weight: 700;
  color: #171717;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.renewal-sub .auth-result-sns {
  font-size: 14px;
  color: #e74c3c;
  margin-top: 8px;
}

.renewal-sub .auth-result-sub {
  font-size: 15px;
  color: #888;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .renewal-sub .auth-verify-row {
    flex-direction: column;
    gap: 8px;
  }

  .renewal-sub .auth-verify-btn {
    width: 100%;
  }

  .renewal-sub .auth-result-value {
    font-size: 22px;
  }
}

/* ===== 리뷰 작성폼 ===== */

.renewal-sub .review-form-header {
  text-align: center;
  margin-bottom: 48px;
}

.renewal-sub .review-form-header .section-title-en {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin: 0 0 8px;
}

.renewal-sub .review-form-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #171717;
  margin: 0;
}

/* 리뷰폼 select */
.renewal-sub .form-field select {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  font-size: 15px;
  font-family: "Pretendard", sans-serif;
  color: #171717;
  background: transparent;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
}

.renewal-sub .form-field select:focus {
  outline: none;
  border-bottom-color: #171717;
}

/* 리뷰폼 textarea */
.renewal-sub .form-field textarea {
  width: 100%;
  min-height: 200px;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  font-family: "Pretendard", sans-serif;
  color: #171717;
  resize: vertical;
  line-height: 1.6;
}

.renewal-sub .form-field textarea:focus {
  outline: none;
  border-color: #171717;
}

/* 리뷰폼 브랜드 검색 */
.renewal-sub .form-field .form-brand {
  position: relative;
}

.renewal-sub .form-field .form-brand__label {
  display: flex;
  align-items: center;
  position: relative;
}

.renewal-sub .form-field .form-brand__input {
  flex: 1;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  font-size: 15px;
  font-family: "Pretendard", sans-serif;
  color: #171717;
  background: transparent;
}

.renewal-sub .form-field .form-brand__input:focus {
  outline: none;
  border-bottom-color: #171717;
}

.renewal-sub .form-field .form-brand__btnClose,
.renewal-sub .form-field .form-brand__btnSch {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
}

.renewal-sub .form-field .form-brand__btnClose img,
.renewal-sub .form-field .form-brand__btnSch img {
  width: 20px;
  height: 20px;
}

.renewal-sub .form-field .form-brand__schReview {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 10;
  display: none;
}

.renewal-sub .form-field .form-brand__schReview p {
  padding: 10px 16px;
  margin: 0;
  cursor: pointer;
  font-size: 14px;
}

.renewal-sub .form-field .form-brand__schReview p:hover {
  background: #f5f5f5;
}

.renewal-sub .form-field .form-brand__schReview .noBrand {
  color: #999;
  cursor: default;
}

.renewal-sub .form-field .form-brand__schReview .noBrand:hover {
  background: transparent;
}

.renewal-sub .form-field .form-brand__schReview .noBrand__btn {
  color: #171717;
  font-weight: 600;
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 8px;
}

/* 리뷰폼 파일 업로드 */
.renewal-sub .form-field .file-list {
  margin-top: 8px;
}

.renewal-sub .form-field .file-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.renewal-sub .form-field .file-row label {
  flex: 1;
  position: relative;
}

.renewal-sub .form-field .file-row .fileName {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  font-size: 14px;
  font-family: "Pretendard", sans-serif;
  color: #171717;
  background: transparent;
  cursor: default;
}

.renewal-sub .form-field .file-row .btn_wrap {
  flex-shrink: 0;
}

.renewal-sub .form-field .file-row .btn {
  padding: 8px 16px;
  font-size: 13px;
  font-family: "Pretendard", sans-serif;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  color: #171717;
  cursor: pointer;
  white-space: nowrap;
}

.renewal-sub .form-field .file-row .btn:hover {
  border-color: #171717;
}

.renewal-sub .form-field .file-row .btn.r2 {
  border-color: #e53e3e;
  color: #e53e3e;
}

.renewal-sub .form-field .file-desc,
.renewal-sub .form-field .field-desc {
  font-size: 13px;
  color: #999;
  margin-top: 4px;
}

/* 기존 파일 목록 */
.renewal-sub .form-field .file-box {
  margin-top: 8px;
}

.renewal-sub .form-field .file-box .fileList {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.renewal-sub .form-field .file-box .file-item {
  font-size: 14px;
  color: #171717;
  text-decoration: none;
}

.renewal-sub .form-field .file-box .btn-delete {
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  font-size: 12px;
  padding: 4px;
}

.renewal-sub .form-field .file-box .btn-delete::after {
  content: "\00d7";
  font-size: 18px;
}

/* 리뷰폼 버튼 */
.renewal-sub .review-form-actions {
  text-align: center;
  margin-top: 48px;
  padding-bottom: 80px;
}

.renewal-sub .review-form-actions .btn-review-submit {
  display: inline-block;
  min-width: 200px;
  padding: 16px 48px;
  background: #171717;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Pretendard", sans-serif;
  cursor: pointer;
  transition: opacity 0.2s;
}

.renewal-sub .review-form-actions .btn-review-submit:hover {
  opacity: 0.85;
}

/* 리뷰폼 캠페인 정보 (스페셜) */
.renewal-sub .campaign-info-box {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
}

.renewal-sub .campaign-info-box .info-label {
  font-size: 12px;
  color: #999;
  margin-bottom: 4px;
}

.renewal-sub .campaign-info-box .info-value {
  font-size: 15px;
  color: #171717;
  font-weight: 500;
}

/* 리뷰폼 모바일 반응형 */
@media (max-width: 768px) {
  .renewal-sub .review-form-header h2 {
    font-size: 22px;
  }

  .renewal-sub .form-field .file-row {
    flex-wrap: wrap;
  }

  .renewal-sub .form-field .file-row label {
    width: 100%;
  }

  .renewal-sub .form-field .file-row .btn_wrap {
    flex-shrink: 0;
  }

  .renewal-sub .review-form-actions .btn-review-submit {
    width: 100%;
    min-width: unset;
  }
}

/* ===== 약관 동의 / 추가정보 입력 페이지 ===== */
.renewal-sub .terms-page,
.renewal-sub .additional-info-page {
  max-width: 480px;
  margin: 0 auto;
  padding: 40px 16px 60px;
}

.renewal-sub .terms-page-title {
  font-size: 22px;
  font-weight: 700;
  color: #171717;
  margin-bottom: 8px;
}

.renewal-sub .terms-page-desc {
  font-size: 14px;
  color: #888;
  margin-bottom: 32px;
}

/* 전체 동의 */
.renewal-sub .terms-all {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}

.renewal-sub .terms-all-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #171717;
  cursor: pointer;
}

.renewal-sub .terms-all-label input[type="checkbox"] {
  display: none;
}

/* 체크 아이콘 */
.renewal-sub .terms-check-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 2px solid #ccc;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s;
}

.renewal-sub .terms-check-icon::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 6px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s;
}

.renewal-sub input[type="checkbox"]:checked + .terms-check-icon {
  background: #171717;
  border-color: #171717;
}

.renewal-sub input[type="checkbox"]:checked + .terms-check-icon::after {
  opacity: 1;
}

/* 약관 항목 리스트 */
.renewal-sub .terms-list {
  margin-bottom: 32px;
}

.renewal-sub .terms-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.renewal-sub .terms-item-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  flex: 1;
}

.renewal-sub .terms-item-label input[type="checkbox"] {
  display: none;
}

.renewal-sub .terms-item-text {
  font-size: 14px;
  color: #333;
}

.renewal-sub .terms-item-text em {
  color: #e74c3c;
  font-style: normal;
  font-weight: 600;
}

.renewal-sub .terms-item-text em.optional {
  color: #888;
  font-weight: 400;
}

.renewal-sub .terms-view-btn {
  background: none;
  border: none;
  color: #888;
  font-size: 13px;
  cursor: pointer;
  padding: 4px 8px;
  text-decoration: underline;
}

/* 약관 상세 내용 */
.renewal-sub .terms-detail {
  border-bottom: 1px solid #f0f0f0;
}

.renewal-sub .terms-detail-content {
  padding: 12px 16px;
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  background: #fafafa;
  border-radius: 4px;
  margin-bottom: 8px;
  max-height: 200px;
  overflow-y: auto;
}

/* 동의 버튼 */
.renewal-sub .terms-submit-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: #171717;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.renewal-sub .terms-submit-btn:disabled {
  background: #ddd;
  color: #999;
  cursor: not-allowed;
}

/* 추가정보 입력 - 닉네임 중복확인 행 */
.renewal-sub .additional-info-page .field-row {
  display: flex;
  gap: 8px;
}

.renewal-sub .additional-info-page .field-row input[type="text"] {
  flex: 1;
}

.renewal-sub .btn-check-dup {
  padding: 0 16px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 13px;
  color: #333;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.renewal-sub .btn-check-dup:hover {
  background: #e8e8e8;
}

/* 필드 메시지 */
.renewal-sub .field-msg {
  font-size: 12px;
  margin-top: 4px;
  min-height: 18px;
}

.renewal-sub .field-msg.success {
  color: #03C75A;
}

.renewal-sub .field-msg.error {
  color: #e74c3c;
}

/* 필수 표시 */
.renewal-sub .required {
  color: #e74c3c;
}

.renewal-sub .field-hint {
  font-weight: 400;
  font-size: 13px;
  color: #888;
}

@media (max-width: 768px) {
  .renewal-sub .terms-page,
  .renewal-sub .additional-info-page {
    padding: 24px 16px 40px;
  }

  .renewal-sub .terms-page-title {
    font-size: 20px;
  }
}

/* ======================================================
   Review Feed (srv-feed) - Instagram-style review detail v2
   ====================================================== */

.srv-feed {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 80px;
  position: relative;
  font-family: "Helvetica Neue", Helvetica, "Pretendard", sans-serif;
}

.srv-feed *,
.srv-feed *::before,
.srv-feed *::after {
  font-family: inherit;
}

/* 리뷰 네비게이션 화살표 - card-inner 기준 이미지 중앙 정렬 */
.srv-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  text-decoration: none;
  color: #171717;
  font-size: 24px;
  font-weight: 300;
  z-index: 10;
}
.srv-nav-arrow:hover {
  opacity: 0.6;
}
.srv-nav-arrow--prev {
  left: -80px;
}
.srv-nav-arrow--next {
  right: -80px;
}

/* Card */
.srv-feed__card {
  padding: 48px 0;
}
.srv-feed__card:first-child {
  padding-top: 0;
}

.srv-feed__card-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  position: relative;
}

/* Media - PC */
.srv-feed__media {
  position: relative;
  flex: 0 0 min(551px, calc((100vh - 140px) * 551 / 735));
  max-width: 551px;
  overflow: hidden;
  background: #f5f5f5;
  border-radius: 4px;
}
/* Slide counter */
.srv-slide-counter {
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: auto;
  z-index: 10;
  background: rgba(80, 77, 73, 0.85);
  color: #fff;
  font-size: 11px;
  font-weight: 400;
  display: block;
  line-height: 1;
  padding: 8px 9px;
  border-radius: 999px;
  pointer-events: none;
  letter-spacing: 0;
}
.srv-feed__media .srv-swiper {
  width: 100%;
  height: 735px;
  max-height: calc(100vh - 140px);
}
.srv-feed__media .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}
.srv-feed__media .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
/* Video */
.srv-feed__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 네이티브 중앙 재생 버튼 오버레이 숨김 (iOS Safari/Chrome 등에서 자동재생 실패 시 뜨는 큰 재생 버튼)
   클릭 시 play/pause 기능은 JS로 처리되므로 시각만 제거 */
.srv-feed__video::-webkit-media-controls-start-playback-button,
.srl-best__video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
  appearance: none;
  opacity: 0;
  pointer-events: none;
}
/* 전체 네이티브 컨트롤 숨김 (재생바 포함 — 브랜드 스타일 유지) */
.srv-feed__video::-webkit-media-controls-overlay-play-button,
.srl-best__video::-webkit-media-controls-overlay-play-button {
  display: none !important;
}

/* 이미지 캐러셀 좌우 화살표 - Zara style */
.srv-img-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 0;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.srv-img-arrow:hover {
  opacity: 0.5;
}
.srv-img-arrow--prev {
  left: 12px;
}
.srv-img-arrow--next {
  right: 12px;
}
/* PC: dot pagination 숨김 */
.srv-feed__media .swiper-pagination {
  display: block;
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}
.srv-feed__media .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: #000;
  opacity: 0.2;
  margin: 0 3px;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: opacity 0.2s;
}
.srv-feed__media .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Content column */
.srv-feed__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  overflow-x: hidden;
  /* max-height는 JS에서 이미지 높이에 맞춰 동적 설정 */
}
/* 커스텀 스크롤바 - 항상 표시, 깔끔 */
.srv-feed__content::-webkit-scrollbar {
  width: 6px;
}
.srv-feed__content::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 6px;
}
.srv-feed__content::-webkit-scrollbar-thumb {
  background: #c0c0c0;
  border-radius: 6px;
}
.srv-feed__content::-webkit-scrollbar-thumb:hover {
  background: #999;
}
/* Firefox 스크롤바 */
.srv-feed__content {
  scrollbar-width: thin;
  scrollbar-color: #c0c0c0 #f5f5f5;
  padding-right: 12px;
}

/* Profile box - ELLE editorial */
.srv-feed__profile-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 0 16px;
  margin-bottom: 0;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #e5e5e5;
  max-width: 630px;
  min-height: auto;
  box-sizing: border-box;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 5;
}
.srv-feed__avatar {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.srv-feed__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.srv-feed__user-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}
.srv-feed__username {
  font-size: 15px;
  font-weight: 600;
  color: #262626;
  text-decoration: none;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.srv-feed__username {
  pointer-events: none;
  cursor: default;
}

/* 사용자 닉네임/프로필 링크 전부 클릭 비활성화 (프로필 페이지 미사용) */
.renewal-sub a[href^="/reviewer/"]:not([href="/reviewer/list"]) {
  pointer-events: none;
  cursor: default;
}

/* Category tags - pill badge */
.srv-feed__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.srv-feed__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 9px;
  background: #f8f8f8;
  border: 1px solid #e5e5e5;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: #999;
  opacity: 1;
  text-transform: none;
  letter-spacing: 0;
  line-height: 13px;
}

/* Campaign info - ELLE style */
.srv-feed__campaign {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0 12px;
}
.srv-feed__brand {
  font-size: 13px;
  font-weight: 600;
  color: #262626;
  line-height: 1.3;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
}

.srv-feed__brand:hover {
  text-decoration: none;
}
.srv-feed__campaign-title {
  font-size: 18px;
  font-weight: 600;
  color: #262626;
  letter-spacing: -0.3px;
  line-height: 1.4;
}

/* Review text - ELLE editorial */
.srv-feed__text {
  flex: 1;
  position: relative;
  min-height: 0;
}
.srv-feed__body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #262626;
  letter-spacing: -0.1px;
  word-break: break-word;
}

/* Hashtags - ELLE subtle */
.srv-feed__hashtags {
  padding: 12px 0 8px;
  border-top: 1px solid #e5e5e5;
  margin-top: 16px;
}
.srv-feed__hashtag {
  display: inline;
  font-size: 13px;
  font-weight: 400;
  color: #1a1a1a;
  opacity: 0.4;
  margin-right: 8px;
  letter-spacing: 0;
  word-break: break-all;
}

/* YouTube iframe slide */
.srv-slide--youtube {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.srv-feed__more-btn {
  display: none;
  background: none;
  border: none;
  padding: 0;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 300;
  color: #000;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  letter-spacing: 0;
}

/* Loading spinner */
.srv-feed__loading {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}
.srv-feed__spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #f0f0f0;
  border-top-color: #171717;
  border-radius: 50%;
  animation: srv-spin 0.8s linear infinite;
}
@keyframes srv-spin {
  to { transform: rotate(360deg); }
}

/* ======================================================
   Review Feed - Reels / Shorts (세로 9:16 영상)
   미디어 영역을 작게, 우측 텍스트 영역이 자동으로 넓어짐
   ====================================================== */
.srv-feed__card--instagram_reels .srv-feed__media,
.srv-feed__card--youtube_shorts .srv-feed__media {
  flex: 0 0 min(400px, calc((100vh - 140px) * 9 / 16));
  max-width: 400px;
  background: transparent;
}
.srv-feed__card--instagram_reels .srv-feed__media .srv-swiper,
.srv-feed__card--youtube_shorts .srv-feed__media .srv-swiper {
  height: auto;
  aspect-ratio: 9 / 16;
  max-height: calc(100vh - 140px);
}

/* ======================================================
   Review Feed - Tablet Responsive
   ====================================================== */

@media (max-width: 1024px) {
  .srv-feed__media {
    flex: 0 0 420px;
    max-width: 420px;
  }
  .srv-feed__card-inner {
    gap: 24px;
  }
  .srv-feed__profile-box {
    max-width: 100%;
  }
  .srv-nav-arrow--prev {
    left: -60px;
  }
  .srv-nav-arrow--next {
    right: -60px;
  }
}

/* ======================================================
   Review Feed - Mobile Responsive
   ====================================================== */

@media (max-width: 768px) {
  .srv-feed {
    padding: 0 0 40px;
  }

  /* 리뷰 간 네비게이션 화살표 숨김 */
  .srv-nav-arrow {
    display: none !important;
  }

  /* === 카드 === */
  .srv-feed__card {
    padding: 0;
    border-bottom: none;
  }
  .srv-feed__card-inner {
    flex-direction: column;
    gap: 0;
  }

  /* === 미디어 === */
  .srv-feed__media {
    flex: none;
    max-width: 100%;
    width: 100%;
    border-radius: 0;
  }
  .srv-feed__media .srv-swiper {
    height: auto;
    max-height: none;
  }
  .srv-feed__media .srv-swiper {
    background: #000;
  }
  .srv-feed__media .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
  }
  .srv-feed__media .swiper-slide img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .srv-feed__video {
    border-radius: 0;
    max-height: none;
    aspect-ratio: auto;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  /* 모바일 릴스/숏츠: 9:16 세로 비율 강제 */
  .srv-feed__card--instagram_reels .srv-feed__media,
  .srv-feed__card--youtube_shorts .srv-feed__media {
    flex: none !important;
    aspect-ratio: 9 / 16;
    width: 100%;
    max-width: 100%;
  }
  .srv-feed__card--instagram_reels .srv-feed__media .srv-swiper,
  .srv-feed__card--youtube_shorts .srv-feed__media .srv-swiper {
    aspect-ratio: 9 / 16;
    height: auto;
  }
  .srv-feed__card--instagram_reels .srv-feed__video,
  .srv-feed__card--youtube_shorts .srv-feed__video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
  }
  /* 모바일: 화살표 숨김 */
  .srv-img-arrow {
    display: none;
  }
  .srv-slide-counter {
    top: 12px;
    right: 12px;
    padding: 8px 9px;
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    border-radius: 999px;
    background: rgba(80, 77, 73, 0.85);
    color: #fff;
  }
  /* 숫자 페이지네이션 */
  .srv-feed__media .swiper-pagination {
    display: block;
    position: absolute;
    bottom: 14px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
    font-size: 0;
  }
  .srv-feed__media .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: #fff;
    opacity: 0.4;
    margin: 0 3px;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: opacity 0.2s;
  }
  .srv-feed__media .swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff;
  }

  /* Content - Instagram mobile */
  .srv-feed__content {
    padding: 14px 16px 24px;
    gap: 0;
    overflow-y: visible;
    overflow-x: visible;
    max-height: none !important;
    scrollbar-width: auto;
    scrollbar-color: auto;
  }
  .srv-feed__content::-webkit-scrollbar {
    display: none;
  }

  /* 리뷰 카드 간 여백 */
  .srv-feed__card {
    padding-bottom: 8px;
    margin-bottom: 12px;
  }

  /* Profile box */
  .srv-feed__profile-box {
    border: none;
    border-bottom: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 12px;
    min-height: auto;
    max-width: none;
    gap: 10px;
    position: static;
  }
  .srv-feed__avatar {
    width: 34px;
    height: 34px;
  }
  .srv-feed__user-info {
    gap: 2px;
    flex-direction: column;
    align-items: flex-start;
  }
  .srv-feed__username {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    color: #262626;
  }
  .srv-feed__tags {
    gap: 6px;
    margin-left: 0;
  }
  .srv-feed__tag {
    font-size: 13px;
    font-weight: 500;
    padding: 4px 9px;
    background: #f8f8f8;
    border: 1px solid #e5e5e5;
    border-radius: 50px;
    line-height: 13px;
    opacity: 1;
    color: #999;
    text-transform: none;
    letter-spacing: 0;
  }

  /* Campaign info */
  .srv-feed__campaign {
    padding: 0;
    margin-bottom: 10px;
    gap: 3px;
  }
  .srv-feed__brand {
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    opacity: 1;
    color: #262626;
  }
  .srv-feed__campaign-title {
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.01em;
    opacity: 1;
    color: #262626;
  }

  /* Text */
  .srv-feed__body {
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    color: #262626;
    letter-spacing: -0.01em;
    max-height: 66px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .srv-feed__body--expanded {
    max-height: none;
    -webkit-line-clamp: unset;
    overflow: visible;
  }
  .srv-feed__more-btn {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: #8e8e8e;
    text-decoration: none;
    margin-top: 4px;
    letter-spacing: 0;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
  }

  /* Hashtags */
  .srv-feed__hashtags {
    border-top: none;
    margin-top: 6px;
    padding: 0;
  }
  .srv-feed__hashtag {
    font-size: 14px;
    font-weight: 400;
    color: #1a1a1a;
    opacity: 0.4;
    letter-spacing: 0.02em;
  }

  /* 로딩 스피너 */
  .srv-feed__loading {
    padding: 40px 0;
    display: flex;
    justify-content: center;
  }
}

/* ===== 개인정보 처리방침 ===== */
.renewal-sub .privacy-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding-bottom: 120px;
}

.renewal-sub .privacy-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.renewal-sub .privacy-intro {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 48px;
}

.renewal-sub .privacy-section {
  margin-bottom: 40px;
}

.renewal-sub .privacy-section h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}

.renewal-sub .privacy-section p {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 12px;
}

.renewal-sub .privacy-section dl {
  margin: 0;
}

.renewal-sub .privacy-section dt {
  font-size: 15px;
  font-weight: 600;
  color: #171717;
  margin-top: 16px;
  margin-bottom: 4px;
}

.renewal-sub .privacy-section dd {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin-left: 0;
  margin-bottom: 8px;
}

.renewal-sub .privacy-section ul {
  list-style: none;
  padding: 0;
  margin: 8px 0;
}

.renewal-sub .privacy-section ul li {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  padding-left: 16px;
  position: relative;
}

.renewal-sub .privacy-section ul li::before {
  content: "·";
  position: absolute;
  left: 0;
  font-weight: 700;
}

.renewal-sub .privacy-section strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-top: 12px;
  margin-bottom: 4px;
}

.renewal-sub .privacy-note {
  font-size: 13px;
  color: #888;
}

.renewal-sub .privacy-table-wrap {
  overflow-x: auto;
  margin: 12px 0;
}

.renewal-sub .privacy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.renewal-sub .privacy-table th,
.renewal-sub .privacy-table td {
  padding: 12px 16px;
  border: 1px solid #e5e5e5;
  text-align: left;
}

.renewal-sub .privacy-table th {
  background: #f8f8f8;
  font-weight: 600;
  color: #171717;
}

.renewal-sub .privacy-table td {
  color: #444;
}

@media (max-width: 768px) {
  .renewal-sub .privacy-title {
    font-size: 24px;
  }

  .renewal-sub .privacy-intro {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .renewal-sub .privacy-section h2 {
    font-size: 17px;
  }

  .renewal-sub .privacy-section p,
  .renewal-sub .privacy-section dd,
  .renewal-sub .privacy-section dt,
  .renewal-sub .privacy-section ul li {
    font-size: 14px;
  }
}

/* ===================================
   캠페인 상세 이미지 섹션
   =================================== */
.campaign-detail-images {
  margin: 60px 0 40px;
  padding: 40px 0;
}

.campaign-detail-images .detail-images-title {
  font-size: 24px;
  font-weight: 700;
  color: #171717;
  margin-bottom: 30px;
  text-align: center;
}

.campaign-detail-images .detail-images-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.campaign-detail-images .detail-image-item {
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  background: #f8f8f8;
}

.campaign-detail-images .detail-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {
  .campaign-detail-images {
    margin: 24px 0 16px;
    padding: 20px 0;
  }

  .campaign-detail-images .detail-images-title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .campaign-detail-images .detail-images-grid {
    gap: 12px;
  }
}

/* ============================
   리뷰 제출 모달
   ============================ */
.review-submit-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-submit-modal {
  background: #fff;
  border-radius: 0;
  width: 420px;
  max-width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.review-submit-header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px 20px 16px;
  border-bottom: 1px solid #f0f0f0;
}

.review-submit-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: #171717;
  margin: 0;
}

.review-submit-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.review-submit-body {
  padding: 20px;
  flex: 1;
}

.review-submit-campaign {
  display: flex;
  gap: 16px;
  align-items: stretch;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 24px;
}

.review-submit-thumb {
  width: 100px;
  height: 100px;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.review-submit-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-submit-thumb .card-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 6px;
  border-radius: 2px;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0;
  white-space: nowrap;
}

.review-submit-thumb .card-badge.badge-dday { background: #171717; }
.review-submit-thumb .card-badge.badge-completed { background: rgba(80, 80, 80, 0.45); }

.review-submit-camp-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 6px 0 4px;
}

.review-submit-brand {
  font-size: 13px;
  font-weight: 600;
  color: #171717;
  margin: 0 0 4px;
  line-height: 1.25;
  letter-spacing: -0.26px;
}

.review-submit-title {
  font-size: 13px;
  font-weight: 500;
  color: #555;
  margin: 0;
  line-height: 18px;
  letter-spacing: -0.28px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-submit-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

.review-submit-meta .card-recruit,
.review-submit-meta .card-type {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: #f2f2f2;
  color: #5a5a5a;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 3px;
  line-height: 1.4;
  letter-spacing: -0.1px;
}

.review-submit-meta .card-info-icon {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  opacity: 1;
  color: #5a5a5a;
  display: inline-block;
}

.review-submit-form h4 {
  font-size: 16px;
  font-weight: 600;
  color: #171717;
  margin: 0 0 6px;
}

.review-submit-desc {
  font-size: 13px;
  color: #999;
  margin: 0 0 20px;
}

.review-submit-label {
  font-size: 13px;
  font-weight: 500;
  color: #666;
  margin-bottom: 8px;
  display: block;
}

.review-submit-input {
  width: 100%;
  height: 48px;
  line-height: 48px;
  padding: 0 12px;
  border: none;
  border-bottom: 1px solid #e3e3e3;
  font-size: 14px;
  color: #171717;
  outline: none;
  background: transparent;
  box-sizing: border-box;
}

.review-submit-input::placeholder {
  color: #ccc;
}

.review-submit-input:focus {
  border-bottom-color: #171717;
}

.review-submit-footer {
  padding: 40px 20px 20px;
}

.review-submit-btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 0;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  background: #e0e0e0;
  color: #999;
  transition: all 0.2s;
}

.review-submit-btn.active {
  background: #171717;
  color: #fff;
}

.review-submit-btn:disabled {
  background: #e0e0e0;
  color: #999;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .review-submit-modal {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
  }

  .review-submit-body {
    flex: 1;
  }

  .review-submit-footer {
    padding: 16px 20px 32px;
  }
}

/* ===== 마이페이지 빈 상태 — 정중앙 배치 ===== */
.renewal-sub .mypage-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  width: 100%;
  box-sizing: border-box;
}
.renewal-sub .mypage-empty-state svg {
  margin-bottom: 16px;
  opacity: 0.6;
}
.renewal-sub .mypage-empty-state p {
  font-size: 14px;
  font-weight: 400;
  color: #999;
  letter-spacing: -0.01em;
  margin: 0;
}
