.post {
  font-family: var(--serif) !important;
}

.post header {
  margin-bottom: 18px;
}

.post .content {
  font-size: 1.06rem;
}

.post h1,
.post .content h1,
.post .content h2,
.post .content h3,
.post .content h4,
.post .content h5,
.post .content h6 {
  font-family: var(--serif) !important;
}

.post h1 {
  font-size: 2rem;
  line-height: 1.25;
}

.post p,
.post li,
.post blockquote,
.post time,
.post .meta,
.post .update {
  font-family: inherit !important;
}

.post .content p {
  margin: 16px 0;
}

.post .content h2 {
  margin-top: 28px;
}

.post .content h1 strong,
.post .content h2 strong,
.post .content h3 strong,
.post .content h4 strong,
.post .content h5 strong,
.post .content h6 strong {
  font-family: inherit !important;
  font-weight: inherit;
}

.post-list li {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px 18px;
  align-items: start;
}

.post-list li > a,
.post-list li > .meta,
.post-list li > .update,
.post-list li > p {
  grid-column: 2;
}

.feed-thumb {
  margin: 0;
  grid-row: 1 / span 4;
}

.feed-thumb img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  display: block;
  border: 1px solid var(--border);
  background: #fff;
}

@media (max-width: 720px) {
  .post-list li {
    grid-template-columns: 1fr;
  }

  .post-list li > a,
  .post-list li > .meta,
  .post-list li > .update,
  .post-list li > p {
    grid-column: 1;
  }

  .feed-thumb {
    grid-row: auto;
  }

  .feed-thumb img {
    width: 100%;
    height: auto;
  }
}
