.post {
  padding: 40px 0 80px;
}

.post__article {
  max-width: 800px;
}

.post__header {
  margin-bottom: 24px;
}

.post__title {
  font-size: var(--text-3xl);
  line-height: var(--leading-tight);
  color: var(--color-secondary);
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.post__date {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.post__cover {
  margin-bottom: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 420px;
}

.post__cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post__content {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text);
  margin-bottom: 40px;
}

.post__content p {
  margin-bottom: 16px;
}

.post__content h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--color-secondary);
  margin: 32px 0 12px;
}

.post__content h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-md);
  color: var(--color-secondary);
  margin: 24px 0 10px;
}

.post__content ul,
.post__content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.post__content li {
  margin-bottom: 6px;
}

.post__content a {
  color: var(--color-primary);
  text-decoration: underline;
}

.post__content img {
  max-width: 100%;
  border-radius: var(--radius-md);
  margin: 16px 0;
}

.post__back {
  display: inline-flex;
}
