/* ── 기본 변수 (다크 모드 기본) ── */
:root {
  --bg: #f4f4f8;
  --bg2: #ffffff;
  --bg3: #f0f0f5;
  --card: #ffffff;
  --card2: #f8f8fc;
  --border: rgba(0,0,0,0.08);
  --text: #1a1a2e;
  --text2: #555570;
  --text3: #999ab0;
  --accent: #6c63ff;
  --accent2: #7c73ff;
  --shop: #3a9bd5;
  --naver: #44b549;
  --red: #e03050;
  --red-bg: rgba(224,48,80,0.08);
  --yellow: #d4940a;
  --yellow-bg: rgba(212,148,10,0.1);
  --blue: #2d8fd4;
  --blue-bg: rgba(45,143,212,0.08);
  --star: #f0a500;
  --header-h: 56px;
  --nav-h: 64px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
}

[data-theme="dark"] {
  --bg: #0f0f1a;
  --bg2: #1a1a2e;
  --bg3: #16213e;
  --card: #1e1e3a;
  --card2: #252545;
  --border: rgba(255,255,255,0.08);
  --text: #e8e8f0;
  --text2: #a0a0c0;
  --text3: #606080;
  --shadow: 0 4px 20px rgba(0,0,0,0.4);
  --red: #ff4d6d;
  --red-bg: rgba(255,77,109,0.12);
  --yellow: #ffd43b;
  --yellow-bg: rgba(255,212,59,0.12);
  --blue: #4dabf7;
  --blue-bg: rgba(77,171,247,0.12);
  --star: #ffd43b;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html { font-size: 15px; }
body {
  font-family: -apple-system, "Apple SD Gothic Neo", "Malgun Gothic", BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── 헤더 ── */
.app-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; padding: 0 16px; max-width: 600px; margin: 0 auto;
}
.header-left { display: flex; align-items: center; gap: 8px; }
.logo-icon { font-size: 22px; }
.logo-text { font-size: 17px; font-weight: 700; letter-spacing: -0.3px; }
.header-right { display: flex; gap: 8px; }
.icon-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: none; background: var(--card2); color: var(--text2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s;
}
.icon-btn:active { transform: scale(0.9); }

/* ── 메인 콘텐츠 ── */
.app-main {
  padding-top: var(--header-h);
  padding-bottom: calc(var(--nav-h) + 8px);
  max-width: 600px; margin: 0 auto;
}

/* ── 탭 콘텐츠 ── */
.tab-content { display: none; padding: 16px; }
.tab-content.active { display: block; }

/* ── 하단 네비게이션 ── */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: var(--bg2);
  border-top: 1px solid var(--border);
  display: flex; align-items: center;
  max-width: 600px; margin: 0 auto;
  padding-bottom: env(safe-area-inset-bottom);
}
.nav-item {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 3px;
  border: none; background: none; color: var(--text3);
  font-size: 10px; font-weight: 500; cursor: pointer;
  transition: all 0.2s; padding: 8px 0;
}
.nav-item.active { color: var(--accent); }
.nav-item.active svg { stroke: var(--accent); }
.nav-item:active { transform: scale(0.92); }

/* ── 날짜 바 ── */
.date-bar {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px; background: var(--card);
  border-radius: var(--radius); padding: 8px 12px;
  border: 1px solid var(--border);
}
.date-nav {
  width: 32px; height: 32px; border-radius: 50%;
  border: none; background: var(--card2); color: var(--text2);
  font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.date-input {
  flex: 1; border: none; background: transparent; color: var(--text);
  font-size: 15px; font-weight: 600; text-align: center; outline: none;
}
.date-input::-webkit-calendar-picker-indicator { opacity: 0.4; cursor: pointer; }

/* ── KPI 그리드 ── */
.kpi-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px;
}
.kpi-card {
  background: var(--card); border-radius: var(--radius);
  padding: 16px; border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.kpi-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent);
}
.kpi-card[data-key="shop"]::before { background: var(--shop); }
.kpi-card[data-key="naver"]::before { background: var(--naver); }
.kpi-label { font-size: 11px; color: var(--text3); font-weight: 500; margin-bottom: 6px; }
.kpi-value { font-size: 28px; font-weight: 800; line-height: 1; }
.kpi-sub { font-size: 11px; color: var(--text3); margin-top: 4px; }

