/* Pretendard is licensed under the SIL Open Font License 1.1. */
@font-face {
  font-family: "Pretendard";
  font-weight: 100 900;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/variable/woff2/PretendardVariable.woff2") format("woff2-variations");
}

/* Gmarket Sans is licensed under the SIL Open Font License 1.1; used only for display text. */
@font-face {
  font-family: "GmarketSans";
  font-weight: 700;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff") format("woff");
}

@font-face {
  font-family: "GmarketSans";
  font-weight: 500;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff") format("woff");
}

:root {
  --bg: #fbfbf8;
  --paper: #ffffff;
  --ink: #171b17;
  --muted: #71796f;
  --line: #e6ebe4;
  --accent: #2f6f4f;
  --accent-2: #66875e;
  --soft: #edf5ec;
  --warm: #fbf2df;
  --wash: #f7f9f5;
  --shadow: 0 14px 36px rgba(36, 50, 38, 0.055);
  --radius: 8px;
  --max: 1120px;
  --font-sans: "Pretendard", "Noto Sans KR", sans-serif;
  --font-display: "GmarketSans", "Pretendard", "Noto Sans KR", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #fbfbf8;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  line-break: strict;
  overflow-wrap: break-word;
  word-break: keep-all;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p,
li,
strong {
  word-break: keep-all;
}

p,
li {
  overflow-wrap: break-word;
}

h1,
h2,
h3,
strong,
.brand,
.nav-links a,
.button {
  overflow-wrap: normal;
}

img {
  display: block;
  max-width: 100%;
  border: 0;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 14px 0;
  background: rgba(251, 251, 248, 0.9);
  border: 0;
  border-bottom: 1px solid rgba(230, 235, 228, 0.72);
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 760;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 2px solid var(--accent);
  border-radius: 6px;
  color: var(--accent);
  font-size: 0.9rem;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: none;
  min-width: 0;
  overflow-x: auto;
  white-space: nowrap;
}

.nav-links a,
.utility-links a,
.utility-links button {
  padding: 6px 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 620;
  white-space: nowrap;
  cursor: pointer;
}

.nav-links a:hover,
.utility-links a:hover,
.utility-links button:hover {
  background: transparent;
  color: var(--accent);
}

.site-search {
  display: flex;
  align-items: center;
  width: 210px;
  height: 34px;
  padding: 0 8px 0 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}

.site-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  font: inherit;
  font-size: 0.84rem;
}

.site-search button {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.05rem;
}

