.arbitr-single-post__wrapper {
  display: grid;
  grid-template-columns: 294px 1fr;
  grid-gap: 20px;
  margin-bottom: 48px;
}

.arbitr-single-post__mnemonic {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.arbitr-single-post__body {
  max-width: 610px;
}

.arbitr-single-post__aside__table-of-contents {
  margin-top: 48px;
  position: sticky;
  top: 70px;
}


.arbitr-single-post__aside__table-of-contents__list {
  display: grid;
  grid-gap: 16px;
}

.arbitr-single-post__aside__table-of-contents__link {

}

.arbitr-single-post__related-posts {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.arbitr-single-post__related-posts__card,
.comment {
  border-radius: 16px;
  background: var(--50-color);
  box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.10), -4px -4px 20px 5px rgba(0, 0, 0, 0.05);
}

.arbitr-single-post__related-posts__card__footer {
  padding: 0 24px 24px 24px;
}

.arbitr-single-post__related-posts__card .wp-post-image {
  border-radius: 16px;
  object-fit: cover;
  width: 100%;
  height: 220px;
}

.arbitr-single-post__related-posts__card-img-placeholder {
  display: grid;
  place-content: center;
  background: var(--300-color);
}

.comments-area {
  margin-top: 48px;
}

.comment {
  padding: 16px;
}

.comment-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.comment-metadata {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.comment-reply-link {
  display: block;
  margin-top: 16px;
  color: var(--accent-color);
}

.comment-list {
  margin-bottom: 32px;
}

.comment-form-comment {
  margin-top: 12px;
  display: grid;
  grid-gap: 12px;
}

.form-submit {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

.comment-form .submit {
  border-radius: 8px;
  background: var(--grad);
  padding: 8px 24px;
  border: none;
  color: var(--invert-font-color);
  cursor: pointer;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.liked {
  background: var(--font-color);
  border-radius: 20px;
  color: var(--invert-font-color);
  padding: 10px;
}

.wp-post-image {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .arbitr-single-post__wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
