/* Hip Green Scene — article stylesheet */
:root {
  --green: #2D7A3E;
  --green-dark: #1f5a2c;
  --orange: #E76F51;
  --cream: #FAF7F2;
  --ink: #1a2c1f;
  --muted: #6b7565;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, "PingFang TC", "Microsoft JhengHei", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.85;
  font-size: 17px;
}
.wrap { max-width: 760px; margin: 0 auto; padding: 0 22px; }
.wrap-wide { max-width: 1180px; margin: 0 auto; padding: 0 22px; }

/* Site top */
.site-top { background: var(--cream); padding: 22px 0; border-bottom: 1px solid #e8e2d6; }
.site-top .row { display: flex; justify-content: space-between; align-items: center; }
.brand { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 24px; color: var(--green); text-decoration: none; }
.brand .leaf { color: var(--orange); }
.menu { display: flex; gap: 24px; font-size: 14px; }
.menu a { color: var(--ink); text-decoration: none; padding-bottom: 4px; }
.menu a:hover { border-bottom: 2px solid var(--orange); color: var(--green); }

/* Article header */
.art-head { padding: 60px 0 30px; text-align: center; }
.crumb { font-size: 12px; color: var(--orange); letter-spacing: 2px; font-weight: 600; margin-bottom: 14px; }
h1.art-title { font-family: 'Playfair Display', serif; font-size: 38px; line-height: 1.25; color: var(--ink); max-width: 760px; margin: 0 auto 18px; }
.byline { font-size: 14px; color: var(--muted); }
.byline strong { color: var(--green); }

/* Hero image */
.hero-img {
  margin: 30px auto 50px;
  max-width: 920px;
  aspect-ratio: 16/8;
  background: linear-gradient(135deg, #c8e6c9 0%, #ffccbc 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Playfair Display', serif; font-size: 80px;
  overflow: hidden;
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  border-radius: 6px;
}

/* Content */
article.content { padding-bottom: 70px; }
.content p { margin-bottom: 22px; }
.content .lede {
  font-size: 19px;
  color: var(--green-dark);
  border-left: 4px solid var(--orange);
  padding: 4px 0 4px 20px;
  margin-bottom: 36px;
  font-weight: 500;
}
.content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--green);
  margin: 50px 0 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e8e2d6;
}
.content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  color: var(--green-dark);
  margin: 32px 0 12px;
}
.content ul, .content ol { margin: 0 0 22px 28px; }
.content li { margin-bottom: 8px; }
.content a { color: var(--orange); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.content a:hover { color: var(--green); }
.content blockquote {
  margin: 24px 0;
  padding: 18px 26px;
  background: #fff;
  border-left: 4px solid var(--green);
  font-style: italic;
  color: var(--green-dark);
  border-radius: 0 4px 4px 0;
}
.content table {
  width: 100%; border-collapse: collapse; margin: 22px 0;
  background: #fff; font-size: 15px;
}
.content th, .content td { border: 1px solid #e8e2d6; padding: 10px 14px; text-align: left; vertical-align: top; }
.content th { background: var(--green); color: #fff; font-weight: 600; }
.content tr:nth-child(even) td { background: #fafdf9; }
.content .figure {
  margin: 30px 0;
  background: linear-gradient(135deg, #b8d8c0, #f4a261);
  aspect-ratio: 16/8;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Playfair Display', serif; font-size: 48px;
}
.content .figure-cap {
  text-align: center; font-size: 13px; color: var(--muted); margin-top: -18px; margin-bottom: 30px; font-style: italic;
}

/* Author bio */
.author-bio {
  margin: 60px 0 0;
  padding: 30px;
  background: #fff;
  border-radius: 6px;
  border-top: 4px solid var(--green);
  display: flex; gap: 20px; align-items: center;
}
.author-bio .av { width: 70px; height: 70px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), #f4a261); color: #fff; font-family: 'Playfair Display', serif; font-size: 34px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.author-bio .info strong { color: var(--green); display: block; margin-bottom: 4px; font-size: 16px; }
.author-bio .info span { font-size: 14px; color: var(--muted); }

/* References */
.refs {
  margin-top: 40px;
  padding: 24px;
  background: #fafdf9;
  border-left: 4px solid var(--green);
  border-radius: 4px;
}
.refs strong { color: var(--green); display: block; margin-bottom: 10px; }
.refs ul { margin: 0 0 0 22px; }
.refs li { font-size: 14px; margin-bottom: 6px; }

/* Footer */
footer.site-foot { background: #f1ede1; padding: 50px 0 30px; margin-top: 60px; border-top: 4px solid var(--green); text-align: center; color: var(--muted); font-size: 13px; }
footer.site-foot a { color: var(--green); }

@media (max-width: 768px) {
  h1.art-title { font-size: 28px; }
  .content h2 { font-size: 22px; }
  body { font-size: 16px; }
}
