body { min-height: 100vh; }

.nav-logo { text-decoration: none; }

.post-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem;
}

.back-link {
  display: inline-block;
  padding: 1.5rem 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.15s;
}

.back-link:hover { opacity: 1; }

.post-header { padding: 2rem 0 1.75rem; }

.post-tag {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deep-rose);
  font-weight: 500;
  margin-bottom: 12px;
}

.post-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 300;
  font-style: italic;
  color: var(--espresso);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.byline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.7;
  letter-spacing: 0.04em;
}

.byline-sep { opacity: 0.5; }

.banner {
  margin: 0.25rem 0 2.5rem;
  border-radius: 8px;
  overflow: hidden;
}

.banner img { width: 100%; display: block; max-height: 420px; object-fit: cover; }

.banner-placeholder {
  height: 260px;
  background: linear-gradient(145deg, var(--blush) 0%, #e8ccc6 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}

.banner-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(158,92,107,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(196,181,168,0.15) 0%, transparent 40%);
}

.banner-placeholder-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-style: italic;
  color: var(--dusty-rose);
  opacity: 0.5;
  position: relative;
}

.banner-placeholder span {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--deep-rose);
  opacity: 0.45;
  position: relative;
}

.post-body { padding: 0 0 4rem; }

.post-body a {
  color: var(--deep-rose);
  text-decoration: none;
  border-bottom: 1px solid var(--blush);
  transition: color 0.2s, border-color 0.2s;
}

.post-body a:hover { border-bottom-color: var(--deep-rose); }
.post-body a:active { color: #8a4d5a; }
.post-body a:focus-visible { outline: 2px solid var(--dusty-rose); outline-offset: 3px; border-radius: 2px; }

.post-body p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--espresso);
  opacity: 0.85;
  margin-bottom: 1.4rem;
}

.post-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--espresso);
  margin: 2.5rem 0 0.75rem;
  line-height: 1.2;
}

.post-body ul {
  margin: 0 0 1.4rem 1.25rem;
  padding: 0;
}

.post-body ul li {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--espresso);
  opacity: 0.85;
  margin-bottom: 0.4rem;
  padding-left: 0.25rem;
}

.post-body ul li::marker {
  color: var(--deep-rose);
}

.post-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--espresso);
  margin: 2rem 0 0.5rem;
}

blockquote {
  border-left: 2px solid var(--deep-rose);
  padding: 0.25rem 0 0.25rem 1.5rem;
  margin: 2rem 0;
}

blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  opacity: 0.9 !important;
  margin: 0 !important;
  line-height: 1.5;
}

.post-footer {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.15s;
}

a.post-footer:hover { opacity: 0.7; }

.next-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--deep-rose);
  opacity: 0.8;
  margin-bottom: 6px;
}

.next-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--espresso);
}

.next-arrow {
  font-size: 1.25rem;
  color: var(--deep-rose);
  opacity: 0.6;
  text-decoration: none;
}

.next-arrow:hover { opacity: 1; }

@media (max-width: 640px) {
  .post-wrap { padding: 0 1.25rem; }
  .post-footer { flex-direction: column; align-items: flex-start; gap: 12px; }
}
