/**
 * Sonic Shaman Artists Slider - CSS Styles
 * CD 翻閱風格設計
 */

.sonic-shaman-artists-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.sonic-shaman-artists-swiper {
    padding: 40px 0;
    position: relative;
}

/* 卡片樣式 */
.artist-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.artist-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* 藝術家圖片 */
.artist-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.artist-card:hover .artist-image img {
    transform: scale(1.05);
}

/* 藝術家資訊 */
.artist-info {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.artist-name {
    margin: 0 0 12px 0;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
}

.artist-bio {
    margin: 0 0 16px 0;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
}

.artist-link {
    display: inline-block;
    padding: 10px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.artist-link:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Swiper 導航按鈕 */
.swiper-button-prev,
.swiper-button-next {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.swiper-button-prev {
    left: 10px;
}

.swiper-button-next {
    right: 10px;
}

/* Swiper 分頁點 */
.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ccc;
    opacity: 0.5;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 1;
    width: 24px;
    border-radius: 4px;
}

/* Swiper Slide 間距 */
.swiper-slide {
    height: auto;
}

/* 響應式設計 */
@media (max-width: 768px) {
    .artist-image {
        height: 250px;
    }
    
    .artist-name {
        font-size: 18px;
    }
    
    .artist-bio {
        font-size: 13px;
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        width: 36px;
        height: 36px;
    }
    
    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .sonic-shaman-artists-wrapper {
        padding: 0 10px;
    }
    
    .artist-image {
        height: 200px;
    }
    
    .artist-info {
        padding: 16px;
    }
    
    .artist-name {
        font-size: 16px;
    }
    
    .artist-bio {
        font-size: 12px;
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        width: 32px;
        height: 32px;
        display: none;
    }
}
