/* ==========================================================
   pages/regions.css — 우리 동네 (/regions/ · /regions/{id}/)
   .rg-grid(17개 시도 카드) · #reading · .defs · .read-card · .small-note
   ========================================================== */

/* ---------- 17개 시도 카드 ---------- */
.glance + .rg-grid { margin-top: 18px; }
.rg-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr)); gap: 10px; }
.rg-card {
  position: relative; height: 100%; display: grid; gap: 12px; padding: 16px 40px 16px 16px;
  border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line);
  transition: border-color .15s, box-shadow .2s, transform .2s;
}
.rg-card:hover { border-color: #D5DAE3; box-shadow: var(--shadow-2); transform: translateY(-2px); }
.rg-card.is-me { border-color: var(--brand-line); background: var(--brand-tint); }
.rg-card.is-me .rg-top b::after {
  content: "내 동네"; margin-left: 8px; padding: 2px 7px; border-radius: 6px; background: var(--brand); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: 0; vertical-align: 2px;
}
.rg-top { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.rg-top b { font-size: 18px; font-weight: 900; letter-spacing: -.04em; }
.rg-read { font-size: 12.5px; font-weight: 700; color: var(--ink-3); white-space: nowrap; }
.rg-book { display: grid; grid-template-columns: 32px minmax(0, 1fr); align-items: center; gap: 12px; }
.rg-book.is-empty { display: block; font-size: 13px; color: var(--ink-4); }
.rg-bt { display: grid; min-width: 0; line-height: 1.38; }
.rg-bt small { font-size: 12px; font-weight: 700; color: var(--ink-3); }
.rg-bt b { font-size: 14.5px; font-weight: 800; letter-spacing: -.03em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rg-go { position: absolute; top: 18px; right: 14px; width: 18px; height: 18px; color: var(--ink-4); }

/* ---------- 독서량 ---------- */
#reading .glance { margin-bottom: 16px; }
.defs { display: grid; gap: 12px; }
.defs dt { font-size: 14px; font-weight: 800; }
.defs dd { margin-top: 2px; font-size: 13.5px; line-height: 1.65; color: var(--ink-2); }

/* ---------- 지역 페이지 옆 요약 ---------- */
.card-title .ico.gold { color: var(--gold); }
.read-card .kpi-s b { font-weight: 800; color: var(--ink-2); }
.small-note { margin-top: 12px; }
.glance + .small-note + .rk-tools { margin-top: 16px; }
