.post-page{
  background:#f7f7f5;
  color:#111827;
}

.post-hero{
  padding:72px 0 28px;
}

.post-meta{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:18px;
  color:#6b7280;
}

.post-cat{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  padding:0 14px;
  border:1px solid #d9dde5;
  border-radius:999px;
  background:#fff;
  font-size:.85rem;
  font-weight:800;
  color:#1f2937;
}

.post-title{
  margin:0;
  font-size:clamp(2rem, 5vw, 4rem);
  line-height:1.14;
}

.post-lead{
  margin:20px 0 0;
  max-width:820px;
  color:#6b7280;
  font-size:1rem;
  line-height:1.9;
}

.post-cover{
  padding-bottom:24px;
}

.post-cover__image{
  aspect-ratio:16 / 9;
  overflow:hidden;
  border-radius:30px;
  background:#e5e7eb;
}

.post-cover__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.post-content{
  padding-top:18px;
  padding-bottom:80px;
}

.post-article{
  max-width:860px;
  font-size:1rem;
  line-height:2.1;
  color:#1f2937;
}

.post-back{
  margin-top:40px;
}

.post-back__link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 18px;
  border-radius:999px;
  text-decoration:none;
  background:#fff;
  color:#111827;
  border:1px solid #d9dde5;
  font-weight:800;
}

@media (max-width: 767px){
  .post-hero{
    padding:56px 0 22px;
  }

  .post-cover__image{
    border-radius:20px;
  }

  .post-article{
    font-size:.95rem;
    line-height:2;
  }
}