/* Marcações globais de perfis — mantém o rosa oficial das hashtags. */
.mention-link,
.feed-card .mention-link,
.feed-photo-caption .mention-link,
.message .mention-link,
.comment-content .mention-link,
.forum-thread-text .mention-link,
.forum-post-text .mention-link,
.forum-reply-context .mention-link,
.profile-bio .mention-link,
.testimonial-body .mention-link{
  color:#ff5e6c!important;
  -webkit-text-fill-color:#ff5e6c!important;
  font-weight:900!important;
  text-decoration:none!important;
  overflow-wrap:anywhere;
}

.mention-link:hover,
.mention-link:focus{
  color:#b91f75!important;
  -webkit-text-fill-color:#b91f75!important;
  text-decoration:none!important;
}

.mention-picker{
  position:fixed;
  z-index:2147482000;
  width:min(330px,calc(100vw - 24px));
  max-height:286px;
  overflow:auto;
  padding:6px;
  border:1px solid #c8d8e6;
  border-radius:16px;
  background:#fff;
  box-shadow:0 18px 48px rgba(35,63,90,.24);
}

.mention-picker[hidden]{display:none!important;}

.mention-picker-item{
  display:flex;
  align-items:center;
  width:100%;
  min-height:54px;
  gap:10px;
  padding:7px 9px;
  border:0;
  border-radius:12px;
  background:transparent;
  color:#384b5a;
  text-align:left;
  cursor:pointer;
}

.mention-picker-item:hover,
.mention-picker-item.is-active{
  background:#fbe8f4;
}

.mention-picker-avatar{
  width:38px;
  height:38px;
  flex:0 0 38px;
  display:grid;
  place-items:center;
  overflow:hidden;
  border-radius:50%;
  background:linear-gradient(135deg,#ff5e6c,#4c2a85);
  color:#fff;
  font-weight:900;
}

.mention-picker-avatar img{width:100%;height:100%;object-fit:cover;display:block;}
.mention-picker-copy{min-width:0;display:flex;flex-direction:column;gap:2px;}
.mention-picker-copy strong{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:14px;color:#394b58;}
.mention-picker-copy small{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:12px;color:#ff5e6c;font-weight:900;}
.mention-picker-badge{margin-left:auto;flex:0 0 auto;padding:4px 7px;border-radius:999px;background:#f3e7fb;color:#4c2a85;font-size:9px;font-weight:900;text-transform:uppercase;}
.mention-picker-empty{padding:12px;color:#72828d;font-size:13px;text-align:center;}

@media(max-width:520px){
  .mention-picker{width:calc(100vw - 20px);max-height:238px;border-radius:15px;}
}

.profile-private-gate{
  width:min(390px,calc(100% - 24px));
  margin:22px auto 8px;
  padding:18px 16px;
  box-sizing:border-box;
  border:1px solid rgba(91,42,134,.18);
  border-radius:18px;
  background:rgba(255,255,255,.58);
  color:#4c5360;
  text-align:center;
}
.profile-private-gate-icon{
  width:42px;height:42px;margin:0 auto 8px;display:grid;place-items:center;
  border-radius:50%;background:#f3e7fb;color:#4c2a85;
}
.profile-private-gate-icon svg{width:23px;height:23px;display:block;}
.profile-private-gate strong{display:block;font-size:17px;color:#4c2a85;}
.profile-private-gate p{margin:7px 0 0;font-size:13px;line-height:1.4;color:#6e7781;}
