.comments-preview .published-comments {
  display: grid;
  gap: 0;
  margin: 1.35rem 0 1.6rem;
  border-top: 1px solid var(--color-border);
}

.comments-preview .comment-item {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  align-items: start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-border);
  background: transparent;
}

.comments-preview .comment-avatar {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: #f8e9df;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
}

.comments-preview .comment-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comments-preview .comment-body {
  min-width: 0;
}

.comments-preview .comment-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .35rem 1rem;
  min-width: 0;
}

.comments-preview .comment-header strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.comments-preview .comment-header time {
  display: inline-flex;
  align-items: center;
  color: var(--color-muted);
  font-size: .78rem;
  line-height: 1.4;
  white-space: nowrap;
}

.comments-preview .comment-message {
  margin: .5rem 0 0;
  color: var(--color-text);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font-family: inherit;
  font-size: .94rem;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .comments-preview .comment-item {
    grid-template-columns: 2.8rem minmax(0, 1fr);
    gap: .8rem;
  }

  .comments-preview .comment-avatar {
    width: 2.8rem;
    height: 2.8rem;
  }

  .comments-preview .comment-header {
    display: grid;
    gap: .15rem;
  }

  body .article-header__panel .article-header__image {
    inset: 0 !important;
    background-position: center center !important;
    opacity: .30 !important;
    filter: saturate(.9) contrast(.96) !important;
  }

  body .article-header__panel::after {
    background: linear-gradient(
      90deg,
      rgba(255,249,245,.86) 0%,
      rgba(255,249,245,.76) 55%,
      rgba(255,249,245,.58) 100%
    ) !important;
  }
}