/* ── 플래그 행 ── */
.flag-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-bottom: 10px; }
.flag-card {
  border-radius: var(--radius); padding: 14px 10px;
  text-align: center; cursor: pointer; transition: transform 0.15s;
  border: 1px solid transparent;
}
.flag-card:active { transform: scale(0.96); }
.flag-card.red { background: var(--red-bg); border-color: rgba(255,77,109,0.25); }
.flag-card.yellow { background: var(--yellow-bg); border-color: rgba(255,212,59,0.25); }
.flag-card.blue { background: var(--blue-bg); border-color: rgba(77,171,247,0.25); }
.flag-icon { font-size: 20px; margin-bottom: 4px; }
.flag-count { font-size: 24px; font-weight: 800; line-height: 1; }
.flag-card.red .flag-count { color: var(--red); }
.flag-card.yellow .flag-count { color: var(--yellow); }
.flag-card.blue .flag-count { color: var(--blue); }
.flag-label { font-size: 10px; color: var(--text2); margin-top: 3px; }

/* ── 섹션 카드 ── */
.section-card {
  background: var(--card); border-radius: var(--radius);
  padding: 16px; border: 1px solid var(--border); margin-bottom: 10px;
}
.section-title { font-size: 12px; font-weight: 700; color: var(--text2); margin-bottom: 12px; letter-spacing: 0.5px; text-transform: uppercase; }

/* ── 별점 분포 ── */
.rating-bars { display: flex; flex-direction: column; gap: 6px; }
.rating-row { display: flex; align-items: center; gap: 8px; }
.rating-label { font-size: 12px; color: var(--star); width: 20px; text-align: right; font-weight: 600; }
.rating-bar-bg { flex: 1; height: 8px; background: var(--card2); border-radius: 4px; overflow: hidden; }
.rating-bar-fill { height: 100%; border-radius: 4px; background: var(--star); transition: width 0.6s ease; }
.rating-count { font-size: 11px; color: var(--text3); width: 30px; text-align: right; }

/* ── 트렌드 차트 ── */
.trend-chart { overflow-x: auto; }
.trend-svg { display: block; }

/* ── 미리보기 목록 ── */
.preview-list { display: flex; flex-direction: column; gap: 8px; }
.preview-card {
  background: var(--card2); border-radius: var(--radius-sm);
  padding: 12px; border-left: 3px solid transparent;
}
.preview-card.RED { border-left-color: var(--red); }
.preview-card.YELLOW { border-left-color: var(--yellow); }
.preview-card.BLUE { border-left-color: var(--blue); }
.view-all-btn {
  width: 100%; margin-top: 10px; padding: 10px;
  border: 1px solid var(--border); background: transparent;
  color: var(--accent); border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600; cursor: pointer;
}

/* ── 뒤로가기 바 ── */
.back-bar {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px; padding: 8px 12px;
  background: var(--card); border-radius: var(--radius);
  border: 1px solid var(--border);
}
.back-btn {
  border: none; background: none; color: var(--accent);
  font-size: 14px; font-weight: 600; cursor: pointer; padding: 0;
}
.back-label { font-size: 12px; color: var(--text3); }

