.profile-feed-strip {
  margin: 10px 0 14px;
  padding: 10px 12px 12px;
  border-radius: 14px;
  background: #d9e6f2;
  border: 1px solid #b9cddd;
  color: #1f2937;
}

.profile-feed-strip__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 8px;
  cursor: pointer;
  user-select: none;
}

.profile-feed-strip__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.15;
}

.profile-feed-strip__title-link {
  color: inherit;
  text-decoration: none;
}

.profile-feed-strip__title-link:hover {
  text-decoration: underline;
}

.profile-feed-strip__hint {
  margin: 0;
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
}

.profile-feed-strip__owner-bar {
  margin: 0 0 8px;
}

.profile-feed-strip__list {
  display: grid;
  gap: 8px;
}

.profile-feed-strip__empty {
  margin: 0;
  padding: 10px 4px;
  font-size: 13px;
  line-height: 1.35;
}

.profile-feed-strip-card {
  --profile-feed-strip-card-h: 86px;
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 10px;
  height: var(--profile-feed-strip-card-h);
  min-height: var(--profile-feed-strip-card-h);
  max-height: var(--profile-feed-strip-card-h);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(15, 23, 42, 0.1);
  overflow: hidden;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.profile-feed-strip-card:hover {
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1);
  transform: translateY(-1px);
}

.profile-feed-strip-card__hit {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.profile-feed-strip-card__media {
  flex: 0 0 var(--profile-feed-strip-card-h);
  width: var(--profile-feed-strip-card-h);
  min-width: var(--profile-feed-strip-card-h);
  max-width: var(--profile-feed-strip-card-h);
  align-self: stretch;
}

.profile-feed-strip-card__media-square {
  width: 100%;
  height: 100%;
  background: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  overflow: hidden;
}

.profile-feed-strip-card__media-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-feed-strip-card__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 10px 8px 0;
}

.profile-feed-strip-card__title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}

.profile-feed-strip-card__title {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-feed-strip-card__side {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.profile-feed-strip-card__adv-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  max-width: 88px;
  position: relative;
  z-index: 2;
}

.profile-feed-strip-card__adv-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  overflow: hidden;
  background: #e2e8f0;
  flex-shrink: 0;
}

.profile-feed-strip-card__adv-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-feed-strip-card__adv-name {
  font-size: 9px;
  font-weight: 700;
  color: #64748b;
  line-height: 1.1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-feed-strip-card__text-clip {
  position: relative;
  overflow: hidden;
  flex: 1 1 auto;
  min-height: 0;
  margin-top: 2px;
}

.profile-feed-strip-card__text-clip::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 14px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.92));
  pointer-events: none;
}

.profile-feed-strip-card__rich {
  font-size: 11px;
  line-height: 1.22;
  opacity: 0.95;
  max-height: 2.5em;
  overflow: hidden;
}

.profile-feed-strip-card__rich :is(p, h2, h3, h4) {
  margin: 0 0 2px;
}

.profile-feed-strip-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 10px;
  color: #64748b;
  margin-top: 2px;
}

.profile-feed-strip-card__read {
  font-weight: 800;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.profile-feed-strip-card:hover .profile-feed-strip-card__read {
  opacity: 1;
}

@media (min-width: 721px) {
  .profile-feed-strip-card {
    --profile-feed-strip-card-h: 96px;
  }
}
