/*
Theme Name: Heeyaho (Neve Child)
Theme URI: https://heeyaho.co.kr
Description: 네이버 블로그형 리스트 레이아웃 — 좌측 프로필/카테고리, 썸네일 리스트, 읽기 좋은 글 페이지. Neve 자식 테마.
Author: heeyaho
Template: neve
Version: 1.0.0
Text Domain: neve-child
*/

/* ---------------------------------------------------------------------------
   0. 토큰
--------------------------------------------------------------------------- */
:root {
  --hy-bg: #f2f3f5;
  --hy-card: #ffffff;
  --hy-line: #e2e4e8;
  --hy-line-soft: #f0f1f3;
  --hy-text: #222222;
  --hy-text-2: #666666;
  --hy-text-3: #888888;
  --hy-accent: #03a24a;
  --hy-accent-ink: #027a38;
  --hy-radius: 12px;
  --hy-font: 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---------------------------------------------------------------------------
   1. 전역: 폰트 / 배경 / 링크
--------------------------------------------------------------------------- */
body,
body .neve-main,
.hfg_header,
.nv-single-post-wrap,
.entry-content {
  font-family: var(--hy-font) !important;
}
body {
  background: var(--hy-bg) !important;
  color: var(--hy-text);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body h1, body h2, body h3, body h4 {
  font-family: var(--hy-font) !important;
  letter-spacing: -0.3px;
  color: #111;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--hy-accent); }

/* Neve 헤더: 흰 배경 + 얇은 하단선 */
.hfg_header .header--row,
.hfg_header .header--row .row {
  background: #fff;
}
.hfg_header .header-main {
  border-bottom: 1px solid var(--hy-line);
}
.hfg_header .nav-ul li > a {
  font-weight: 500;
  font-size: 15px;
  color: #333;
}
.hfg_header .nav-ul li > a:hover,
.hfg_header .nav-ul li.current-menu-item > a,
.hfg_header .nav-ul li.current-post-ancestor > a,
.hfg_header .nav-ul li.current-menu-ancestor > a {
  color: var(--hy-accent);
}
.hfg_header .nav-ul li.current-menu-item > a { box-shadow: inset 0 -2px 0 var(--hy-accent); }

/* ---------------------------------------------------------------------------
   2. 레이아웃 컨테이너
--------------------------------------------------------------------------- */
.hy-container {
  max-width: 1040px;
  margin: 24px auto 48px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.hy-container.hy-post-layout { grid-template-columns: minmax(0, 1fr) 260px; }
.hy-main { min-width: 0; }
.hy-side { display: flex; flex-direction: column; gap: 16px; }
.hy-side.hy-sticky { position: sticky; top: 90px; }

.hy-box {
  background: var(--hy-card);
  border: 1px solid var(--hy-line);
  border-radius: var(--hy-radius);
  padding: 18px 20px;
}
.hy-box-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--hy-text-3);
  letter-spacing: .5px;
  margin: 0 0 10px;
}

/* ---------------------------------------------------------------------------
   3. 프로필 카드
--------------------------------------------------------------------------- */
.hy-profile { text-align: center; padding: 24px 20px; }
.hy-avatar {
  width: 88px; height: 88px; border-radius: 50%;
  margin: 0 auto 10px;
  background: var(--hy-accent);
  color: #fff; font-size: 34px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hy-avatar img { width: 100%; height: 100%; object-fit: cover; }
.hy-profile-name { font-size: 18px; font-weight: 700; margin: 0 0 6px; color: #111; }
.hy-profile-desc { font-size: 13px; color: var(--hy-text-2); line-height: 1.6; margin: 0 0 10px; word-break: keep-all; }
.hy-profile-stats { display: flex; justify-content: center; gap: 16px; font-size: 13px; color: #555; margin-bottom: 12px; }
.hy-profile-stats b { color: #111; }
.hy-btn {
  display: flex; align-items: center; justify-content: center;
  height: 44px; border-radius: 8px; font-weight: 700; font-size: 14px;
  background: var(--hy-accent); color: #fff !important; width: 100%;
  border: 0; cursor: pointer; font-family: inherit;
}
.hy-btn:hover { background: var(--hy-accent-ink); }
.hy-btn-row { display: flex; gap: 8px; margin-top: 8px; }
.hy-btn-ghost {
  flex: 1; height: 40px; display: flex; align-items: center; justify-content: center;
  border: 1px solid #d9dce1; border-radius: 8px; font-size: 13px; color: #333 !important; background: #fff;
}
.hy-btn-ghost:hover { border-color: var(--hy-accent); color: var(--hy-accent) !important; }

/* ---------------------------------------------------------------------------
   4. 카테고리 목록 / 인기글
--------------------------------------------------------------------------- */
.hy-cats { list-style: none; margin: 0; padding: 0; }
.hy-cats li a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 7px 0; font-size: 14px; color: #222;
}
.hy-cats li a span:last-child { color: #999; font-size: 13px; }
.hy-cats li.hy-cat-group { font-size: 13px; font-weight: 700; color: #333; padding: 10px 0 2px; }
.hy-cats li.hy-cat-child a { padding-left: 12px; }
.hy-cats li.current a { color: var(--hy-accent); font-weight: 500; }

.hy-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.hy-list li a { display: flex; gap: 10px; font-size: 13px; line-height: 1.5; align-items: flex-start; }
.hy-list .hy-rank { color: var(--hy-accent); font-weight: 700; width: 14px; flex-shrink: 0; }
.hy-list .hy-mini-thumb {
  width: 56px; height: 42px; border-radius: 6px; flex-shrink: 0; background: #dfe3e8; object-fit: cover;
}

/* 검색 폼 */
.hy-search-box { padding: 10px 12px; }
.hy-search { display: flex; align-items: center; gap: 8px; }
.hy-search input {
  flex: 1; min-width: 0; height: 38px; border: 1px solid #d9dce1; border-radius: 19px; padding: 0 14px;
  font-size: 14px; font-family: inherit; background: #fafafa; outline: none;
}
.hy-search input:focus { border-color: var(--hy-accent); background: #fff; }
.hy-search button { width: 38px; height: 38px; border: 0; background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.hy-widgets .widget { margin: 0 0 14px; } .hy-widgets .widget:last-child { margin: 0; }
.hy-widgets .widget h2, .hy-widgets .widget h3 { font-size: 13px; font-weight: 700; color: var(--hy-text-3); margin: 0 0 8px; }

/* ---------------------------------------------------------------------------
   5. 글 목록 (홈 / 카테고리 / 검색)
--------------------------------------------------------------------------- */
.hy-list-head {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 0 4px 12px;
}
.hy-list-head h1, .hy-list-head h2 { margin: 0; font-size: 20px; font-weight: 700; }
.hy-list-head h1 small, .hy-list-head h2 small { font-size: 14px; color: #999; font-weight: 400; margin-left: 6px; }
.hy-list-head .hy-desc { font-size: 13px; color: var(--hy-text-3); }

.hy-cards { display: flex; flex-direction: column; gap: 12px; }
.hy-card {
  background: var(--hy-card);
  border: 1px solid var(--hy-line);
  border-radius: var(--hy-radius);
  padding: 20px;
  display: flex; gap: 20px;
  transition: border-color .15s, box-shadow .15s;
}
.hy-card:hover { border-color: #c9ccd2; box-shadow: 0 2px 10px rgba(0,0,0,.04); }
.hy-card-thumb {
  width: 200px; height: 134px; flex-shrink: 0; border-radius: 8px; overflow: hidden;
  background: #dfe3e8; display: flex; align-items: center; justify-content: center;
  color: #6b7280; font-size: 12px; text-align: center;
}
.hy-card-thumb span { padding: 8px; }
.hy-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hy-card-body { display: flex; flex-direction: column; gap: 8px; flex: 1; min-width: 0; }
.hy-card-meta { display: flex; gap: 8px; align-items: center; font-size: 12px; color: var(--hy-text-3); }
.hy-card-meta .hy-cat { color: var(--hy-accent); font-weight: 700; }
.hy-card-meta .hy-dot { color: #bbb; }
.hy-card-title { margin: 0; font-size: 19px; font-weight: 700; line-height: 1.4; }
.hy-card-title a { color: #111; }
.hy-card-title a:hover { color: var(--hy-accent); }
.hy-card-excerpt {
  margin: 0; font-size: 14px; color: var(--hy-text-2); line-height: 1.7;
  overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.hy-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 2px; }
.hy-tags a {
  font-size: 12px; color: #555; background: var(--hy-bg); border-radius: 4px; padding: 3px 8px;
}
.hy-tags a:hover { color: var(--hy-accent); }

/* 페이지네이션 */
.hy-main .navigation.pagination { margin: 20px 0 0; }
.hy-main .nav-links { display: flex; justify-content: center; gap: 6px; }
.hy-main .nav-links .page-numbers {
  min-width: 36px; height: 36px; padding: 0 10px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 18px; color: #555; font-size: 14px; background: transparent; border: 0;
}
.hy-main .nav-links .page-numbers.current { background: #111; color: #fff; font-weight: 700; }
.hy-main .nav-links .page-numbers:hover:not(.current) { background: #e6e8eb; }

/* ---------------------------------------------------------------------------
   6. 글 페이지
--------------------------------------------------------------------------- */
.hy-article {
  background: var(--hy-card); border: 1px solid var(--hy-line); border-radius: var(--hy-radius);
  padding: 40px 44px;
}
.hy-article-cat { font-size: 13px; font-weight: 700; color: var(--hy-accent); display: inline-block; margin-bottom: 12px; }
.hy-article-title { margin: 0 0 18px; font-size: 30px; font-weight: 700; line-height: 1.35; letter-spacing: -0.5px; }
.hy-article-meta {
  display: flex; align-items: center; gap: 12px; padding-bottom: 18px; margin-bottom: 24px;
  border-bottom: 1px solid #eceef1;
}
.hy-article-meta .hy-avatar { width: 36px; height: 36px; font-size: 15px; margin: 0; }
.hy-article-meta .hy-who { display: flex; flex-direction: column; line-height: 1.4; }
.hy-article-meta .hy-who b { font-size: 14px; font-weight: 500; color: #111; }
.hy-article-meta .hy-who span { font-size: 12px; color: var(--hy-text-3); }
.hy-article-meta .hy-share { margin-left: auto; }
.hy-icon-btn {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid #d9dce1; background: #fff;
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
}
.hy-icon-btn:hover { border-color: var(--hy-accent); }

/* 본문 타이포 */
.hy-article .entry-content { font-size: 16px; line-height: 1.9; color: #333; }
.hy-article .entry-content > p { margin: 0 0 18px; }
.hy-article .entry-content h2,
.hy-article .entry-content h3 {
  margin: 34px 0 14px; font-size: 21px; font-weight: 700; color: #111; line-height: 1.4;
  padding-left: 12px; border-left: 3px solid var(--hy-accent);
}
.hy-article .entry-content h3 { font-size: 19px; }
.hy-article .entry-content h4 { margin: 22px 0 8px; font-size: 17px; font-weight: 700; }
.hy-article .entry-content img { max-width: 100%; height: auto; border-radius: 10px; }
.hy-article .entry-content table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 0 0 18px; }
.hy-article .entry-content th, .hy-article .entry-content td { padding: 10px; border: 1px solid var(--hy-line); text-align: left; }
.hy-article .entry-content th { background: #f6f8fa; font-weight: 700; }
.hy-article .entry-content blockquote {
  margin: 20px 0; padding: 14px 18px; background: #f6f8fa; border-left: 3px solid var(--hy-accent) !important; border-radius: 0 8px 8px 0;
  font-style: normal; color: #333;
}
.hy-article .entry-content ul, .hy-article .entry-content ol { padding-left: 22px; margin: 0 0 18px; }
.hy-article .entry-content li { margin: 4px 0; }
/* 봇이 본문에 넣던 관련글 박스는 테마가 대신 그리므로 숨김 */
.hy-article .entry-content .related-posts-box { display: none; }

/* 태그 */
.hy-article .hy-tags { padding-top: 16px; margin-top: 8px; border-top: 1px solid #eceef1; }
.hy-article .hy-tags a { font-size: 13px; padding: 5px 10px; }

/* 작성자 카드 / 관련 글 */
.hy-author {
  display: flex; align-items: center; gap: 18px; padding: 22px 28px;
}
.hy-author .hy-avatar { width: 56px; height: 56px; font-size: 22px; margin: 0; flex-shrink: 0; }
.hy-author-text { flex: 1; }
.hy-author-text b { display: block; font-size: 16px; color: #111; margin-bottom: 4px; }
.hy-author-text span { font-size: 13px; color: var(--hy-text-2); line-height: 1.6; }
.hy-author .hy-btn { width: auto; padding: 0 22px; flex-shrink: 0; }

.hy-related { padding: 22px 28px; }
.hy-related-title { font-size: 16px; font-weight: 700; margin: 0 0 12px; color: #111; }
.hy-related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.hy-related-grid a { display: flex; flex-direction: column; gap: 8px; }
.hy-related-grid .hy-rel-thumb {
  width: 100%; aspect-ratio: 16 / 10; border-radius: 8px; background: #dfe3e8; overflow: hidden;
  display: flex; align-items: center; justify-content: center; color: #6b7280; font-size: 12px;
}
.hy-related-grid .hy-rel-thumb img { width: 100%; height: 100%; object-fit: cover; }
.hy-related-grid .hy-rel-title { font-size: 14px; font-weight: 500; line-height: 1.5; color: #111; }
.hy-related-grid .hy-rel-date { font-size: 12px; color: var(--hy-text-3); }

.hy-stack { display: flex; flex-direction: column; gap: 16px; }

/* 목차 */
.hy-toc { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.hy-toc li a { display: block; font-size: 14px; padding: 5px 0; color: #333; line-height: 1.5; }
.hy-toc li.hy-toc-h3 a { padding-left: 12px; font-size: 13px; color: #555; }
.hy-toc li a:hover, .hy-toc li.active a { color: var(--hy-accent); font-weight: 500; }

/* 댓글 영역 */
.hy-comments { margin-top: 16px; }
.hy-comments .comments-area { background: var(--hy-card); border: 1px solid var(--hy-line); border-radius: var(--hy-radius); padding: 24px 28px; }

/* ---------------------------------------------------------------------------
   7. 모바일
--------------------------------------------------------------------------- */
.hy-mobile-only { display: none; }
@media (max-width: 960px) {
  .hy-container, .hy-container.hy-post-layout { grid-template-columns: minmax(0, 1fr); margin-top: 0; padding: 0; gap: 0; background: #fff; }
  body { background: #fff !important; }
  .hy-side { order: 2; padding: 16px; gap: 12px; }
  .hy-side.hy-sticky { position: static; }
  .hy-side .hy-profile, .hy-side .hy-box { border-radius: 10px; }
  .hy-desktop-only { display: none !important; }
  .hy-mobile-only { display: block; }

  /* 카테고리 칩 */
  .hy-chips { display: flex; gap: 8px; padding: 12px 16px; overflow-x: auto; border-bottom: 1px solid var(--hy-line-soft); scrollbar-width: none; }
  .hy-chips::-webkit-scrollbar { display: none; }
  .hy-chips a {
    flex-shrink: 0; height: 34px; padding: 0 14px; display: inline-flex; align-items: center;
    border-radius: 17px; background: var(--hy-bg); color: #333; font-size: 13px; white-space: nowrap;
  }
  .hy-chips a.current { background: #111; color: #fff; font-weight: 500; }

  /* 미니 프로필 */
  .hy-profile-mini { display: flex; align-items: center; gap: 12px; padding: 14px 16px; }
  .hy-profile-mini .hy-avatar { width: 52px; height: 52px; font-size: 20px; margin: 0; flex-shrink: 0; }
  .hy-profile-mini .hy-pm-text { flex: 1; min-width: 0; }
  .hy-profile-mini .hy-pm-text b { display: block; font-size: 16px; color: #111; }
  .hy-profile-mini .hy-pm-text span { font-size: 12px; color: #777; }
  .hy-profile-mini .hy-btn { width: auto; height: 36px; padding: 0 14px; font-size: 13px; }

  .hy-list-head { padding: 12px 16px 4px; }
  .hy-list-head h1 { font-size: 17px; }
  .hy-cards { gap: 0; }
  .hy-card { border: 0; border-top: 1px solid var(--hy-line-soft); border-radius: 0; padding: 16px; gap: 14px; flex-direction: row-reverse; }
  .hy-card:hover { box-shadow: none; }
  .hy-card-thumb { width: 96px; height: 96px; font-size: 11px; }
  .hy-card-title { font-size: 16px; line-height: 1.45; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
  .hy-card-excerpt, .hy-card .hy-tags { display: none; }
  .hy-main .navigation.pagination { padding: 16px; }

  .hy-article { border: 0; border-radius: 0; padding: 24px 16px; }
  .hy-article-title { font-size: 24px; }
  .hy-article .entry-content { font-size: 16px; line-height: 1.85; }
  .hy-author, .hy-related { border-radius: 0; border-left: 0; border-right: 0; padding: 20px 16px; }
  .hy-author { flex-wrap: wrap; }
  .hy-author .hy-btn { width: 100%; }
  .hy-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hy-comments .comments-area { border-radius: 0; border-left: 0; border-right: 0; padding: 20px 16px; }
}

/* 본문 하단 배너(쿠팡/텔레그램): 컴팩트, 제목 스타일 상속 금지 */
.hy-article .entry-content .hy-banner p { margin: 0; }
.hy-article .entry-content .hy-banner a { text-decoration: none; }
.hy-article .entry-content .hy-banner + .hy-banner { margin-top: 8px !important; }
@media (max-width: 960px) {
  .hy-article .entry-content .hy-banner { padding: 10px 12px; gap: 10px; }
  .hy-article .entry-content .hy-banner a { height: 32px; padding: 0 12px; font-size: 12px; }
}

/* ---------------------------------------------------------------------------
   8. 푸터 (Neve 기본 푸터 위젯/크레딧 대체)
--------------------------------------------------------------------------- */
.hy-footer { margin-top: 32px; padding: 28px 16px 36px; border-top: 1px solid var(--hy-line); background: var(--hy-card); }
.hy-footer-inner { max-width: 1080px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.hy-footer-brand { font-weight: 700; font-size: 15px; color: var(--hy-text); text-decoration: none; }
.hy-footer-links { display: flex; gap: 18px; font-size: 13px; }
.hy-footer-links a { color: var(--hy-text-3); text-decoration: none; }
.hy-footer-links a:hover { color: var(--hy-text); }
.hy-footer-copy { margin: 4px 0 0; font-size: 12px; color: #999; line-height: 1.6; max-width: 520px; }
@media (max-width: 960px) { .hy-footer { margin-top: 0; padding: 24px 16px 40px; } }

/* ---------------------------------------------------------------------------
   9. 픽 페이지 (/pick/) — 영상 속 제품 번호로 찾기
--------------------------------------------------------------------------- */
.hy-pick-wrap { max-width: 1080px; margin: 0 auto; padding: 16px 16px 0; display: flex; flex-direction: column; gap: 12px; }
.hy-pick-intro { max-width: 720px; }
.hy-pick-intro h1 { font-size: 20px; font-weight: 700; margin: 0 0 6px; }
.hy-pick-intro p { margin: 0; font-size: 14px; color: var(--hy-text-2); line-height: 1.6; }
.hy-pick-intro .hy-pick-fine { font-size: 12px; color: var(--hy-text-3); margin-top: 8px; }
.hy-pick-find { display: flex; gap: 8px; max-width: 720px; }
.hy-pick-find input { flex: 1; height: 44px; border: 1px solid var(--hy-line); border-radius: 8px; background: var(--hy-card); color: var(--hy-text); font: inherit; font-size: 16px; padding: 0 14px; }
.hy-pick-find input:focus { outline: 2px solid var(--hy-accent); outline-offset: 1px; }
.hy-pick-find .hy-btn { width: auto; padding: 0 18px; }
.hy-pick-chips { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding: 2px 0; }
.hy-pick-chips::-webkit-scrollbar { display: none; }
.hy-pick-chips a { flex-shrink: 0; height: 34px; padding: 0 14px; display: inline-flex; align-items: center; border-radius: 17px; background: var(--hy-card); border: 1px solid var(--hy-line); color: var(--hy-text); font-size: 13px; white-space: nowrap; }
.hy-pick-chips a.current { background: #111; color: #fff; border-color: #111; font-weight: 500; }
.hy-pick-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
@media (min-width: 640px) { .hy-pick-list { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; } }
@media (min-width: 960px) { .hy-pick-list { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; } }
.hy-pick { position: relative; background: var(--hy-card); border: 1px solid var(--hy-line); border-radius: var(--hy-radius); overflow: hidden; display: flex; flex-direction: column; transition: border-color .15s, box-shadow .15s; }
.hy-pick:hover { border-color: #c9ccd2; box-shadow: 0 2px 10px rgba(0,0,0,.04); }
.hy-pick[hidden] { display: none; }
.hy-pick-no { position: absolute; top: 8px; left: 8px; z-index: 1; min-width: 34px; height: 30px; padding: 0 9px; border-radius: 8px; background: #111; color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; font-variant-numeric: tabular-nums; }
.hy-pick-hot { position: absolute; top: 8px; right: 8px; z-index: 1; height: 26px; padding: 0 9px; border-radius: 6px; background: var(--hy-accent); color: #fff; font-size: 12px; font-weight: 700; display: inline-flex; align-items: center; }
.hy-pick-thumb { width: 100%; aspect-ratio: 1 / 1; background: #eef0f3; overflow: hidden; }
.hy-pick-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hy-pick-body { padding: 10px 12px 12px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.hy-pick-cat { font-size: 11px; color: var(--hy-accent); font-weight: 700; }
.hy-pick-name { font-size: 14px; font-weight: 700; margin: 0; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hy-pick-why { font-size: 12px; color: var(--hy-text-2); margin: 0; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hy-pick-meta { display: flex; flex-wrap: wrap; gap: 2px 8px; align-items: baseline; font-size: 11px; color: var(--hy-text-3); margin-top: 2px; }
.hy-pick-price { font-size: 16px; font-weight: 700; color: var(--hy-text); font-variant-numeric: tabular-nums; }
.hy-pick-tag { font-size: 11px; font-weight: 700; color: var(--hy-accent); }
.hy-pick-go { margin-top: auto; padding-top: 8px; }
.hy-pick-go a, .hy-pick-go span { height: 36px; width: 100%; border-radius: 8px; background: var(--hy-accent); color: #fff !important; font-weight: 700; font-size: 13px; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; }
.hy-pick-go a:hover { background: var(--hy-accent-ink); }
.hy-pick.ended { opacity: .6; }
.hy-pick.ended .hy-pick-go span { background: var(--hy-bg); color: var(--hy-text-3) !important; border: 1px solid var(--hy-line); }
.hy-pick-foot { font-size: 12px; color: var(--hy-text-3); line-height: 1.6; padding: 8px 4px 32px; display: flex; flex-direction: column; gap: 4px; }
.hy-pick-foot a { color: var(--hy-text-2); }
@media (min-width: 960px) { .hy-pick-name { font-size: 15px; } .hy-pick-why { font-size: 13px; } }
@media (max-width: 960px) {
  /* 모바일: 사이트 나머지와 같이 흰 배경, 카드는 얇은 테두리로 구분 */
  body.hy-pick-page { background: #fff !important; }
  .hy-pick-wrap { padding-top: 12px; }
  .hy-pick-intro { padding: 14px 16px; }
  .hy-pick-intro h1 { font-size: 18px; }
}
