.post {
  --breathing-room: 2rem;
  background-color: #fffaeb;
  margin: 0 auto;
  border-radius: 7px;
  padding: 2rem var(--breathing-room) 3rem;
  border-top: 4px solid transparent;
}
@media (min-width: 68.75rem) {
  .post {
    margin-bottom: 4rem;
    border-top: 4px solid var(--primary-blue);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr min(70ch, 100%) 1fr;
  }
  .post > * {
    grid-column: 2;
  }
  .post pre[class^=language-] {
    margin-right: calc(var(--breathing-room) * -1);
    margin-left: calc(var(--breathing-room) * -1);
  }
}
.post__title {
  margin-bottom: 4px;
  font-family: var(--font-body);
}
.post .post__dates {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 1rem;
  gap: 1rem;
  margin: 1rem 0;
}
.post .post__dates p {
  margin: 0;
}
.post h2,
.post h3,
.post h4,
.post h5,
.post h6 {
  font-family: var(--font-body);
}
.post blockquote {
  background-color: #ffd7a8;
  margin: 0;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  border-left: 4px solid #ff8904;
}
.post__date {
  margin-bottom: 15px;
}
.post__back-link {
  display: inline-block;
  padding-top: 8px;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.toc-details {
  padding-top: 10px;
  padding-bottom: 10px;
}

.toc-wrapper {
  margin: 20px 0 30px;
  padding-top: 16px;
  padding-left: 10px;
  padding-bottom: 6px;
  border: 1px dotted var(--text-color-dark);
}

.toc-title {
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0;
}

.toc ol {
  list-style: none;
  margin-top: 0.5rem;
}
.toc li {
  margin-bottom: 0.5rem;
}
