/* feed_item.twig — фиксированный квадрат 56×56, не зависит от сборки Tailwind */
.feed-item-thumb {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  flex: 0 0 56px;
  overflow: hidden;
  border-radius: 2px;
  background-color: #f3f4f6;
}

.feed-item-thumb > img {
  display: block;
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

/* post_related_section.twig — 2 колонки + гарантированный зазор */
.post-related-list {
  row-gap: 0;
}

@media (min-width: 640px) {
  .post-related-list {
    column-gap: 2rem;
  }
}

.post-related-list > .feed-item-grid-cell {
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.post-related-list > .feed-item-grid-cell > a {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.post-related-list h3 {
  overflow-wrap: anywhere;
  word-break: break-word;
}
