@import url('../style.css');

.post-nav {
  max-width: 920px;
  margin: 0 auto;
  padding: 28px 40px 0;
}
.post-nav a {
  font-size: 13px;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid var(--border-soft);
  background: var(--bg-2);
  transition: background 0.2s;
}
.post-nav a:hover { background: var(--bg-soft); }

.post-hero {
  max-width: 920px;
  margin: 30px auto 0;
  padding: 0 40px;
}
.post-hero .eyebrow { margin-bottom: 18px; }
.post-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 18px;
}
.post-hero h1 em { color: var(--forest); }
.post-meta {
  display: flex;
  gap: 14px;
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}
.post-meta span:not(:last-child)::after {
  content: '·';
  margin-left: 14px;
  opacity: 0.5;
}

.post-cover {
  max-width: 1120px;
  margin: 40px auto 0;
  padding: 0 40px;
}
.post-cover .cover {
  aspect-ratio: 16 / 7;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-soft);
  background-image: linear-gradient(135deg, #e0ecc3 0%, #063a21 100%);
  position: relative;
  overflow: hidden;
}

.post-body {
  max-width: 720px;
  margin: 60px auto 0;
  padding: 0 40px 120px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.post-body h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.15;
  margin: 56px 0 18px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.post-body h2 em { color: var(--forest); font-style: italic; }
.post-body h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 19px;
  margin: 36px 0 12px;
  color: var(--ink);
}
.post-body p { margin-bottom: 18px; }
.post-body ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 22px;
}
.post-body ul li { margin-bottom: 8px; }
.post-body blockquote {
  border-left: 3px solid var(--copper);
  padding: 8px 0 8px 22px;
  margin: 28px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.4;
}
.post-body strong { color: var(--ink); }
.post-body a { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }

.post-foot {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 40px 100px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.post-foot .btn { font-size: 14px; }

@media (max-width: 768px) {
  .post-nav, .post-hero, .post-cover, .post-body, .post-foot { padding-left: 20px; padding-right: 20px; }
}
