.notification-teaser {
  position: relative;
  display: flex;
  gap: 12px;
  padding: 20px 24px;
  border-bottom: 1px solid #F0F0F0;
}

.notification-teaser--unread::before {
  content: '';
  display: block;
  border-radius: 50em;
  width: 6px;
  height: 6px;
  background: #2060A5;
  position: absolute;
  top: calc(20px + 38px / 2);
  left: 0;
  translate: 0 -50%;
}

.notification-teaser__avatar {
  flex-shrink: 0;
}

.notification-teaser__content {
  min-width: 0;
  white-space: nowrap;
}

.notification-teaser__message,
.notification-teaser__related-entity-description {
  display: flex;
  gap: 0 5px;
  flex-flow: wrap;
  white-space: normal;
}

.notification-teaser__message a,
.notification-teaser__related-entity-description a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notification-teaser__related-entity-description {
  font-size: 14px;
  color: #8F8F8F;
}

.notification-teaser__created {
  font-size: 14px;
  color: #8F8F8F;
}

.notification-teaser__related-entity-preview {
  background-color: #D9D9D9;
  border-radius: 3px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin-left: auto;
  overflow: hidden;
}

.notification-teaser--type-like::after {
  content: '';
  display: block;
  border-radius: 50em;
  width: 18px;
  height: 18px;
  background: url(icon/like.svg);
  position: absolute;
  top: 46px;
  left: 48px;
}

.notification-teaser--type-comment::after {
  content: '';
  display: block;
  border-radius: 50em;
  width: 18px;
  height: 18px;
  background: url(icon/comment.svg);
  position: absolute;
  top: 46px;
  left: 48px;
}
