/* =========================================
   СТОРІНКА АРТИСТІВ (Nos Artistes)
   ========================================= */

/* Сітка для артистів */
.artistes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
}

/* Картка артиста */
.artist-card-full {
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 40px 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
    border-radius: 4px;
}

.artist-card-full:hover {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.03);
    transform: translateY(-10px);
}

.artist-image-container {
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-gold);
    padding: 5px;
    background: var(--color-black-wood);
}

.artist-full-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.6s ease;
}

.artist-card-full:hover .artist-full-img {
    transform: scale(1.1);
}

.artist-details h3 {
    font-size: 1.8rem;
    color: var(--color-white);
    margin-bottom: 10px;
}

.artist-divider {
    width: 40px;
    height: 2px;
    background: var(--color-gold);
    margin: 0 auto 20px;
}

.artist-bio-short {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 992px) {
    .artistes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .artistes-grid {
        grid-template-columns: 1fr;
    }
}

[v-cloak] { display: none; }