.tcsp-el-artists-wrap {
    width: 100%;
}

.tcsp-el-artists-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.tcsp-el-artist-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tcsp-el-artist-media {
    position: relative;
    aspect-ratio: 10 / 9;
    min-height: 0;
    overflow: hidden;
}

.tcsp-el-artist-media img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: top;
    display: block;
}

.tcsp-el-artist-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 16px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.88) 100%);
}

.tcsp-el-artist-ribbon {
    --tcsp-ribbon-from: #0f172a;
    --tcsp-ribbon-to: #6d28d9;
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(90deg, var(--tcsp-ribbon-from), var(--tcsp-ribbon-to));
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 6px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    z-index: 2;
}

.tcsp-el-artist-name {
    margin: 0;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tcsp-el-artist-verified {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: #0ea5e9;
    color: #fff;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tcsp-el-artist-city {
    margin-top: 5px;
    color: #dbeafe;
    font-size: 14px;
}

.tcsp-el-artist-body {
    padding: 10px 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.tcsp-el-artist-rating-line {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.tcsp-el-artist-stars {
    color: #f59e0b;
    letter-spacing: 1px;
    font-size: 16px;
    line-height: 1;
}

.tcsp-el-artist-rating {
    color: #111827;
    font-size: 18px;
    font-weight: 700;
}

.tcsp-el-artist-meta {
    color: #6b7280;
    font-size: 13px;
}

.tcsp-el-artist-genres {
    color: #6b7280;
    font-size: 13px;
    min-height: 38px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.tcsp-el-artist-meta.tcsp-el-artist-bookings {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tcsp-el-artist-meta.tcsp-el-artist-bookings::before {
    content: "📅";
    font-size: 14px;
    line-height: 1;
}

.tcsp-el-artist-genres::before {
    content: "🎵";
    font-size: 14px;
    line-height: 1;
}

.tcsp-el-artist-btn {
    margin-top: auto;
    width: 100%;
    text-align: center;
    text-decoration: none;
    border: 2px solid #3b82f6;
    color: #2563eb;
    border-radius: 14px;
    padding: 8px 12px;
    font-size: 16px;
    font-weight: 600;
    transition: all .2s ease;
}

.tcsp-el-artist-btn:hover {
    background: #eff6ff;
    color: #1d4ed8;
}

.tcsp-el-artists-wrap .swiper {
    overflow: hidden;
}

.tcsp-el-artists-wrap .swiper-wrapper {
    align-items: stretch;
}

.tcsp-el-artists-wrap .swiper-slide {
    height: auto;
    display: flex;
}

.tcsp-el-artists-wrap .swiper-slide .tcsp-el-artist-card {
    width: 100%;
}

.tcsp-el-artist-swiper-nav {
    margin-top: 14px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.tcsp-el-artist-swiper-prev,
.tcsp-el-artist-swiper-next {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #334155;
    cursor: pointer;
    line-height: 1;
}

.tcsp-el-artist-swiper-pagination {
    margin-top: 12px;
    text-align: center;
}

.tcsp-el-artists-wrap .swiper-pagination-bullet {
    background: #94a3b8;
}

.tcsp-el-artists-wrap .swiper-pagination-bullet-active {
    background: #334155;
}

.tcsp-el-artists-empty {
    margin: 0;
    color: #6b7280;
}

@media (max-width: 1024px) {
    .tcsp-el-artists-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .tcsp-el-artists-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}
