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

.post-container {
  max-width: 620px;
  margin: 0 auto;
  padding: 48px 24px 96px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 48px;
  transition: color 0.15s;
}

.back-link:hover { color: var(--text); }

.back-link svg {
  width: 14px;
  height: 14px;
}

.post-title {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.3px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 40px;
}

.post-dot { opacity: 0.5; }

.post-body {
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--text);
}

.post-body p { margin-bottom: 20px; }
.post-body p:last-child { margin-bottom: 0; }

.post-body h2 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 36px 0 12px;
}

.post-body h3 { margin-top: 1.5rem; }

@media (max-width: 480px) {
  .post-container { padding: 32px 20px 72px; }
}
