@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500&family=Inter:wght@300;400;500&display=swap");

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #fdfdfb;
  color: #222;
  line-height: 1.8;
}

/* ===== Layout ===== */
.post-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
}

@media (max-width: 900px) {
  .post-layout {
    grid-template-columns: 1fr;
  }
}

/* ===== Sidebar ===== */
.meta-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #444;
  padding-top: 1rem;
}

.back-link {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 0.6rem;
  border-bottom: 1px solid transparent;
  transition: 0.2s;
}
.back-link:hover {
  border-color: #000;
}

.meta-info p {
  margin: 0.3rem 0;
}

.meta-note {
  font-style: italic;
  color: #777;
  margin-top: 0.8rem;
  line-height: 1.7;
}

/* ===== Main Body ===== */
.post-body {
  max-width: 740px;
  margin: 0 auto;
}

.post-title {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

/* ===== Hero ===== */
.hero img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 0.6rem;
}
.hero figcaption {
  font-size: 0.85rem;
  color: #666;
  font-style: italic;
  margin-bottom: 1.8rem;
}

/* ===== Text ===== */
.post-body p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1.5rem;
}

blockquote {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-style: italic;
  color: #000;
  margin: 2.5rem 0;
  padding-left: 1rem;
  border-left: 3px solid #000;
}

/* ===== Footer ===== */
hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 3rem 0;
}

.next-prev {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}

.next-prev a {
  color: #666;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: 0.2s;
}
.next-prev a:hover {
  color: #000;
  border-color: #000;
}

.post-footer {
  text-align: center;
  padding-top: 3rem;
  font-size: 0.9rem;
  color: #777;
}

.category-link {
  color: #444;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: 0.2s;
}

.category-link:hover {
  color: #000;
  border-bottom-color: #aaa;
}
