/* Container + rhythm */
.post-single .post-article {
  max-width: 1320px; /* narrow column */
  margin: 0 auto;
  padding: 32px 0 40px;
}

/* Title */
.post-article__title {
  margin: 0 0 6px;
  font-size: 28px; /* ~ your mock */
  line-height: 1.2;
  font-weight: 700;
  color: #1f2d3d;
}

/* Date line (weekday + date) */
.post-article__meta {
  margin-bottom: 40px;
  color: #6b6f82;
  font-weight: 600;
}

/* Content typography */
.post-article__content {
  color: #2a2f3a;
  font-size: 1rem;
  line-height: 1.7;
}
.post-article__content p {
  margin: 0 0 1rem;
}
.post-article__content img,
.post-article__content video {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}
.post-article__content figure {
  margin: 1rem 0;
}
.post-article__content figcaption {
  color: #6b6f82;
  font-size: 0.9rem;
  text-align: center;
}

/* Responsive */
@media (max-width: 640px) {
  .post-article__title {
    font-size: 24px;
  }
  .post-single .post-article {
    padding: 24px 0 32px;
  }
}
