
:root {
  --off-white: #faf9f7;
  --charcoal: #2d2d2d;
  --charcoal-dark: #1a1a1a;
  --accent: #b8866b;
  --accent-light: #d4a98a;
  --text-secondary: #6b6560;
  --text-light: #9a928a;
  --transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  max-width: 900px; margin: 0 auto; padding: 12px 20px;
  font-size: .78rem; color: var(--text-light);
}
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--accent); }

/* ===== Article ===== */
.article { max-width: 780px; margin: 0 auto; padding: 48px 20px; }
.article-header { margin-bottom: 32px; }
.article-header h2 {
  font-size: 1.4rem; font-weight: 400; color: var(--charcoal);
  margin-bottom: 8px; line-height: 1.6;
}
.article-header .meta { font-size: .78rem; color: var(--text-light); margin-bottom: 16px; }
.article-header .tags { margin-bottom: 8px; }
.article-header .tag {
  display: inline-block; background: var(--off-white);
  border: 1px solid rgba(0,0,0,0.06); padding: 2px 10px;
  border-radius: 12px; font-size: .68rem; color: var(--text-light); margin: 2px;
}

/* ===== Content ===== */
.content h3 {
  font-size: 1.1rem; font-weight: 500; color: var(--charcoal);
  margin: 36px 0 16px; padding-bottom: 8px;
  border-bottom: 1px solid var(--accent); letter-spacing: .06em;
}
.content h4 {
  font-size: .95rem; font-weight: 500; color: var(--accent);
  margin: 24px 0 8px;
}
.content p { margin-bottom: 16px; font-size: .88rem; color: var(--charcoal); }
.content ul, .content ol { margin: 0 0 16px 24px; font-size: .88rem; }
.content li { margin-bottom: 4px; }
.content a { color: var(--accent); }
.content a:hover { text-decoration: underline; }

.highlight-box {
  background: #fff; border-left: 3px solid var(--accent);
  padding: 16px 20px; border-radius: 0 4px 4px 0;
  margin: 20px 0; font-size: .88rem;
}
.note-box {
  background: #fff; border: 1px solid rgba(0,0,0,0.06);
  border-radius: 4px; padding: 16px 20px;
  margin: 20px 0; font-size: .82rem; color: var(--text-secondary);
}

.article-figure { margin: 24px 0; text-align: center; }
.article-figure img {
  width: 100%; max-width: 460px; height: auto;
  border-radius: 4px; border: 1px solid rgba(0,0,0,0.06);
}
.article-figure figcaption {
  margin-top: 8px; font-size: .74rem; color: var(--text-light);
}

.recipe-card {
  background: #fff; border-radius: 4px; padding: 24px;
  border: 1px solid rgba(0,0,0,0.06); border-top: 2px solid var(--accent);
  margin-bottom: 20px;
}
.recipe-card h4 {
  color: var(--charcoal); font-size: 1rem; font-weight: 500; margin: 0 0 12px;
}
.recipe-card .recipe-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 12px; font-size: .8rem; color: var(--text-secondary);
}
.recipe-card .recipe-meta span {
  background: var(--off-white); padding: 2px 10px; border-radius: 10px;
}
.recipe-card .steps {
  counter-reset: step; list-style: none; margin: 0; padding: 0;
}
.recipe-card .steps li {
  counter-increment: step; padding: 8px 0 8px 40px;
  position: relative; font-size: .82rem;
  border-bottom: 1px solid var(--off-white);
}
.recipe-card .steps li:last-child { border-bottom: none; }
.recipe-card .steps li::before {
  content: counter(step); position: absolute; left: 0; top: 8px;
  width: 28px; height: 28px;
  background: var(--charcoal); color: var(--accent-light);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: .72rem;
}

.tips-nav-links {
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.tips-nav-links a { font-size: .82rem; color: var(--accent); }
.tips-nav-links a:hover { text-decoration: underline; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
.article { padding: 32px 20px; }
}
