.story-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid #e9ecef;
}
.story-row:last-child {
  border-bottom: none;
}
.story-row .story-summary {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
}
.story-row-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 0.25rem;
  flex-shrink: 0;
}
.story-row-img-placeholder {
  width: 72px;
  height: 72px;
  background-color: #e9ecef;
  border-radius: 0.25rem;
  flex-shrink: 0;
}

.story-mention:hover {
  background-color: #d0d4d8 !important;
}

.story-figure-centered {
  margin: 0 auto 2.5rem auto;
  width: 100%;
  max-width: 40%;
  text-align: center;
}

@media (max-width: 768px) {
  .story-figure-centered {
    max-width: 100%;
  }
}