/* ── 검색 바 ── */
.review-controls { display: flex; gap: 8px; margin-bottom: 10px; }
.search-bar {
  flex: 1; display: flex; align-items: center; gap: 8px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0 12px; height: 44px;
}
.search-icon { color: var(--text3); flex-shrink: 0; }
.search-input {
  flex: 1; border: none; background: transparent; color: var(--text);
  font-size: 15px; outline: none;
}
.search-input::placeholder { color: var(--text3); }
.clear-btn {
  border: none; background: none; color: var(--text3); cursor: pointer; font-size: 14px; padding: 4px;
}
.filter-toggle-btn {
  height: 44px; padding: 0 14px;
  border: 1px solid var(--border); background: var(--card);
  color: var(--text2); border-radius: var(--radius);
  font-size: 13px; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; gap: 6px; white-space: nowrap;
}
.filter-toggle-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ── 필터 패널 ── */
.filter-panel {
  display: none; background: var(--card); border-radius: var(--radius);
  padding: 14px; border: 1px solid var(--border); margin-bottom: 10px;
}
.filter-panel.open { display: block; }
.filter-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.filter-row label { font-size: 11px; color: var(--text3); font-weight: 600; }
.date-range { display: flex; align-items: center; gap: 6px; }
.filter-date {
  flex: 1; height: 36px; padding: 0 10px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--card2); color: var(--text); font-size: 13px; outline: none;
}
.chip-group { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  height: 30px; padding: 0 12px;
  border: 1px solid var(--border); border-radius: 20px;
  background: var(--card2); color: var(--text2);
  font-size: 12px; font-weight: 500; cursor: pointer; transition: all 0.15s;
}
.chip.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.chip.red-chip.active { background: var(--red); border-color: var(--red); }
.chip.yellow-chip.active { background: var(--yellow); color: #1a1a1a; border-color: var(--yellow); }
.chip.blue-chip.active { background: var(--blue); border-color: var(--blue); }
.apply-btn {
  height: 36px; padding: 0 14px;
  background: var(--accent); color: #fff;
  border: none; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 700; cursor: pointer;
  white-space: nowrap; flex-shrink: 0;
}
.apply-btn:active { opacity: 0.8; }
.filter-reset-btn {
  width: 100%; padding: 10px; border: 1px solid var(--border);
  background: transparent; color: var(--text3); border-radius: var(--radius-sm);
  font-size: 13px; cursor: pointer;
}

/* ── 결과 정보 ── */
.result-info { font-size: 12px; color: var(--text3); margin-bottom: 8px; padding: 0 2px; }

/* ── 후기 카드 ── */
.review-list { display: flex; flex-direction: column; gap: 8px; }
.review-card {
  background: var(--card); border-radius: var(--radius);
  padding: 14px; border: 1px solid var(--border);
  border-left: 3px solid var(--border);
  animation: fadeIn 0.2s ease;
}
.review-card.flag-RED { border-left-color: var(--red); }
.review-card.flag-YELLOW { border-left-color: var(--yellow); }
.review-card.flag-BLUE { border-left-color: var(--blue); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.rv-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.rv-tags { display: flex; align-items: center; gap: 5px; flex-wrap: wrap; }
.rv-channel {
  font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 20px; color: #fff;
}
.rv-channel.shop { background: var(--shop); }
.rv-channel.naver { background: var(--naver); }
.rv-flag {
  font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 20px;
}
.rv-flag.RED { background: var(--red-bg); color: var(--red); }
.rv-flag.YELLOW { background: var(--yellow-bg); color: var(--yellow); }
.rv-flag.BLUE { background: var(--blue-bg); color: var(--blue); }
.rv-date { font-size: 11px; color: var(--text3); }
.rv-stars { font-size: 13px; color: var(--star); margin-bottom: 4px; }
.rv-product { font-size: 11px; color: var(--text3); margin-bottom: 6px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rv-content { font-size: 13px; line-height: 1.65; color: var(--text); word-break: break-all; }
.rv-author { font-size: 11px; color: var(--text3); margin-top: 6px; text-align: right; }

/* ── 더 보기 / 로딩 ── */
.load-more-btn {
  display: block; width: 100%; margin-top: 12px; padding: 14px;
  border: 1px solid var(--border); background: var(--card);
  color: var(--accent); border-radius: var(--radius);
  font-size: 14px; font-weight: 600; cursor: pointer;
}
.loading-spinner { display: flex; justify-content: center; padding: 30px; }
.spinner {
  width: 28px; height: 28px; border: 3px solid var(--border);
  border-top-color: var(--accent); border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── 통계 ── */
.stats-period { margin-bottom: 14px; }
.period-select {
  width: 100%; height: 44px; padding: 0 14px;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--card); color: var(--text); font-size: 14px; outline: none;
}
.channel-stat-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.channel-stat-row:last-child { border-bottom: none; }
.ch-name { font-size: 14px; font-weight: 600; }
.ch-badge {
  font-size: 10px; padding: 2px 8px; border-radius: 20px; color: #fff; margin-left: 6px;
}
.ch-badge.shop { background: var(--shop); }
.ch-badge.naver { background: var(--naver); }
.ch-nums { text-align: right; }
.ch-total { font-size: 18px; font-weight: 700; }
.ch-avg { font-size: 11px; color: var(--text3); }
.product-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
}
.product-row:last-child { border-bottom: none; }
.product-rank { font-size: 12px; color: var(--text3); width: 20px; text-align: center; font-weight: 700; }
.product-info { flex: 1; min-width: 0; }
.product-name { font-size: 12px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.product-bar-bg { height: 4px; background: var(--card2); border-radius: 2px; margin-top: 4px; }
.product-bar-fill { height: 100%; border-radius: 2px; background: var(--accent); }
.product-count { font-size: 13px; font-weight: 700; color: var(--accent); flex-shrink: 0; }

/* ── 빈 상태 ── */
.empty-state { text-align: center; padding: 50px 20px; color: var(--text3); }
.empty-state .empty-icon { font-size: 40px; margin-bottom: 10px; }
.empty-state p { font-size: 14px; }

/* ── 클레임 요약 (홈) ── */
.claim-summary-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.claim-summary-item {
  background: var(--card2); border-radius: var(--radius-sm);
  padding: 12px; text-align: center;
}
.claim-summary-label { font-size: 10px; color: var(--text3); font-weight: 500; margin-bottom: 4px; }
.claim-summary-value { font-size: 22px; font-weight: 800; color: var(--text); line-height: 1.2; }
.claim-summary-sub { font-size: 10px; color: var(--text3); }

/* ── 클레임 필터 ── */
.claim-filters {
  background: var(--card); border-radius: var(--radius);
  padding: 12px; border: 1px solid var(--border); margin-bottom: 10px;
}
.claim-filter-row {
  display: flex; gap: 8px; margin-bottom: 8px;
}
.claim-filter-row:last-child { margin-bottom: 0; }
.claim-select {
  flex: 1; height: 38px; padding: 0 10px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--card2); color: var(--text); font-size: 13px; outline: none;
}
.claim-search-bar { flex: 1; }
.claim-search-input {
  width: 100%; height: 38px; padding: 0 12px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--card2); color: var(--text); font-size: 13px; outline: none;
}
.claim-search-input::placeholder { color: var(--text3); }

/* ── 클레임-후기 연계 배너 ── */
.claim-review-banner {
  background: var(--yellow-bg); border: 1px solid rgba(212,148,10,0.3);
  border-radius: var(--radius-sm); padding: 10px 14px;
  font-size: 13px; font-weight: 600; color: var(--yellow);
  margin-bottom: 10px;
}

/* ── 클레임 카드 ── */
.claim-list { display: flex; flex-direction: column; gap: 8px; }
.claim-card {
  background: var(--card); border-radius: var(--radius);
  padding: 14px; border: 1px solid var(--border);
  border-left: 4px solid var(--text3);
  animation: fadeIn 0.2s ease;
}
/* 클레임종류별 색상 */
.claim-card.claim-이물질 { border-left-color: var(--red); }
.claim-card.claim-상품 { border-left-color: #f0860a; }
.claim-card.claim-출고 { border-left-color: var(--blue); }
.claim-card.claim-배송사 { border-left-color: #9c5cd0; }
.claim-card.claim-판매응대 { border-left-color: var(--naver); }
.claim-card.claim-전산 { border-left-color: #888; }
.claim-card.claim-고객귀책 { border-left-color: #d4a10a; }

.claim-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.claim-tags { display: flex; align-items: center; gap: 5px; flex-wrap: wrap; }
.claim-type-badge {
  font-size: 10px; font-weight: 700; padding: 2px 8px;
  border-radius: 20px; color: #fff;
}
.claim-type-badge.ct-이물질 { background: var(--red); }
.claim-type-badge.ct-상품 { background: #f0860a; }
.claim-type-badge.ct-출고 { background: var(--blue); }
.claim-type-badge.ct-배송사 { background: #9c5cd0; }
.claim-type-badge.ct-판매응대 { background: var(--naver); }
.claim-type-badge.ct-전산 { background: #888; }
.claim-type-badge.ct-고객귀책 { background: #d4a10a; }

.claim-sub-badge {
  font-size: 10px; font-weight: 600; padding: 2px 8px;
  border-radius: 20px; background: var(--card2); color: var(--text2);
  border: 1px solid var(--border);
}
.claim-method-badge {
  font-size: 10px; font-weight: 600; padding: 2px 8px;
  border-radius: 20px; background: rgba(108,99,255,0.1); color: var(--accent);
}
.claim-date { font-size: 11px; color: var(--text3); }
.claim-product { font-size: 12px; color: var(--text2); margin-bottom: 6px; }
.claim-cost {
  font-size: 14px; font-weight: 700; color: var(--red); margin-bottom: 4px;
}
.claim-detail-toggle {
  border: none; background: none; color: var(--accent);
  font-size: 12px; font-weight: 600; cursor: pointer; padding: 4px 0;
}
.claim-detail-content {
  display: none; font-size: 12px; line-height: 1.6; color: var(--text);
  margin-top: 6px; padding: 10px; background: var(--card2);
  border-radius: var(--radius-sm); word-break: break-all;
}
.claim-detail-content.open { display: block; }
.claim-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 6px; font-size: 10px; color: var(--text3);
}
.repurchase-badge {
  font-size: 10px; font-weight: 700; padding: 1px 6px;
  border-radius: 10px;
}
.repurchase-badge.yes { background: rgba(68,181,73,0.15); color: var(--naver); }
.repurchase-badge.no { background: var(--red-bg); color: var(--red); }

/* ── 클레임 통계: 월별 바 차트 ── */
.claim-bar-chart { display: flex; flex-direction: column; gap: 6px; }
.claim-bar-row {
  display: flex; align-items: center; gap: 8px;
}
.claim-bar-label { font-size: 12px; color: var(--text2); width: 50px; text-align: right; font-weight: 600; }
.claim-bar-bg { flex: 1; height: 20px; background: var(--card2); border-radius: 4px; overflow: hidden; position: relative; }
.claim-bar-fill {
  height: 100%; border-radius: 4px; background: var(--accent);
  transition: width 0.6s ease; display: flex; align-items: center;
  padding-left: 6px; font-size: 10px; color: #fff; font-weight: 600;
  min-width: 0;
}
.claim-bar-count { font-size: 11px; color: var(--text3); width: 40px; text-align: right; }

/* ── 클레임 도넛 차트 ── */
.donut-chart-container {
  display: flex; align-items: center; gap: 20px; justify-content: center;
  flex-wrap: wrap;
}
.donut-legend {
  display: flex; flex-direction: column; gap: 6px;
}
.donut-legend-item {
  display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text2);
}
.donut-legend-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.donut-legend-count { font-weight: 700; color: var(--text); margin-left: 4px; }

/* ── 처리방법별 ── */
.method-stat-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid var(--border);
}
.method-stat-row:last-child { border-bottom: none; }
.method-name { font-size: 13px; font-weight: 600; }
.method-count { font-size: 15px; font-weight: 700; color: var(--accent); }

/* ── 재구매율 ── */
.repurchase-stat {
  text-align: center; padding: 20px;
}
.repurchase-rate {
  font-size: 48px; font-weight: 800; color: var(--naver); line-height: 1;
}
.repurchase-label { font-size: 13px; color: var(--text3); margin-top: 6px; }

/* ── 태블릿/PC 레이아웃 ── */
@media (min-width: 768px) {
  body { background: var(--bg3); }

  .app-header {
    left: 0; right: 0; transform: none;
    background: var(--bg2);
  }
  .header-inner { max-width: 1100px; }

  .app-main {
    max-width: 1100px; margin: 0 auto;
    padding: 0 24px;
    padding-top: var(--header-h);
    padding-bottom: calc(var(--nav-h) + 8px);
  }

  /* 홈 탭: 2단 그리드 */
  #tab-home {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
  }
  #tab-home.active { display: grid; }

  .date-bar { grid-column: 1 / -1; }
  .kpi-grid { grid-template-columns: repeat(4, 1fr); grid-column: 1 / -1; }
  .flag-row { grid-column: 1 / -1; }

  #ratingSection { grid-column: 1; }
  #trendSection  { grid-column: 2; }
  #bestSection   { grid-column: 1; }
  #flagSection   { grid-column: 2; }
  #allSection    { grid-column: 1 / -1; }

  .bottom-nav {
    left: 0; right: 0; transform: none; max-width: 100%;
    padding: 0 24px;
    justify-content: center; gap: 60px;
  }
  .nav-item { flex: 0 0 auto; min-width: 80px; }

  /* 후기 카드 2열 */
  .review-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .empty-state { grid-column: 1 / -1; }

  /* 클레임 카드 2열 */
  .claim-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

  /* 홈 클레임 요약 */
  #claimSummarySection { grid-column: 1 / -1; }
  .claim-summary-grid { grid-template-columns: repeat(4, 1fr); }
}
