/* 멘션 하이라이트 스타일 - 금색 테마 (반짝이 효과 제거) */
.mention-highlight {
    color: #fefad4 !important;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    padding: 0 3px;
    border-radius: 3px;
    background: linear-gradient(135deg, rgba(254, 250, 212, 0.15), rgba(255, 215, 0, 0.1));
    transition: all 0.2s ease;
    position: relative;
    display: inline;
    line-height: inherit;
    vertical-align: baseline;
    margin: 0 1px;
}

.mention-highlight:hover {
    background: linear-gradient(135deg, rgba(254, 250, 212, 0.2), rgba(255, 215, 0, 0.2));
    color: #fefad4 !important;
    text-decoration: none;
    text-shadow: 0 0 8px rgba(254, 250, 212, 0.5);
}

/* 본인 멘션인 경우 더 강조 - 황금빛 강조 (애니메이션 제거) */
.mention-highlight-me {
    background: linear-gradient(135deg, rgba(254, 250, 212, 0.25), rgba(255, 215, 0, 0.25));
    color: #fefad4 !important;
    font-weight: 700;
    display: inline;
    vertical-align: baseline;
    line-height: inherit;
    box-shadow: 0 0 3px rgba(254, 250, 212, 0.4);
}

/* 게시판 컨텐츠에서의 멘션 스타일 */
.board-content .mention-highlight,
.view-content .mention-highlight,
.feed-content .mention-highlight,
.comment-content .mention-highlight,
.comment-text .mention-highlight {
    display: inline;
    margin: 0;
    vertical-align: baseline;
}

/* 다크모드 대응 */
.dark-mode .mention-highlight {
    background-color: rgba(246, 71, 71, 0.2);
}

.dark-mode .mention-highlight:hover {
    background-color: rgba(246, 71, 71, 0.3);
}

/* 모바일 최적화 */
@media (max-width: 768px) {
    .mention-highlight {
        padding: 3px 5px;
        font-size: 14px;
    }
}