.post-body {
  background: linear-gradient(140deg, rgba(11, 56, 37, 0.92), rgba(18, 70, 44, 0.85)),
    url('../stripes-background.png');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--sand-100);
}

.post-header {
  padding: clamp(3.5rem, 7vw, 5rem) 0 2rem;
}

.post-header__inner {
  display: grid;
  gap: 2rem;
}

.post-header .brand {
  color: var(--sand-100);
}

.post-header .brand img {
  border-radius: 16px;
  padding: 0.35rem;
  background: rgba(251, 249, 241, 0.88);
}

.post-hero h1 {
  color: var(--sand-100);
  margin-bottom: 0.8rem;
}

.post-meta {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.74);
}

.post-tag {
  display: inline-flex;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
  color: var(--gold-500);
  margin-bottom: 1rem;
  font-weight: 600;
}

.post-main {
  flex: 1;
  padding: 0 0 clamp(3rem, 7vw, 5rem);
}

.post-content {
  background: rgba(251, 249, 241, 0.94);
  color: var(--stone-500);
  border-radius: var(--radius-card);
  padding: clamp(2.4rem, 5vw, 3rem);
  box-shadow: var(--shadow-soft);
  margin: 0 auto;
  max-width: 760px;
}

.post-content h2 {
  color: var(--green-800);
  margin-top: 2.8rem;
  margin-bottom: 1rem;
}

.post-content .lede {
  font-size: 1.2rem;
  color: var(--stone-500);
}

.post-content ul {
  padding-left: 1.4rem;
  list-style: disc;
  color: var(--stone-300);
}

.post-content li {
  margin-bottom: 0.7rem;
}

.post-cta {
  margin-top: 2.5rem;
  text-align: center;
}

.post-footer {
  padding: 2rem 0 3rem;
  text-align: center;
}

.post-footer .text-link {
  color: var(--gold-500);
  font-weight: 600;
}

@media (max-width: 640px) {
  .post-content {
    padding: 2rem;
  }
}

