/* ── Post layout ── */
.post-main {
  max-width: 680px;
  margin: 0 auto;
  padding: 2rem 2rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.back-link {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}

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

.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.post-date {
  font-size: 12px;
  font-weight: 500;
  color: var(--red);
  letter-spacing: 0.05em;
}

.post-location {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.post-location i {
  font-size: 0.7rem;
  color: var(--red);
}

.post-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.25;
}

.post-hero-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

/* ── Post body ── */
.post-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.post-body p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
}

.post-body em {
  font-style: italic;
  color: var(--text);
}

.post-inline-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;

}

/* ── Emphasis ── */
.em-founder {
  color: var(--red);
  font-weight: 400;
}

/* ── Back to top ── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .top-pill a {
    font-size: 11px;
    padding: 5px 10px;
  }

  .post-title {
    font-size: 1.5rem;
  }

  .post-hero-img {
    height: 220px;
  }

  .post-inline-img {
    height: 180px;
  }

  .post-main {
    padding: 1.5rem 1rem 2rem;
  }
}