/* 艺术家档案页面特有样式 */

/* --- 交互组件 --- */

/* 列表项悬停效果 */
.artist-row {
    transition: opacity 0.3s ease;
}


/* 鼠标跟随预览图 */
#cursor-preview {
    position: fixed; top: 0; left: 0;
    width: 240px; height: 320px;
    pointer-events: none; z-index: -1;
    opacity: 0;
    transform: translate(-50%, -50%);
    overflow: hidden;
    background: #e5e5e5;
}
#cursor-preview img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(100%) contrast(0.95); /* 默认黑白 */
}

/* 初始隐藏类 (用于 GSAP 动画) */
.js-hidden { opacity: 0; }

/* 悬停下划线效果 */
.hover-underline {
    position: relative;
    text-decoration: none;
}

.hover-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -1px;
    right: 0;
    background-color: currentColor;
    transition: width 0.3s ease;
}

.hover-underline:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}
