:root {
  --bg: #efe7da;
  --card: #ffffff;
  --ink: #2b2622;
  --sub: #8b8175;
  --accent: #ff5a3c;
  --accent-soft: #ffe9e3;
  --line: #e7ddcd;
  --radius: 16px;
  --shadow: 0 2px 10px rgba(80,60,40,.07);
}
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
body {
  font-family: "Noto Sans KR", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  padding-bottom: 40px;
}

/* 고지 */
.disclosure {
  background: #3a332c; color: #efe7da;
  font-size: 11px; text-align: center;
  padding: 8px 14px; letter-spacing: -.2px;
}
.disclosure b { color: #ffcf5a; }

.wrap { max-width: 480px; margin: 0 auto; padding: 0 18px; }

/* 프로필 */
.profile { text-align: center; padding: 28px 0 18px; }
.avatar {
  width: 96px; height: 96px; margin: 0 auto 14px;
  border-radius: 50%; background: var(--card);
  border: 2px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: "Black Han Sans", sans-serif; font-size: 18px;
  line-height: 1.05; letter-spacing: 1px; box-shadow: var(--shadow);
}
.brand { font-family: "Black Han Sans", sans-serif; font-size: 26px; letter-spacing: -.5px; }
.handle { color: var(--sub); font-size: 14px; margin-top: 2px; }
.tagline { font-size: 14px; margin-top: 12px; color: #5c554c; }
.tagline b { color: var(--accent); }
.biz-btn {
  display: inline-block; margin-top: 16px; padding: 9px 22px;
  border: 1.5px solid var(--ink); border-radius: 22px;
  text-decoration: none; color: var(--ink); font-size: 13px; font-weight: 700;
  background: var(--card);
}
.biz-btn:active { transform: scale(.97); }

/* 검색 */
.search-box {
  display: flex; align-items: center; gap: 8px;
  background: var(--card); border: 1.5px solid var(--line);
  border-radius: 30px; padding: 12px 18px; margin-top: 8px;
  box-shadow: var(--shadow);
}
.search-box:focus-within { border-color: var(--accent); }
.search-ic { font-size: 16px; opacity: .6; }
#search {
  flex: 1; border: 0; outline: 0; background: transparent;
  font-size: 16px; font-family: inherit; color: var(--ink);
}
.clear-btn { border: 0; background: #e7ddcd; color: #6b6258;
  width: 22px; height: 22px; border-radius: 50%; font-size: 12px; cursor: pointer; }
.hint { text-align: center; color: var(--sub); font-size: 12.5px; margin: 12px 0 4px; }
.hint b { color: #5c554c; }

/* 섹션 */
.section-title {
  font-size: 16px; font-weight: 900; margin: 22px 4px 12px;
  display: flex; align-items: center; gap: 6px;
}

/* 카드 리스트 */
.list { display: flex; flex-direction: column; gap: 10px; }
.card {
  display: flex; align-items: center; gap: 14px;
  background: var(--card); border-radius: var(--radius);
  padding: 12px 14px; box-shadow: var(--shadow);
  text-decoration: none; color: inherit; cursor: pointer;
  border: 1px solid transparent; transition: transform .08s, border-color .15s;
}
.card:active { transform: scale(.985); }
.card.hot { border-color: var(--accent-soft); }
.thumb {
  width: 60px; height: 60px; flex: 0 0 60px; border-radius: 12px;
  background: var(--accent-soft); display: flex; align-items: center; justify-content: center;
  font-size: 30px; overflow: hidden;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.info { flex: 1; min-width: 0; }
.num-badge {
  display: inline-block; background: var(--ink); color: #fff;
  font-size: 11px; font-weight: 700; border-radius: 6px;
  padding: 1px 7px; margin-right: 6px; vertical-align: middle;
}
.hot-badge {
  display: inline-block; background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 700; border-radius: 6px;
  padding: 1px 6px; margin-left: 4px; vertical-align: middle;
}
.p-name { font-weight: 700; font-size: 15px; letter-spacing: -.3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.p-meta { color: var(--sub); font-size: 12.5px; margin-top: 2px; }
.go { color: var(--accent); font-size: 20px; flex: 0 0 auto; }

.empty { text-align: center; color: var(--sub); font-size: 14px; padding: 30px 0; }

/* 푸터 */
.foot { text-align: center; margin-top: 34px; }
.foot a { color: var(--accent); font-weight: 700; text-decoration: none; font-size: 14px; }
.copy { color: var(--sub); font-size: 11px; margin-top: 12px; line-height: 1.6; }
