/**
 * Estilos para contato de Shows na página Top Artistas
 */

/* Estilo para o contato de shows */
.top-artistas-box-nome .shows-contato {
    margin-top: 8px;
    font-size: 13px;
    color: var(--text-color-secondary, #aaa);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.top-artistas-box-nome .shows-contato strong {
    color: #3ea6ff;
    font-weight: 600;
    font-size: 13px;
}

.top-artistas-box-nome .shows-contato {
    color: var(--text-color, #fff);
    font-size: 13px;
}

/* Hover effect */
.top-artistas-box:hover .shows-contato {
    color: var(--text-color, #fff);
}

.top-artistas-box:hover .shows-contato strong {
    color: #409cff;
}

/* Mobile */
@media (max-width: 768px) {
    .top-artistas-box-nome .shows-contato {
        font-size: 12px;
        margin-top: 6px;
    }
    
    .top-artistas-box-nome .shows-contato strong {
        font-size: 12px;
    }
}
