/* Стили для виджетов артистов */
.artist-post-widget,
.artist-tags-widget {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.artist-widget-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.artist-widget-item:hover {
    background: #f8f9fa;
    border-color: #0073aa;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.artist-widget-photo {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
}

.artist-widget-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-widget-info {
    flex: 1;
    min-width: 0; /* Для правильного обрезания текста */
}

.artist-widget-name {
    margin: 0 0 4px 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.artist-widget-name a {
    color: #333;
    text-decoration: none;
}

.artist-widget-name a:hover {
    color: #0073aa;
}

.artist-widget-birthday {
    font-size: 12px;
    color: #666;
    margin-bottom: 3px;
}

.artist-widget-tags {
    font-size: 11px;
    color: #888;
    margin-top: 2px;
}

.artist-widget-weight {
    font-size: 11px;
    color: #999;
    margin-top: 2px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .artist-widget-item {
        padding: 8px;
    }
    
    .artist-widget-photo {
        width: 50px;
        height: 50px;
    }
    
    .artist-widget-name {
        font-size: 13px;
    }
}
