.wp-mention-suggest {
  position: absolute;
  z-index: 10050;
  min-width: 220px;
  max-width: 320px;
  max-height: 240px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e0e6eb;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 4px 0;
  font-size: 14px;
}
.wp-mention-suggest-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  cursor: pointer;
  transition: background 0.15s;
}
.wp-mention-suggest-item:hover,
.wp-mention-suggest-item.is-active {
  background: #f0faf4;
}
.wp-mention-suggest-item img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.wp-mention-suggest-item .wp-ms-name {
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.2;
}
.wp-mention-suggest-item .wp-ms-unm {
  font-size: 12px;
  color: #6c757d;
}
.wp-mention-link {
  color: #056636;
  font-weight: 600;
  text-decoration: none;
}
.wp-mention-link:hover {
  text-decoration: underline;
  color: #27ae60;
}
.feed-mention-ribbon {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #edf7f0;
  border-bottom: 1px solid #d4edda;
  font-size: 13px;
  color: #056636;
  font-weight: 600;
}
.feed-mention-ribbon a {
  color: #056636;
  font-weight: 700;
}