.nav-tool {
  flex: 0 0 auto;
  padding: 9px 14px;
  border-radius: 7px;
  background: #edf2ea;
  color: #31543d;
  font-size: 0.88rem;
  font-weight: 720;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.utility-links {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.hero,
.subhero {
  padding: 30px 0 22px;
}

.hero-inner,
.subhero .container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(249, 248, 242, 0.94)),
    var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  gap: 22px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(2rem, 4.2vw, 3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.hero-panel {
  padding: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(221, 228, 216, 0.92);
  border-radius: var(--radius);
}

.featured-card {
  display: grid;
  gap: 10px;
  padding: 12px;
  margin-bottom: 14px;
  background: rgba(248, 247, 242, 0.8);
  border: 1px solid rgba(233, 230, 221, 0.9);
  border-radius: 18px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.featured-card:hover {
  transform: translateY(-1px);
  border-color: rgba(47, 111, 85, 0.22);
  box-shadow: 0 16px 34px rgba(41, 40, 31, 0.08);
}

.featured-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  background: #eef2eb;
}

.featured-card strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 560;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.featured-card span {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.panel-title {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 520;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.hero-stats span {
  padding: 10px 8px;
  background: var(--wash);
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 460;
  text-align: center;
}

.hero-stats strong {
  display: block;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 640;
  line-height: 1.1;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-chips a {
  padding: 7px 9px;
  background: var(--soft);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 500;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip-row a {
  padding: 7px 9px;
  background: var(--soft);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 500;
}

.chip-row .is-dashed {
  background: transparent;
  border: 1px dashed var(--line);
  color: var(--muted);
}

.chip,
.gold-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 470;
}

.gold-chip {
  background: var(--warm);
  color: #9b5d18;
}

.chip.is-dashed {
  background: transparent;
  border: 1px dashed var(--line);
  color: var(--muted);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pagination a {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--wash);
  color: var(--muted);
  font-size: 0.9rem;
}

.pagination a.is-current {
  background: var(--ink);
  color: white;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 560;
  letter-spacing: 0.02em;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  text-wrap: balance;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 540;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.1rem;
  font-weight: 520;
  line-height: 1.28;
}

.lead,
.section-head p,
.list-row p,
.product-card p,
.detail-body p,
.note-box p,
.article-section p {
  color: var(--muted);
}

.lead {
  max-width: 620px;
  font-size: 1.06rem;
  font-weight: 390;
}

.disclosure {
  margin: 16px 0 0;
  padding: 10px 12px;
  background: rgba(52, 116, 91, 0.08);
  color: var(--accent-2);
  border-radius: 18px;
  font-size: 0.86rem;
  font-weight: 430;
}

.hero-inner .disclosure {
  grid-column: 1 / -1;
}

.section {
  padding: 24px 0 18px;
}

.section-head {
  margin-bottom: 16px;
}

.post-grid,
.product-list {
  display: grid;
  gap: 18px;
}

.post-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: start;
}

.board-row {
  grid-template-columns: 96px 1fr auto;
  align-items: center;
}

.post-card,
.product-card,
.detail-card,
.note-box,
.list-row {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.post-card:hover,
.product-card:hover,
.list-row:hover,
.related-card:hover {
  border-color: rgba(47, 111, 85, 0.28);
  box-shadow: 0 16px 34px rgba(41, 40, 31, 0.08);
  transform: translateY(-1px);
}

.post-card,
.note-box,
.list-row {
  padding: 0;
}

.post-card,
.list-row {
  overflow: hidden;
}

.post-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  min-height: 108px;
  align-items: center;
}

.post-thumb,
.post-thumb img,
.list-thumb img {
  width: 100%;
  object-fit: cover;
  background: #eef2eb;
}

.post-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 10px;
}

.post-thumb img {
  width: 78px;
  height: 78px;
  border-radius: 12px;
}

.post-card-body {
  padding: 12px 14px 12px 8px;
}

.post-card-body h2 {
  margin-bottom: 7px;
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  overflow-wrap: anywhere;
}

.post-card-body p {
  margin-bottom: 8px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.lead-mini {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.list-stack {
  display: grid;
  gap: 14px;
}

.list-row {
  display: grid;
  grid-template-columns: 104px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
}

.list-thumb img {
  aspect-ratio: 1 / 1;
  border-radius: 10px;
}

.list-row h3 {
  margin-bottom: 6px;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.list-row p:not(.eyebrow) {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  padding: 11px 16px;
  border-radius: 999px;
  background: #202018;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 720;
  white-space: nowrap;
  transition: transform 140ms ease, background 140ms ease;
}

.button:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.button.large {
  min-width: 174px;
  padding: 11px 18px;
}

.text-link {
  color: var(--accent);
  font-weight: 520;
}

.two-col {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.4fr 1fr;
}

.content-with-sidebar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 22px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 90px;
  display: grid;
  gap: 14px;
  padding-top: 28px;
}

.side-box {
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.side-box h2 {
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 540;
}

.category-list,
.keyword-cloud,
.mini-product-list {
  display: grid;
  gap: 8px;
}

.category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 10px;
  border-radius: 10px;
  background: var(--wash);
  color: var(--muted);
  font-weight: 460;
}

.category-list a.is-active,
.category-list a:hover {
  background: var(--accent);
  color: #fff;
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
}

.keyword-cloud a,
.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 470;
}

.badge {
  margin: 0 4px 6px 0;
  background: #f3f6ef;
  white-space: nowrap;
}

.badge.hot {
  background: var(--warm);
  color: #9b5d18;
}

.mini-product {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px;
  align-items: start;
}

.mini-product img {
  width: 54px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  background: #eef2eb;
}

.mini-product strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 520;
  line-height: 1.35;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.article-body {
  width: min(100%, 780px);
  margin: 0 auto;
  padding: 28px 0 8px;
  font-size: 1.04rem;
  line-height: 1.75;
}

.article-section {
  margin-top: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(221, 228, 216, 0.85);
  border-radius: var(--radius);
}

.article-section h2 {
  margin-bottom: 8px;
  font-size: 1.22rem;
  font-weight: 600;
}

.callout-section {
  background: linear-gradient(135deg, var(--soft), #fff);
  border-color: rgba(52, 116, 91, 0.18);
}

.article-body li + li {
  margin-top: 10px;
}

.checklist {
  margin: 0;
  padding-left: 18px;
}

.checklist li + li {
  margin-top: 10px;
}

.fit-list li {
  display: grid;
  gap: 4px;
}

.fit-list span {
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.table-wrap th,
.table-wrap td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
}

.table-wrap thead th {
  background: var(--soft);
  color: var(--text);
  font-size: .92rem;
}

.table-wrap tbody tr:last-child th,
.table-wrap tbody tr:last-child td {
  border-bottom: 0;
}

.product-list {
  gap: 12px;
}

.product-card {
  display: grid;
  grid-template-columns: 116px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 12px;
}

.guide-quick-summary {
  display: grid;
  gap: 18px;
  margin: 22px 0 28px;
  padding: 22px;
  border: 1px solid rgba(92, 123, 84, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f7fbf3 0%, #fff 70%);
  box-shadow: var(--shadow);
}

.guide-quick-copy h2 {
  margin: 4px 0 8px;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
}

.guide-quick-copy p {
  max-width: 720px;
}

.guide-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.guide-quick-grid article,
.guide-quick-products {
  border: 1px solid #e3eadf;
  border-radius: var(--radius);
  background: #fff;
}

.guide-quick-grid article {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.guide-quick-grid span {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: #edf5e9;
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 620;
}

.guide-quick-products {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) 1.2fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
}

.guide-quick-product-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.guide-quick-product {
  display: grid;
  gap: 6px;
  min-width: 0;
  color: inherit;
}

.guide-quick-product img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  background: #eef2eb;
}

.guide-quick-product span {
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 620;
}

.guide-quick-product strong {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 0.9rem;
}

.product-card-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #eef2eb;
  border-radius: 8px;
}

.product-card-body {
  padding: 0;
}

.product-card-body h2 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.product-card-body p {
  margin-bottom: 8px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card-actions {
  display: flex;
  min-width: 132px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.price {
  font-weight: 620;
}

.detail-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.1fr;
  overflow: hidden;
  margin-top: 28px;
}

.detail-media img {
  width: 100%;
  height: 100%;
  max-height: 430px;
  min-height: 300px;
  object-fit: cover;
  background: #f1ece4;
}

.detail-body {
  padding: 28px;
}

.detail-body .meta {
  margin-bottom: 4px;
  font-weight: 520;
}

.product-article {
  width: min(100%, 860px);
  padding-top: 22px;
}

.product-decision-panel {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(92, 123, 84, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f7fbf3 0%, #ffffff 66%);
  box-shadow: var(--shadow);
}

.section-head.compact {
  margin-bottom: 16px;
}

.section-head.compact h2 {
  margin: 4px 0 6px;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.section-head.compact p {
  max-width: 720px;
}

.product-decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.product-decision-card,
.product-judge-box {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid #e3eadf;
  border-radius: var(--radius);
  background: #fff;
}

.product-decision-card span {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: #eef6ea;
  color: #396348;
  font-size: 0.78rem;
  font-weight: 760;
}

.product-decision-card.is-caution span {
  background: #fff3e3;
  color: #8a4a14;
}

.product-decision-card strong {
  color: #233226;
  font-weight: 760;
  line-height: 1.45;
}

.product-decision-card p,
.product-tool-strip p,
.product-judge-box p,
.product-caution-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-tool-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(90, 126, 84, 0.16);
  border-radius: var(--radius);
  background: #fffdf7;
}

.product-tool-strip strong {
  display: block;
  margin-bottom: 4px;
  color: #243226;
  font-weight: 780;
}

.product-judge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}

.product-judge-box h3 {
  margin: 0;
  color: #244b34;
  font-size: 1rem;
}

.product-judge-box.is-caution {
  border-color: #f0ddc8;
  background: #fffaf2;
}

.product-judge-box.is-caution h3 {
  color: #8a4a14;
}

.product-caution-note {
  margin: 22px 0 0;
  padding: 18px;
  border-left: 4px solid #b66a24;
  border-radius: var(--radius);
  background: #fff8ed;
}

.product-caution-note h2 {
  margin: 0 0 8px;
  color: #7b3f12;
  font-size: 1.05rem;
}

.cta-box {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 24px 0 0;
}

.pagination a {
  min-width: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  text-align: center;
  font-weight: 480;
}

.pagination a.is-current {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.related-card {
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.related-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 10px;
  border-radius: 8px;
  background: #eef2eb;
}

.related-card strong {
  display: block;
  margin-bottom: 8px;
  line-height: 1.35;
  font-weight: 520;
  overflow-wrap: anywhere;
}

.guide-detail-hero {
  padding: 18px 0 12px;
}

.guide-detail-hero .container {
  max-width: 960px;
  padding: 24px 30px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 88% 20%, rgba(237, 245, 236, 0.78), transparent 15rem),
    #fff;
}

.guide-detail-hero h1 {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.guide-detail-hero .lead {
  max-width: 720px;
  font-size: 0.98rem;
  line-height: 1.75;
}

.guide-detail-hero .tag-row {
  margin-top: 14px;
}

.guide-detail-page {
  padding-top: 8px;
}

.guide-detail-page .content-with-sidebar {
  grid-template-columns: minmax(0, 760px) 250px;
  justify-content: center;
  gap: 28px;
}

.guide-detail-page .article-body {
  width: 100%;
  max-width: 760px;
  padding: 20px 0 6px;
  font-size: 1rem;
}

.guide-intro {
  color: #3d463d;
}

.guide-toc {
  max-width: 760px;
  margin: 0 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

.guide-toc .toc-title {
  padding: 13px 16px;
  color: #253327;
  font-weight: 760;
}

.guide-toc .toc-content {
  margin: 0;
  padding: 0 16px 14px 32px;
  color: #627063;
  font-size: 0.9rem;
}

.guide-detail-page .section {
  max-width: 760px;
  padding: 20px 0 14px;
}

.guide-detail-page .section-head {
  margin-bottom: 12px;
}

.guide-detail-page .section-head h2,
.guide-detail-page .article-body > h2,
.guide-detail-page .two-col h2 {
  font-size: 1.35rem;
  line-height: 1.35;
}

.guide-detail-page .section-head p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.guide-detail-page .table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.guide-detail-page table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.guide-detail-page th,
.guide-detail-page td {
  padding: 11px 13px;
  border-bottom: 1px solid var(--line);
  color: #4c564c;
  font-size: 0.88rem;
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
}

.guide-detail-page thead th {
  background: #f3f7f1;
  color: #2b3b2e;
  font-weight: 760;
}

.guide-note {
  max-width: 760px;
  margin: 16px 0;
  padding: 14px 16px;
  border: 1px solid #eadfce;
  border-left: 3px solid #d19b45;
  border-radius: 8px;
  background: #fff9ec;
}

.guide-note h4 {
  margin: 0 0 5px;
  color: #8a5a17;
  font-size: 0.95rem;
}

.guide-note p {
  margin: 0;
  color: #6a5537;
  font-size: 0.9rem;
}

.guide-detail-page .article-section {
  margin-top: 12px;
  padding: 16px;
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

.guide-detail-page .article-section h2 {
  font-size: 1.05rem;
}

.guide-detail-page .product-list {
  gap: 10px;
}

.guide-detail-page .product-card {
  grid-template-columns: 96px minmax(0, 1fr) 112px;
  gap: 14px;
  padding: 14px;
  border-radius: 8px;
  box-shadow: none;
}

.guide-detail-page .product-card-media img {
  border-radius: 7px;
}

.guide-detail-page .product-card-body h2 {
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.42;
}

.guide-detail-page .product-card-body p {
  margin-bottom: 5px;
  color: #687266;
  font-size: 0.86rem;
  line-height: 1.5;
}

.guide-detail-page .product-card-body p strong {
  color: #334735;
  font-weight: 760;
}

.guide-detail-page .product-card-actions {
  min-width: 0;
  gap: 8px;
}

.guide-detail-page .product-card-actions .button {
  min-width: 88px;
  padding: 8px 10px;
  border: 1px solid #cfdace;
  border-radius: 6px;
  background: #1f2c20;
  font-size: 0.78rem;
}

.guide-detail-page .price {
  color: #2d3a2d;
  font-size: 0.9rem;
}

.pillar-visual-brief {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin: 16px 0 20px;
}

.pillar-quick-answer,
.pillar-visual-grid,
.pillar-product-strip {
  border: 1px solid rgba(47, 111, 79, 0.16);
  border-radius: 14px;
  background: #fbfdf8;
  box-shadow: var(--shadow-soft);
}

.pillar-quick-answer {
  padding: 22px;
  background: linear-gradient(135deg, #f2f8ed, #fffaf0);
}

.pillar-quick-answer h2 {
  max-width: 620px;
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(1.28rem, 2.2vw, 1.9rem);
  line-height: 1.35;
}

.pillar-quick-answer p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.pillar-visual-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.86fr) minmax(0, 1.14fr);
  gap: 14px;
  padding: 18px;
  background: #fff;
}

.fridge-zone-map {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(180deg, #eef7ee, #f8fbf7);
  border: 1px solid rgba(47, 111, 79, 0.18);
}

.energy-routine-map {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f4f5eb, #fbfbf4);
  border: 1px solid rgba(132, 116, 45, 0.2);
}

.cleaning-routine-map {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(180deg, #eef7f4, #fbfdfb);
  border: 1px solid rgba(47, 111, 96, 0.18);
}

.desk-space-map {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(180deg, #eef4f7, #f9fbfc);
  border: 1px solid rgba(45, 94, 132, 0.18);
}

.chair-fit-map {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f0f2f8, #fbfbff);
  border: 1px solid rgba(77, 83, 139, 0.18);
}

.fridge-zone-map strong,
.energy-routine-map strong,
.cleaning-routine-map strong,
.desk-space-map strong,
.chair-fit-map strong {
  color: #263a2b;
  font-size: 1rem;
}

.fridge-zone,
.energy-zone,
.cleaning-zone,
.desk-zone,
.chair-zone {
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(47, 111, 79, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  color: #47604c;
  font-size: 0.9rem;
  font-weight: 700;
}

.energy-zone {
  border-color: rgba(132, 116, 45, 0.18);
  color: #66592a;
}

.cleaning-zone {
  border-color: rgba(47, 111, 96, 0.18);
  color: #3f6359;
}

.desk-zone {
  border-color: rgba(45, 94, 132, 0.18);
  color: #365c73;
}

.chair-zone {
  border-color: rgba(77, 83, 139, 0.18);
  color: #4e5279;
}

.fridge-zone.is-main,
.energy-zone.is-main,
.cleaning-zone.is-main,
.desk-zone.is-main,
.chair-zone.is-main {
  background: #2f6f4f;
  color: #fff;
}

.energy-zone.is-main {
  background: #8a7930;
}

.cleaning-zone.is-main {
  background: #2d6f63;
}

.desk-zone.is-main {
  background: #315f79;
}

.chair-zone.is-main {
  background: #575b93;
}

.pillar-check-cards {
  display: grid;
  gap: 10px;
}

.pillar-check-cards article {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.pillar-check-cards strong {
  color: var(--ink);
}

.pillar-check-cards span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.pillar-product-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 1.18fr);
  gap: 16px;
  align-items: center;
  padding: 18px;
}

.pillar-product-strip h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.45;
}

.pillar-product-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.pillar-product-tile {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.pillar-faq-section {
  margin-top: 18px;
}

.pillar-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.pillar-faq-grid article {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(47, 111, 79, 0.14);
  border-radius: 12px;
  background: #fffdf8;
}

.pillar-faq-grid strong {
  color: var(--ink);
  line-height: 1.45;
}

.pillar-faq-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.pillar-product-tile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
}

.pillar-product-tile span {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.35;
}

.pillar-deep-section {
  display: grid;
  gap: 18px;
  max-width: 760px;
  margin: 20px 0 6px;
}

.pillar-deep-section .section-head {
  padding: 22px;
  border: 1px solid rgba(47, 111, 79, 0.14);
  border-radius: 14px;
  background: linear-gradient(135deg, #fff8e8, #ffffff 72%);
  box-shadow: var(--shadow);
}

.pillar-deep-grid,
.pillar-mistake-grid,
.pillar-situation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.pillar-deep-grid article,
.pillar-mistake-grid article,
.pillar-situation-grid article,
.pillar-product-role {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid #e3eadf;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.pillar-deep-grid span,
.pillar-situation-grid span {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: #edf5ea;
  color: #396348;
  font-size: 0.78rem;
  font-weight: 760;
}

.pillar-deep-grid strong,
.pillar-mistake-grid strong,
.pillar-product-role strong {
  color: #223125;
  font-weight: 780;
  line-height: 1.45;
}

.pillar-deep-grid p,
.pillar-mistake-grid p,
.pillar-situation-grid p,
.pillar-product-role p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.pillar-mistake-block,
.pillar-situation-block {
  display: grid;
  gap: 12px;
}

.pillar-mistake-block h2,
.pillar-situation-block h2 {
  margin: 0;
  font-size: 1.25rem;
}

.pillar-product-role {
  border-left: 4px solid var(--accent);
  background: #fbfdf8;
}

.home-hero {
  padding: 16px 0 6px;
}

.home-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(390px, 0.86fr) minmax(560px, 1.4fr);
  gap: 42px;
  align-items: center;
  width: min(calc(100% - 32px), var(--max));
  min-height: 348px;
  margin: 0 auto;
  padding: 34px 38px 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 32% 30%, rgba(237, 245, 236, 0.72), transparent 13rem),
    linear-gradient(135deg, #fff 0%, #fbfbf8 100%);
  box-shadow: 0 20px 48px rgba(37, 52, 42, 0.05);
}

.home-hero-copy h1 {
  max-width: 520px;
  margin-bottom: 20px;
  color: #121712;
  font-size: clamp(2rem, 3.05vw, 2.58rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.home-hero-copy .lead {
  max-width: 430px;
  margin-bottom: 0;
  color: #5f675d;
  font-size: 1rem;
  line-height: 1.75;
  text-wrap: pretty;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.home-hero-card {
  position: relative;
  display: grid;
  min-height: 218px;
  overflow: hidden;
  border: 1px solid #e2e6df;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(36, 50, 38, 0.055);
}

.home-hero-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  background: #eef2eb;
}

.home-hero-card .today-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
  max-width: calc(100% - 16px);
  padding: 4px 7px;
  overflow: hidden;
  border-radius: 5px;
  background: rgba(31, 35, 31, 0.84);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-chip {
  display: inline-flex;
  width: fit-content;
  margin: 12px 12px 6px;
  padding: 5px 8px;
  border-radius: 5px;
  background: #eef5ed;
  color: #4b7656;
  font-size: 0.72rem;
  font-weight: 760;
}

.home-hero-card strong {
  display: -webkit-box;
  min-height: 43px;
  margin: 0 12px 8px;
  overflow: hidden;
  color: #151915;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.43;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-hero-card small {
  display: -webkit-box;
  margin: 0 12px 14px;
  overflow: hidden;
  color: #71796f;
  font-size: 0.78rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.home-hero-copy .hero-actions {
  flex-wrap: nowrap;
  gap: 12px;
}

.home-disclosure {
  grid-column: 1 / -1;
  position: static;
  margin-top: 6px;
}

.home-disclosure .disclosure {
  margin: 0;
  padding: 7px 10px;
  border-radius: 7px;
  background: rgba(237, 245, 236, 0.86);
  font-size: 0.74rem;
}

.home-main {
  padding-top: 8px;
}

.home-section {
  padding: 18px 0;
}

.home-section h2,
.home-section-head h2 {
  margin: 0;
  color: #151915;
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.problem-section {
  text-align: center;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.problem-card {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 72px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-align: left;
  box-shadow: 0 8px 20px rgba(36, 50, 38, 0.035);
}

.problem-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid #8bb184;
  border-radius: 50%;
  color: #5f915c;
  font-size: 1.25rem;
  font-weight: 800;
}

.problem-card strong,
.problem-card small {
  display: block;
}

.problem-card strong {
  color: #1e251d;
  font-size: 0.88rem;
  font-weight: 700;
}

.problem-card small {
  margin-top: 2px;
  color: #7d857b;
  font-size: 0.75rem;
  font-weight: 560;
}

.home-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.home-section-head a {
  color: #465347;
  font-size: 0.86rem;
  font-weight: 720;
}

.guide-row-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.guide-row-card {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  min-height: 104px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 9px 22px rgba(36, 50, 38, 0.035);
}

.guide-row-card:nth-child(4) {
  grid-column: auto;
}

.today-check {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 4px 0 10px;
  padding: 14px 18px;
  border: 1px solid #eadfce;
  border-radius: 8px;
  background: linear-gradient(90deg, #fff7e8, #f4faf1);
}

.today-check strong {
  flex: 0 0 auto;
  color: #8a5a17;
  font-weight: 850;
}

.today-check span {
  color: #425143;
  font-size: 0.94rem;
  line-height: 1.55;
}

.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 5px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

.guide-row-thumb img {
  width: 92px;
  height: 76px;
  object-fit: cover;
  border-radius: 7px;
  background: #eef2eb;
}

.guide-row-card h3 {
  margin: 0 0 5px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.guide-row-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #6c766b;
  font-size: 0.84rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.guide-row-card .home-chip {
  margin: 8px 0 0;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.tool-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 26px;
  align-items: center;
  min-height: 118px;
  padding: 22px 60px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.tool-icon {
  color: #669766;
  font-size: 4rem;
  font-weight: 300;
  line-height: 1;
}

.tool-card h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
  font-weight: 700;
}

.tool-card p {
  max-width: 280px;
  margin: 0 0 12px;
  color: #6b7569;
  font-size: 0.88rem;
  line-height: 1.55;
}

.button.secondary,
.button.ghost {
  border: 1px solid #cdd8ca;
  background: #fff;
  color: #1f3023;
}

.button.small {
  min-width: 132px;
  padding: 8px 16px;
  border-radius: 5px;
  background: var(--accent);
  font-size: 0.82rem;
}

.living-banner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 26px;
  align-items: center;
  min-height: 70px;
  margin-top: 14px;
  padding: 16px 210px 16px 230px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(251, 242, 223, 0.95), rgba(245, 250, 241, 0.96)),
    #fbf2df;
}

.living-banner strong {
  color: #31543d;
  font-size: 1rem;
  font-weight: 700;
}

.living-banner span {
  color: #4f5b4e;
  font-size: 0.88rem;
}

.living-banner a {
  min-width: 122px;
  padding: 9px 18px;
  border: 1px solid #d5ddd1;
  border-radius: 6px;
  background: #fff;
  color: #2e4534;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 760;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.compare-card {
  position: relative;
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 110px;
  padding: 14px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.compare-card img {
  width: 116px;
  height: 88px;
  object-fit: contain;
  border-radius: 7px;
  background: #fff;
}

.compare-card h3 {
  margin: 0 0 5px;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.38;
  word-break: keep-all;
}

.compare-card p {
  display: -webkit-box;
  margin: 0 0 10px;
  overflow: hidden;
  color: #6f786c;
  font-size: 0.82rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.button.ghost {
  min-width: 112px;
  padding: 7px 12px;
  border-radius: 5px;
  font-size: 0.8rem;
}

.latest-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.latest-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  min-height: 78px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.latest-card img {
  grid-row: span 3;
  width: 72px;
  height: 58px;
  object-fit: cover;
  border-radius: 7px;
}

.latest-card strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: 0.82rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.latest-card span,
.latest-card small {
  color: #7b8378;
  font-size: 0.72rem;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.48fr);
  gap: 24px;
  align-items: center;
  margin: 20px 0 28px;
  padding: 18px 28px;
  border: 1px solid #dfe7dd;
  border-radius: 8px;
  background: linear-gradient(90deg, #eef5ec, #f9fbf7);
}

.newsletter strong {
  color: #2e4934;
  font-size: 1.08rem;
  font-weight: 700;
}

.newsletter p {
  margin: 4px 0 0;
  color: #657064;
}

.newsletter form {
  display: flex;
  gap: 10px;
}

.newsletter input {
  width: 100%;
  border: 1px solid #d7dfd4;
  border-radius: 7px;
  padding: 12px 14px;
  font: inherit;
}

.newsletter button {
  min-width: 106px;
  border: 0;
  border-radius: 7px;
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.site-footer {
  padding: 30px 0 44px;
  background: #f3f4f0;
  color: #586156;
}

.guide-index-hero .lead {
  max-width: 680px;
}

.guide-index-page {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 10px 0 42px;
}

.guide-index-group {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.guide-index-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px 12px;
  border-bottom: 1px solid var(--line);
}

.guide-index-group-head h2 {
  margin: 0;
  font-size: 1.05rem;
}

.guide-index-group-head span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.guide-index-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-index-list li + li {
  border-top: 1px solid #eef1ec;
}

.guide-index-list a {
  display: grid;
  gap: 3px;
  padding: 13px 20px;
}

.guide-index-list a:hover {
  background: var(--wash);
}

.guide-index-list strong {
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.45;
}

.guide-index-list span {
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 58px;
}

.footer-brand,
.footer-grid strong {
  display: block;
  margin-bottom: 12px;
  color: #1d261f;
  font-weight: 700;
}

.footer-grid p {
  max-width: 260px;
  color: #687166;
  font-size: 0.86rem;
}

.footer-grid a,
.footer-grid small {
  display: block;
  margin-top: 8px;
  color: #657064;
  font-size: 0.82rem;
}

@media (max-width: 820px) {
  .site-nav {
    align-items: flex-start;
    border-radius: 18px;
    flex-direction: column;
    gap: 10px;
    padding: 12px 0;
  }

  .nav-links {
    gap: 14px;
    justify-content: flex-start;
    width: 100%;
  }

  .site-search {
    width: 100%;
  }

  .nav-tool {
    width: 100%;
    text-align: center;
  }

  .home-hero-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 22px;
  }

  .home-hero-copy h1 {
    max-width: none;
    font-size: 2.1rem;
  }

  .home-hero-copy .hero-actions {
    flex-wrap: wrap;
  }

  .home-hero-copy .button {
    width: 100%;
  }

  .today-check {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .home-hero-grid,
  .problem-grid,
  .guide-row-grid,
  .tool-grid,
  .compare-grid,
  .latest-grid,
  .newsletter,
  .guide-index-page,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-card {
    grid-template-columns: 120px 1fr;
    min-height: 128px;
  }

  .home-hero-card img {
    height: 100%;
    aspect-ratio: auto;
  }

  .home-hero-card .today-badge {
    max-width: 104px;
  }

  .guide-row-card:nth-child(4) {
    grid-column: auto;
  }

  .tool-card {
    grid-template-columns: 70px 1fr;
    padding: 18px;
  }

  .tool-icon {
    font-size: 3rem;
  }

  .living-banner {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
    text-align: center;
  }

  .compare-card {
    grid-template-columns: 110px 1fr;
  }

  .newsletter form {
    flex-direction: column;
  }

  .hero,
  .subhero {
    padding-top: 24px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    display: none;
  }

  .content-with-sidebar {
    grid-template-columns: 1fr;
  }

  .guide-quick-grid,
  .guide-quick-products,
  .guide-quick-product-strip {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    padding-top: 0;
  }

  .post-grid {
    grid-template-columns: 1fr;
  }

  .post-card {
    grid-template-columns: 82px 1fr;
    min-height: 96px;
  }

  .post-thumb img {
    width: 70px;
    height: 70px;
  }

  .hero-inner,
  .subhero .container {
    padding: 22px;
  }

  .two-col,
  .detail-card,
  .list-row,
  .product-card {
    grid-template-columns: 1fr;
    display: grid;
  }

  .product-card {
    grid-template-columns: 84px 1fr;
    gap: 12px;
  }

  .list-row {
    grid-template-columns: 76px 1fr;
  }

  .list-row .button {
    grid-column: 1 / -1;
  }

  .product-card-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
  }

  .cta-box {
    flex-direction: column;
    align-items: stretch;
  }
}

/* --- Sallim Note Phase 2 Redesign Additional Styles --- */

/* 1. 홈 화면 카테고리 네비게이션 그리드 */
.category-entrance {
  margin: 2rem 0;
}
.category-entrance h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #1e293b;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
  cursor: pointer;
}
.category-card span.icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.category-card strong {
  font-size: 0.95rem;
  color: #334155;
}
@media (hover: hover) {
  .category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
    border-color: #047857;
  }
}
@media (hover: none) {
  .category-card:active {
    transform: scale(0.98);
    background-color: #f8fafc;
  }
}

/* 2. 접이식 목차 박스 (TOC) */
.toc-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem;
  margin: 1.5rem 0;
}
.toc-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.05rem;
  color: #1e293b;
  cursor: pointer;
  user-select: none;
}
.toc-title::after {
  content: "▼";
  font-size: 0.8rem;
  transition: transform 0.2s;
}
.toc-box.open .toc-title::after {
  transform: rotate(180deg);
}
.toc-content {
  display: none;
  margin-top: 0.75rem;
  padding-left: 1.25rem;
}
.toc-box.open .toc-content {
  display: block;
}
.toc-content li {
  margin-bottom: 0.4rem;
  list-style: decimal;
}
.toc-content a {
  color: #047857;
  text-decoration: underline;
  font-size: 0.95rem;
}

/* 3. 모바일 가로 스크롤 테이블 래퍼 */
.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin: 1rem 0;
  background: #ffffff;
}
.table-wrapper table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
}
.table-wrapper th, .table-wrapper td {
  padding: 12px 14px;
  border-bottom: 1px solid #f1f5f9;
  text-align: left;
}

/* 4. E-E-A-T 인포박스 */
.expert-tip-box {
  background-color: #fff7ed; /* 따뜻한 살구/주황 오렌지 50 */
  border-left: 4px solid #c2410c; /* 테라코타 주황 */
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(194, 65, 12, 0.03);
}
.expert-tip-box h4 {
  color: #c2410c;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  font-size: 1.05rem;
}
.expert-tip-box p {
  margin: 0;
  font-size: 0.95rem;
  color: #4338ca; /* Indigo 700 차분한 느낌 */
  line-height: 1.6;
}

/* 5. fit-list 카드 그리드 */
.fit-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 1rem 0;
}
.fit-card {
  border: 1px solid #e2e8f0;
  background: #ffffff;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.01);
}
.fit-card strong {
  display: block;
  font-size: 1rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
}
.fit-card span {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
}

.cluster-box {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 22px;
  border: 1px solid rgba(47, 111, 79, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f4faf2, #ffffff);
  box-shadow: var(--shadow);
}

.cluster-box h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 760;
}

.cluster-box p {
  margin: 0;
  color: var(--muted);
}

.cluster-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.cluster-links a {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #31543d;
  font-size: 0.88rem;
  font-weight: 680;
}

.cluster-links a.is-current {
  border-color: rgba(47, 111, 79, 0.35);
  background: #2f6f4f;
  color: #fff;
}

.category-hub-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.category-hub-links a {
  padding: 8px 12px;
  border: 1px solid rgba(47, 111, 79, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #31543d;
  font-size: 0.9rem;
  font-weight: 700;
}

.category-hub-links a.is-current,
.category-hub-links a:hover {
  background: var(--accent);
  color: #fff;
}

.category-focus-box {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 22px;
  align-items: center;
  margin: 0 0 24px;
  padding: 24px;
  border: 1px solid rgba(47, 111, 79, 0.16);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #f5faf2 0%, #fffaf0 100%);
  box-shadow: var(--shadow-soft);
}

.category-focus-box h2 {
  max-width: 520px;
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(1.28rem, 2vw, 1.8rem);
  line-height: 1.35;
}

.category-focus-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.category-concern-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 24px;
}

.category-concern-rail article {
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 188px;
  padding: 18px;
  border: 1px solid rgba(84, 126, 92, 0.16);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.category-concern-rail article:first-child {
  background: linear-gradient(135deg, #fff8e8, #ffffff 72%);
}

.category-concern-rail span {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: #edf5ea;
  color: #396348;
  font-size: 0.8rem;
  font-weight: 760;
}

.category-concern-rail strong {
  color: #223125;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 780;
  line-height: 1.45;
}

.category-concern-rail p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.category-followup-links {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.category-followup-links a {
  display: grid;
  gap: 3px;
  padding: 10px 12px;
  border: 1px solid #e2eadf;
  border-radius: 7px;
  background: #f8fbf5;
}

.category-followup-links strong {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 720;
}

.category-followup-links span {
  padding: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 520;
}

.focus-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.focus-link-grid a {
  display: grid;
  gap: 4px;
  min-height: 82px;
  padding: 14px;
  border: 1px solid rgba(47, 111, 79, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.focus-link-grid strong {
  font-size: 0.96rem;
}

.focus-link-grid span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

@media (max-width: 760px) {
  .category-focus-box {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .category-concern-rail {
    grid-template-columns: 1fr;
  }

  .category-concern-rail article {
    min-height: auto;
  }

  .focus-link-grid {
    grid-template-columns: 1fr;
  }

  .pillar-visual-grid,
  .pillar-product-strip {
    grid-template-columns: 1fr;
  }

  .pillar-product-tiles {
    grid-template-columns: repeat(3, minmax(72px, 1fr));
  }

  .pillar-faq-grid {
    grid-template-columns: 1fr;
  }

  .pillar-deep-grid,
  .pillar-mistake-grid,
  .pillar-situation-grid {
    grid-template-columns: 1fr;
  }
}

.static-hero .lead {
  max-width: 680px;
}

.static-page {
  display: grid;
  gap: 20px;
  padding: 28px 0 56px;
}

.static-intro,
.static-note {
  display: grid;
  gap: 8px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f7fbf4, #ffffff);
  box-shadow: var(--shadow);
}

.static-intro.warm {
  background: linear-gradient(135deg, #fff7e8, #ffffff);
}

.static-intro strong,
.static-note strong {
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 700;
}

.check-progress {
  width: fit-content;
  margin-top: 4px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eaf4e8;
  color: #31543d;
  font-weight: 720;
}

.checklist-purpose {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.checklist-purpose article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(84, 126, 92, 0.2);
  border-radius: var(--radius);
  background: #fffdf8;
  box-shadow: var(--shadow);
}

.checklist-purpose span {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: #edf5ea;
  color: #396348;
  font-size: 0.82rem;
  font-weight: 760;
}

.checklist-purpose strong {
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 780;
}

.checklist-purpose p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.checklist-example {
  background: linear-gradient(135deg, #fff8e9, #ffffff 68%);
}

.static-card-grid,
.saving-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.static-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.static-card h2 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  font-weight: 720;
}

.static-card p {
  margin: 0;
  color: var(--muted);
}

.static-wide {
  grid-column: 1 / -1;
}

.interactive-checklist,
.number-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.number-list {
  padding-left: 1.2rem;
  list-style: decimal;
}

.interactive-checklist label {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: var(--ink);
  line-height: 1.55;
}

.interactive-checklist input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--accent);
  flex: 0 0 auto;
}

@media (max-width: 720px) {
  .checklist-purpose,
  .static-card-grid,
  .saving-grid {
    grid-template-columns: 1fr;
  }

  .static-intro,
  .static-note,
  .static-card {
    padding: 18px;
  }
}
